/* ==========================================================
   GREENHAUSDR — NEWSLETTER SYSTEM
   OB Private inspired | Ultra-luxury editorial aesthetic
   ========================================================== */

/* ----------------------------------------------------------
   SECTION 1 — FOOTER NEWSLETTER CTA (enhanced)
   ---------------------------------------------------------- */

.footer-newsletter {
    background: #fff;
    padding: 42px 50px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-newsletter-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-newsletter-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.footer-newsletter-btn {
    flex-shrink: 0;
    padding: 14px 44px;
    background: var(--secondary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, letter-spacing 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    text-transform: uppercase;
}

.footer-newsletter-btn:hover {
    background: #7a6347;
    letter-spacing: 2.5px;
}

@media (hover: none) and (pointer: coarse) {
    .footer-newsletter-btn:active {
        background: #7a6347;
        transform: scale(0.98);
    }
}

/* ----------------------------------------------------------
   SECTION 2 — NEWSLETTER MODAL (OB Private slide-panel)
   ---------------------------------------------------------- */

#newsletterModal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#newsletterModal.nl-open {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

/* Dark overlay (left side — reveals page behind like OB) */
.nl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 22, 24, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.4s ease;
    opacity: 0;
    cursor: pointer;
}

#newsletterModal.nl-open .nl-overlay {
    opacity: 1;
}

/* White panel — slides from right */
.nl-panel {
    position: relative;
    margin-left: auto;
    width: 58%;
    max-width: 800px;
    min-width: 360px;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

#newsletterModal.nl-open .nl-panel {
    transform: translateX(0);
}

/* Close button (top-right, OB Private style) */
.nl-close {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding: 20px 28px 0;
    background: #fff;
}

.nl-close-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--primary);
    transition: color 0.2s ease;
    padding: 0;
    margin-right: -8px;
}

.nl-close-btn:hover { color: var(--secondary); }

.nl-close-btn::before,
.nl-close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: currentColor;
}
.nl-close-btn::before { transform: rotate(45deg); }
.nl-close-btn::after  { transform: rotate(-45deg); }

/* Panel inner content */
.nl-inner {
    padding: 28px 54px 60px;
    flex: 1;
}

/* "SUBSCRIBE" eyebrow label */
.nl-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
    display: block;
}

/* "LATEST FROM GREENHAUSDR" — large italic Cormorant (OB Private style) */
.nl-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 300;
    font-style: italic;
    color: var(--secondary);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 36px;
    display: block;
}

/* ----------------------------------------------------------
   SECTION 3 — NEWSLETTER FORM
   ---------------------------------------------------------- */

/* "PLEASE ENTER YOUR DETAILS BELOW" section label */
.nl-section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 22px;
    display: block;
}

/* Floating label input wrapper */
.nl-field {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    transition: border-color 0.25s ease;
}

.nl-field:focus-within {
    border-color: var(--secondary);
}

.nl-field input {
    width: 100%;
    height: 56px;
    padding: 20px 16px 6px;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.nl-field label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

/* Label floated state — when focused OR has value */
.nl-field input:focus + label,
.nl-field input:not(:placeholder-shown) + label {
    top: 10px;
    transform: none;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--secondary);
}

/* Asterisk on required labels */
.nl-field label .req {
    color: var(--secondary);
    margin-left: 1px;
}

/* ----------------------------------------------------------
   AREAS OF INTEREST — selectable category cards
   ---------------------------------------------------------- */

.nl-interests {
    margin-top: 32px;
    margin-bottom: 28px;
}

.nl-interests-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-interest-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    user-select: none;
}

.nl-interest-card:hover {
    border-color: #c4a876;
    background: rgba(196, 168, 118, 0.04);
}

.nl-interest-card input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.nl-interest-card input[type="checkbox"]:checked {
    border-color: var(--secondary);
    background: var(--secondary);
}

.nl-interest-card input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px; left: 4px;
    width: 5px; height: 9px;
    border: 1.5px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.nl-interest-card.is-checked {
    border-color: var(--secondary);
    background: rgba(139, 115, 85, 0.04);
}

.nl-interest-info {
    flex: 1;
}

