/* CodeMola Subscribers — signup form */
.cmsub-form {
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}
.cmsub-heading {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 6px;
}
.cmsub-sub {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
}
.cmsub-fields {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.cmsub-name {
    flex: 1 1 100%;
    margin-bottom: 8px;
}
.cmsub-name,
.cmsub-email {
    padding: 13px 16px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font-size: 14px;
    outline-offset: 2px;
}
.cmsub-email {
    flex: 1 1 220px;
    border-right: none;
    min-width: 0;
}
.cmsub-join {
    padding: 13px 30px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity .2s ease;
}
.cmsub-join:hover { opacity: .85; }
.cmsub-join:disabled { opacity: .5; cursor: wait; }
/* Honeypot stays invisible but focusable-off */
.cmsub-website {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.cmsub-msg {
    min-height: 20px;
    font-size: 14px;
    margin: 12px 0 0;
}
.cmsub-msg.cmsub-ok { color: #1e7a34; }
.cmsub-msg.cmsub-err { color: #c02b2b; }
.cmsub-privacy {
    font-size: 11px;
    color: #999;
    letter-spacing: .5px;
    margin: 6px 0 0;
}
/* Compact variant for footers */
.cmsub-compact .cmsub-heading,
.cmsub-compact .cmsub-sub,
.cmsub-compact .cmsub-privacy { display: none; }

@media (max-width: 480px) {
    .cmsub-email {
        flex: 1 1 100%;
        border-right: 1px solid currentColor;
        margin-bottom: 8px;
    }
    .cmsub-join { flex: 1 1 100%; }
}
