/* newsletter-banner.css — prefix: nlb-
   Centered dark CTA. */

.nlb-section {
    background: var(--antologa-dark);
    padding: 4.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.nlb-inner {
    width: 100%;
    max-width: 30rem; /* ~480px */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nlb-eyebrow {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--antologa-primary);
    display: block;
    margin-bottom: 0.75rem;
}

.nlb-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--antologa-white);
    margin: 0 0 0.75rem;
}

.nlb-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.75rem;
}

.nlb-form {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
}

.nlb-input {
    flex: 1;
    background: var(--antologa-white);
    border-radius: 0.6rem;
    margin: 0 !important;
}

/* Soften MudBlazor's outlined border inside the dark band */
.nlb-input .mud-input-outlined-border {
    border-color: transparent !important;
}

.nlb-submit {
    border-radius: 0.6rem !important;
    background: var(--antologa-primary) !important;
    color: var(--antologa-white) !important;
    font-weight: 700 !important;
    text-transform: none !important;
    min-width: 8rem !important;
    padding: 0 1.25rem !important;
}

.nlb-submit:hover {
    background: var(--antologa-secondary, #0e6b63) !important;
}

.nlb-micro {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
}

@media (max-width: 30rem) {
    .nlb-form {
        flex-direction: column;
    }
    .nlb-submit {
        width: 100%;
    }
}