.nl-interest-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 3px;
    display: block;
}

.nl-interest-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
    display: block;
}

/* Terms checkbox */
.nl-terms {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.nl-terms input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.nl-terms input[type="checkbox"]:checked {
    border-color: var(--secondary);
    background: var(--secondary);
}

.nl-terms input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px; left: 4px;
    width: 5px; height: 9px;
    border: 1.5px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.nl-terms-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.7;
    cursor: pointer;
}

.nl-terms-text a {
    color: var(--secondary);
    text-decoration: underline;
}

/* SEND button */
.nl-submit-btn {
    padding: 16px 50px;
    background: var(--navy-blue, #1a2332);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, letter-spacing 0.3s ease;
    min-height: 50px;
    display: inline-block;
}

.nl-submit-btn:hover {
    background: var(--secondary);
    letter-spacing: 3px;
}

.nl-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ----------------------------------------------------------
   THANK YOU STATE (inside panel, OB Private style)
   ---------------------------------------------------------- */

.nl-thankyou {
    display: none;
    padding-top: 20px;
}

.nl-thankyou.nl-visible {
    display: block;
}

.nl-thankyou-box {
    border: 1px solid var(--border);
    padding: 40px 36px;
    text-align: center;
}

.nl-thankyou-msg {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Error text */
.nl-error-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #c0392b;
    letter-spacing: 0.5px;
    margin-top: 8px;
    display: none;
}

.nl-error-text.nl-visible {
    display: block;
}

/* ----------------------------------------------------------
   SECTION 4 — NEWSLETTER VERIFICATION MODAL
   (separate from contact form modal — own IDs)
   ---------------------------------------------------------- */

#nlVerifyOverlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 22, 24, 0.8);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

#nlVerifyOverlay.nl-open {
    opacity: 1;
    visibility: visible;
}

.nl-verify-modal {
    background: #fff;
    width: 100%;
    max-width: 440px;
    padding: 48px 44px;
    position: relative;
    animation: nlModalIn 0.35s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes nlModalIn {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.nl-verify-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
    display: block;
}

.nl-verify-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.nl-verify-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.7;
}

.nl-verify-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 28px;
    display: block;
}

.nl-verify-input {
    width: 100%;
    border: 1px solid var(--border);
    border-bottom: 2px solid var(--secondary);
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 8px;
    text-align: center;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
    margin-bottom: 8px;
}

.nl-verify-input:focus {
    border-color: var(--secondary);
}

.nl-verify-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.nl-verify-btn {
    width: 100%;
    padding: 15px;
    background: var(--navy-blue, #1a2332);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nl-verify-btn:hover { background: var(--secondary); }

.nl-verify-cancel {
    width: 100%;
    padding: 12px;
    background: none;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.nl-verify-cancel:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.nl-resend-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
    padding: 8px 0;
    display: none;
    font-weight: 500;
}

.nl-resend-btn.nl-visible { display: block; }

/* ----------------------------------------------------------
   SECTION 5 — NEWS ROOM PAGE
   ---------------------------------------------------------- */

#newsroomPage {
    padding-top: var(--header-height);
    min-height: 100vh;
}

/* Hero */
.nr-hero {
    background: var(--dark-green, #2d3b35);
    padding: 90px 50px 80px;
    position: relative;
    overflow: hidden;
}

.nr-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,168,118,0.5), transparent);
}

.nr-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nr-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold, #c4a876);
    margin-bottom: 16px;
    display: block;
}

.nr-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.nr-hero-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 32px;
}

.nr-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.nr-hero-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold, #c4a876);
    padding: 6px 14px;
    border: 1px solid rgba(196,168,118,0.4);
}

.nr-hero-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}

.nr-hero-read-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 3px;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease;
    display: inline-block;
}

.nr-hero-read-more:hover {
    color: var(--gold, #c4a876);
    border-color: var(--gold, #c4a876);
}

.nr-hero-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.nr-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.nr-hero-image:hover img { transform: scale(1.03); }

/* ------ Category filter bar ------ */
.nr-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-height);
    z-index: 800;
}

