/* ═══════════════════════════════════════════════════
   Newsletter Signup Banner
   Dark-blue (#206389) CTA section with email form
   ═══════════════════════════════════════════════════ */

.bs-nl-banner {
    background: #206389;
    border-radius: 14px;
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
}

.bs-nl-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ── Text + Form Column ─────────────────────────── */

.bs-nl-heading {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.bs-nl-subtext {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 460px;
}

/* ── Form ────────────────────────────────────────── */

.bs-nl-form {
    position: relative;
    margin: 0;
}

.bs-nl-form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bs-nl-email {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #171717;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: none;
    -webkit-appearance: none;
}

.bs-nl-email::placeholder {
    color: #888;
}

.bs-nl-email:focus {
    border-color: #1DB0E1;
    box-shadow: 0 0 0 3px rgba(29, 176, 225, 0.2);
}

.bs-nl-submit {
    white-space: nowrap;
    padding: 13px 28px;
    border: none;
    border-radius: 8px;
    background: #1DB0E1;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s ease;
    -webkit-appearance: none;
}

.bs-nl-submit:hover {
    background: #1899c5;
}

.bs-nl-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ── Message Feedback ────────────────────────────── */

.bs-nl-message {
    font-size: 14px;
    margin: 10px 0 0;
    padding: 0;
}

.bs-nl-message.is-success {
    color: #34d399;
}

.bs-nl-message.is-error {
    color: #f87171;
}

/* ── Privacy Text ────────────────────────────────── */

.bs-nl-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 12px 0 0;
    line-height: 1.4;
}

/* ── Visual Column ───────────────────────────────── */

.bs-nl-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bs-nl-visual img {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */

@media (min-width: 600px) {
    .bs-nl-form-row {
        flex-direction: row;
    }

    .bs-nl-email {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .bs-nl-banner {
        padding: 48px 40px;
    }

    .bs-nl-inner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .bs-nl-content {
        flex: 1;
        min-width: 0;
    }

    .bs-nl-heading {
        font-size: 26px;
    }

    .bs-nl-visual img {
        width: 300px;
    }
}

@media (min-width: 1025px) {
    .bs-nl-banner {
        padding: 52px 56px;
    }

    .bs-nl-inner {
        gap: 56px;
    }

    .bs-nl-visual img {
        width: 340px;
    }
}

/* ── Mobile/tablet: hide visual ──────────────────── */

@media (max-width: 767px) {
    .bs-nl-visual {
        display: none;
    }
}
