/* newsletter-banner.css — prefix: nlb- */

.nlb-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0 5rem;
    border-top: 1px solid var(--antologa-light-gray);
    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.5rem;
}

.nlb-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--antologa-secondary);
    margin: 0 0 1rem;
}

.nlb-body {
    font-size: 0.75rem;
    line-height: 1.8;
    color: var(--antologa-gray);
    margin: 0 0 1.5rem;
}

.nlb-form {
    display: flex;
    align-items: stretch;
    max-width: 36rem;
    border: 1px solid var(--antologa-light-gray);
    border-radius: 0.75rem;
    overflow: hidden;
}

.nlb-input {
    flex: 1;
    border: none !important;
}

.nlb-submit {
    border-radius: 0 0.75rem 0.75rem 0 !important;
    background: var(--antologa-primary) !important;
    color: var(--antologa-white) !important;
    min-width: 4rem !important;
}

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

.nlb-right {
    overflow: hidden;
}

.nlb-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    border-radius: 0.875rem;
    overflow: hidden;
    height: 24rem;
}

.nlb-mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nlb-mosaic-img--tall {
    grid-row: 1 / 3;
    height: 100%;
}

@media (max-width: 61.25rem) {
    .nlb-section {
        grid-template-columns: 1fr;
    }

    .nlb-right {
        display: none;
    }
}