.nr-filter-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.nr-filter-inner::-webkit-scrollbar { display: none; }

.nr-filter-btn {
    flex-shrink: 0;
    padding: 18px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.nr-filter-btn:hover { color: var(--secondary); }

.nr-filter-btn.nr-active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* ------ Article grid ------ */
.nr-grid-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 50px;
}

.nr-grid-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.nr-grid-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.nr-grid-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--text);
    letter-spacing: 0.5px;
}

/* Article grid — 3 columns desktop */
.nr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Article card */
.nr-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nr-card:hover { transform: translateY(-4px); }

.nr-card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--light);
    position: relative;
}

.nr-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nr-card:hover .nr-card-image img { transform: scale(1.05); }

.nr-card-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}

.nr-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.nr-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
    flex: 1;
}

.nr-card-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: var(--text);
    letter-spacing: 0.5px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nr-card-read {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    transition: letter-spacing 0.2s ease;
    display: inline-block;
}

.nr-card:hover .nr-card-read { letter-spacing: 2px; }

/* Featured wide card (first item spans 2 cols) */
.nr-card.nr-card-wide {
    grid-column: span 2;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.nr-card-wide .nr-card-image {
    flex: 0 0 55%;
    margin-bottom: 0;
    aspect-ratio: unset;
    height: 260px;
}

.nr-card-wide .nr-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.nr-card-wide .nr-card-title {
    font-size: 26px;
}

/* ------ Newsletter integration inside newsroom ------ */
.nr-newsletter-strip {
    background: var(--dark-green, #2d3b35);
    padding: 60px 50px;
}

.nr-newsletter-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nr-newsletter-text-block .nr-newsletter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold, #c4a876);
    margin-bottom: 10px;
    display: block;
}

.nr-newsletter-text-block .nr-newsletter-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
}

.nr-newsletter-btn {
    flex-shrink: 0;
    padding: 15px 44px;
    background: var(--secondary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, letter-spacing 0.3s ease;
    white-space: nowrap;
}

.nr-newsletter-btn:hover {
    background: #7a6347;
    letter-spacing: 2.5px;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .nl-panel { width: 70%; }
    .nl-inner { padding: 24px 40px 50px; }
    .nr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .nr-grid { grid-template-columns: repeat(2, 1fr); }
    .nr-card.nr-card-wide {
        grid-column: span 2;
        flex-direction: column;
        gap: 0;
    }
    .nr-card-wide .nr-card-image { height: auto; aspect-ratio: 16/7; flex: unset; width: 100%; }
    .nr-card-wide .nr-card-body { padding: 20px 0 0; }
    .nr-newsletter-inner { flex-direction: column; text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Footer CTA */
    .footer-newsletter { padding: 30px var(--mobile-padding); }
    .footer-newsletter-content { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-newsletter-text { font-size: 19px; }
    .footer-newsletter-btn { width: 100%; text-align: center; }

    /* Newsletter modal */
    .nl-panel { width: 100%; max-width: 100%; min-width: 0; }
    .nl-inner { padding: 16px 22px 50px; }
    .nl-headline { font-size: 36px; }
    .nl-interests-grid { gap: 8px; }
    .nl-interest-card { padding: 13px 14px; }

    /* Verify modal */
    .nl-verify-modal { padding: 36px 24px; }

    /* News room */
    .nr-hero { padding: 60px var(--mobile-padding) 50px; }
    .nr-grid-section { padding: 40px var(--mobile-padding); }
    .nr-filter-inner { padding: 0 var(--mobile-padding); }
    .nr-grid { grid-template-columns: 1fr; }
    .nr-card.nr-card-wide {
        grid-column: span 1;
        flex-direction: column;
    }
    .nr-card-wide .nr-card-image { height: auto; aspect-ratio: 3/2; flex: unset; width: 100%; }
    .nr-newsletter-strip { padding: 50px var(--mobile-padding); }
    .nr-newsletter-inner { flex-direction: column; text-align: center; gap: 24px; }
    .nr-newsletter-btn { width: 100%; }
}

/* Ultra-wide */
@media (min-width: 1400px) {
    .nl-panel { max-width: 860px; }
}
