/* =============================================================================
 * Atlas 2026 Landing Page — stylesheet for page-templates/landing-page-2026.php.
 *
 * Section map (kept in source order; matches the template's render order):
 *
 *   :root tokens .................................. line   1
 *   Page-level container .......................... line  17
 *   Full-Width Feature Card ....................... line  26
 *     @media (max-width: 767px) above breakpoint ........ (consolidated below)
 *   Full-Width Native Video ....................... line 191
 *     dead placeholder rules removed (commit 29d0b40db)
 *   Featured Articles (FA) ........................ line 424
 *     @media (max-width: 900px) tablet overrides ...... ~line 689
 *   Atlas Filtered Content River .................. line 732
 *     @media (max-width: 480px) narrow-phone overrides . ~line 1046
 *   Project Masthead (Atlas of American Belonging)  line 1060
 *   Vertical Video Row (4-up + Load More) ......... line 1143
 *   Mobile overrides — consolidated @767px appendix line 1470
 *
 * Notes:
 *  - !important blocks are commented inline with the global rule they fight
 *    (mostly redesign.css `h3 { font-size: 28px !important }` and the theme's
 *    beige body background).
 *  - Pillar label data lives in PHP (inc/atlas-attribute-taxonomies.php) — keep
 *    `[data-pillar="..."]` attribute selectors in sync if pillar keys change.
 *  - JS for this page is split into assets/js/landing-2026-*.js modules,
 *    conditionally enqueued from the page template.
 * ========================================================================== */

:root {
    --rns-dark:      #1a1410;
    --rns-sepia:     #8b6340;
    --rns-orange:    #FA5500;
    --rns-rule:      #c8b89a;
    --rns-bg:        #f0ebe0;
    --rns-white:     #ffffff;
    --rns-text:      #2a2420;
    --rns-muted:     #7a6e66;
    --rns-border:    #ddd5c5;
    --rns-card-bg:   #ffffff;

    --font-display:  'Produkt Web', Georgia, 'Times New Roman', Times, serif;
    --font-sans:     'Marr Sans Web', Helvetica, sans-serif;
}

/* ─── Page-level container ─── */
.landing-2026-page-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    /* !important: overrides theme body cream/beige background applied site-wide. */
    background-color: var(--rns-white) !important;
}

/* ─── Full-Width Feature Card ─── */
a.feature-card {
    width: 100%;
    display: block;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    padding-top: 32px;
}

a.feature-card:hover .feature-card-headline {
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.4);
    text-underline-offset: 4px;
}

.feature-card-author-link {
    cursor: pointer;
    transition: color 0.15s;
}

.feature-card-author-link:hover {
    color: var(--rns-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.feature-card-img-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--rns-dark);
}

.feature-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #3a2e24 0%, #1a1410 60%, #0e0c0a 100%);
}

.feature-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 25%,
        rgba(10,8,6,0.5) 55%,
        rgba(10,8,6,0.92) 100%
    );
}

.feature-card-body {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
}

.feature-card-inner {
    padding: 44px 48px;
    max-width: 820px;
}

.feature-card-kicker {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--rns-orange);
    display: block;
    margin-bottom: 14px;
}

.feature-card-headline {
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.feature-card-dek {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    margin-bottom: 20px;
    max-width: 680px;
}

.feature-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
}

.feature-card-meta strong {
    color: rgba(255,255,255,0.9);
}

.feature-card-meta-sep {
    color: rgba(255,255,255,0.25);
}

.feature-card-pillar {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    margin-left: 4px;
}

/* Per-pillar color coding */
.feature-card-pillar[data-pillar="Sanctuary"] {
    color: #90b8e0;
    border: 1px solid rgba(144,184,224,0.35);
    background: rgba(144,184,224,0.12);
}

.feature-card-pillar[data-pillar="Belonging"] {
    color: #90c8a0;
    border: 1px solid rgba(144,200,160,0.35);
    background: rgba(144,200,160,0.12);
}

.feature-card-pillar[data-pillar="Enforcement"] {
    color: #e09090;
    border: 1px solid rgba(224,144,144,0.35);
    background: rgba(224,144,144,0.12);
}

.feature-card-pillar[data-pillar="Leaving"] {
    color: #d4b896;
    border: 1px solid rgba(212,184,150,0.35);
    background: rgba(212,184,150,0.12);
}

/* ─── Full-Width Native Video ─── */
.landing-2026-fw-video {
    margin: 36px 0 0;
    background: var(--rns-dark);
    overflow: hidden;
}

.landing-2026-fw-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0806;
}

.landing-2026-fw-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-2026-fw-video-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, rgba(8,6,4,0.96) 100%);
    pointer-events: none;
}

.landing-2026-fw-video-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.landing-2026-fw-video-controls.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.landing-2026-fw-video-rns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-2026-fw-video-rns-badge {
    background: var(--rns-orange);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
}

.landing-2026-fw-video-rns-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.landing-2026-fw-video-mute-btn {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 12px;
    cursor: pointer;
    background: transparent;
    border-radius: 2px;
    transition: all 0.15s;
}

.landing-2026-fw-video-mute-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.landing-2026-fw-video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: pointer;
    transition: opacity 0.2s;
    border: 0;
    background: transparent;
    padding: 0;
}

.landing-2026-fw-video-play-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.landing-2026-fw-video-play-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(250,85,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 12px rgba(250,85,0,0.15);
    transition: transform 0.15s;
}

.landing-2026-fw-video-play-btn:hover .landing-2026-fw-video-play-circle {
    transform: scale(1.07);
}

.landing-2026-fw-video-play-circle::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 26px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.landing-2026-fw-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 48px 36px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.landing-2026-fw-video-text {
    flex: 1;
}

.landing-2026-fw-video-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rns-orange);
    margin-bottom: 10px;
    display: block;
}

.landing-2026-fw-video-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    max-width: 680px;
    margin: 0;
}

.landing-2026-fw-video-cta {
    flex-shrink: 0;
}

.landing-2026-fw-video-read-story {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rns-orange);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    border: 2px solid var(--rns-orange);
    white-space: nowrap;
    transition: all 0.15s;
    text-decoration: none;
}

.landing-2026-fw-video-read-story:hover {
    background: transparent;
    color: var(--rns-orange);
}

.landing-2026-fw-video-read-story-arrow {
    font-size: 16px;
    line-height: 1;
}

.landing-2026-fw-video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 5;
    cursor: pointer;
}

.landing-2026-fw-video-progress-fill {
    height: 100%;
    width: 0;
    background: var(--rns-orange);
}

.landing-2026-fw-video-mobile-info {
    display: none;
}

/* ─── Featured Articles (Atlas 2026) — options: RNS Theme Settings ─── */
.landing-2026-fa-module {
    margin-top: 28px;
}

.landing-2026-fa-section-header {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 32px 0 24px;
}

.landing-2026-fa-section-accent {
    width: 4px;
    height: 28px;
    background: var(--rns-orange);
    margin-right: 14px;
    flex-shrink: 0;
}

.landing-2026-fa-section-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rns-dark);
}

.landing-2026-fa-section-rule {
    flex: 1;
    height: 1px;
    background: var(--rns-border);
    margin-left: 20px;
}

.landing-2026-fa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rns-border);
}

.landing-2026-fa-lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--rns-border);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.landing-2026-fa-lead:hover h2.landing-2026-fa-headline-lead {
    color: var(--rns-orange);
}

.landing-2026-fa-lead-img {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #c8b89a;
}

.landing-2026-fa-lead-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-2026-fa-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-2026-fa-img-ph--lead {
    background: linear-gradient(135deg, #c8b89a 0%, #a89070 100%);
}

.landing-2026-fa-img-ph--sub {
    background: linear-gradient(135deg, #d4c5b0, #b8a890);
    color: rgba(0, 0, 0, 0.35);
}

.landing-2026-fa-lead-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--rns-border);
}

.landing-2026-fa-pillar {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 8px;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid var(--rns-border);
    align-self: flex-start;
}

.landing-2026-fa-pillar[data-pillar="Belonging"] {
    color: #2e6b3e;
    border-color: #b6d9c0;
    background: #f0faf3;
}

.landing-2026-fa-pillar[data-pillar="Enforcement"] {
    color: #8b1a1a;
    border-color: #e8b8b8;
    background: #fdf3f3;
}

.landing-2026-fa-pillar[data-pillar="Leaving"] {
    color: #1a4a7a;
    border-color: #b8cfe8;
    background: #f0f5fd;
}

.landing-2026-fa-pillar[data-pillar="Sanctuary"] {
    color: #6b4c2a;
    border-color: #d9c4a8;
    background: #fdf8f2;
}

.landing-2026-fa-kicker {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rns-orange);
    margin-bottom: 14px;
    display: block;
}

.landing-2026-fa-kicker--sub {
    margin-top: 8px;
}

.landing-2026-fa-module h2.landing-2026-fa-headline-lead {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 700;
    color: var(--rns-dark);
    margin-bottom: 16px;
    transition: color 0.15s;
}

.landing-2026-fa-dek {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 300;
    color: var(--rns-muted);
    margin-bottom: 20px;
}

.landing-2026-fa-meta {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--rns-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid var(--rns-border);
    padding-top: 16px;
    margin-top: auto;
}

.landing-2026-fa-meta strong,
.landing-2026-fa-sub-meta strong {
    color: var(--rns-text);
}

.landing-2026-fa-meta-sep {
    color: var(--rns-rule);
}

.landing-2026-fa-author-link {
    cursor: pointer;
    transition: color 0.15s;
}

.landing-2026-fa-author-link:hover {
    color: var(--rns-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.landing-2026-fa-sub-cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.landing-2026-fa-sub-card {
    border-right: 1px solid var(--rns-border);
    overflow: hidden;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    display: block;
}

.landing-2026-fa-sub-card:last-child {
    border-right: none;
}

.landing-2026-fa-sub-card:hover h3.landing-2026-fa-sub-headline {
    color: var(--rns-orange);
}

.landing-2026-fa-sub-img {
    height: 253px;
    overflow: hidden;
    background: #e0d8cc;
}

.landing-2026-fa-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-2026-fa-sub-body {
    padding: 20px 22px 22px;
}

.landing-2026-fa-module h3.landing-2026-fa-sub-headline {
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.28;
    font-weight: 700;
    color: var(--rns-dark);
    margin-bottom: 12px;
    transition: color 0.15s;
}

.landing-2026-fa-sub-meta {
    font-family: var(--font-sans);
    font-size: 10.5px;
    color: var(--rns-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .landing-2026-fa-sub-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-2026-fa-sub-card:nth-child(2n) {
        border-right: none;
    }

    .landing-2026-fa-sub-card:nth-child(odd) {
        border-right: 1px solid var(--rns-border);
    }

    /* !important: beats redesign.css global `h3 { font-size: 28px !important }` (~line 261). */
    .landing-2026-fa-module h3.landing-2026-fa-sub-headline {
        font-size: 14px !important;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .landing-2026-fa-sub-card .landing-2026-fa-kicker {
        font-size: 8px !important;
        letter-spacing: 0.18em;
        margin-bottom: 5px;
        margin-top: 0;
    }

    .landing-2026-fa-sub-card .landing-2026-fa-kicker--sub {
        margin-top: 0;
    }

    .landing-2026-fa-sub-card .landing-2026-fa-pillar {
        font-size: 8px !important;
        letter-spacing: 0.16em;
        padding: 2px 6px;
        margin-bottom: 6px;
    }

    .landing-2026-fa-sub-meta {
        font-size: 9.5px !important;
    }
}

/* ─── Atlas Filtered Content River ─── */
.landing-2026-river-module {
    margin-top: 40px;
}

.landing-2026-river-section-header {
    margin-top: 8px;
}

.landing-2026-river-filter-bar {
    margin-bottom: 8px;
}

.landing-2026-river-filter-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rns-muted);
    margin-bottom: 12px;
}

.landing-2026-river-filters-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
    gap: 12px 16px;
}

.landing-2026-river-filter-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.landing-2026-river-filter-dropdown-label {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rns-muted);
}

.landing-2026-river-select {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--rns-dark);
    background: var(--rns-white);
    border: 1.5px solid var(--rns-border);
    padding: 9px 36px 9px 13px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 2px;
    width: 100%;
    max-width: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e66' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.15s, color 0.15s;
}

.landing-2026-river-select:hover,
.landing-2026-river-select:focus {
    border-color: var(--rns-dark);
    outline: none;
}

.landing-2026-river-select.is-active {
    border-color: var(--rns-orange);
    color: var(--rns-orange);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FA5500' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.landing-2026-river-active-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    padding: 10px 0 18px;
}

.landing-2026-river-active-tags[hidden] {
    display: none !important;
}

.landing-2026-river-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rns-dark);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.landing-2026-river-tag-x {
    font-size: 12px;
    line-height: 1;
    opacity: 0.65;
    font-weight: 400;
}

.landing-2026-river-tag:hover .landing-2026-river-tag-x {
    opacity: 1;
}

.landing-2026-river-clear-all {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rns-muted);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px 0;
    margin: 0 0 0 4px;
    flex-shrink: 0;
    white-space: nowrap;
}

.landing-2026-river-clear-all:hover {
    color: var(--rns-orange);
}

.landing-2026-river-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: transparent;
    border: none;
}

a.landing-2026-river-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    background: var(--rns-white);
    border: 1px solid var(--rns-border);
    color: inherit;
    text-decoration: none;
    transition: background 0.15s;
}

a.landing-2026-river-card:hover {
    background: #faf8f4;
}

.landing-2026-river-card-img {
    height: 240px;
    overflow: hidden;
    background: #e8e2d8;
}

.landing-2026-river-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-2026-river-card-img-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d0c8be, #b5ad9f);
}

.landing-2026-river-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 20px;
    min-height: 0;
}

.landing-2026-river-card-kicker {
    font-family: var(--font-sans);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rns-orange);
    margin-bottom: 8px;
    display: block;
}

.landing-2026-river-module h3.landing-2026-river-card-headline {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--rns-dark);
    margin: 0 0 12px;
    flex: 0 1 auto;
}

.landing-2026-river-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 10px;
    color: var(--rns-muted);
    border-top: 1px solid var(--rns-border);
    padding-top: 10px;
    margin-top: auto;
}

.landing-2026-river-card-author strong {
    color: var(--rns-muted);
    font-weight: 600;
}

.landing-2026-river-pillar {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid transparent;
}

.landing-2026-river-pillar[data-pillar="Belonging"] {
    color: #2e6b3e;
    border-color: #b6d9c0;
    background: #f0faf3;
}

.landing-2026-river-pillar[data-pillar="Enforcement"] {
    color: #8b1a1a;
    border-color: #e8b8b8;
    background: #fdf3f3;
}

.landing-2026-river-pillar[data-pillar="Leaving"] {
    color: #1a4a7a;
    border-color: #b8cfe8;
    background: #f0f5fd;
}

.landing-2026-river-pillar[data-pillar="Sanctuary"] {
    color: #6b4c2a;
    border-color: #d9c4a8;
    background: #fdf8f2;
}

.landing-2026-river-empty {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--rns-muted);
    text-align: center;
    padding: 48px 20px;
    border: 1px solid var(--rns-border);
    margin: 0;
    background: var(--rns-white);
}

.landing-2026-river-empty[hidden] {
    display: none !important;
}

.landing-2026-river-load-more-wrap {
    margin-top: 28px;
    text-align: center;
}

.landing-2026-river-load-more {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--rns-orange);
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    border-radius: 2px;
}

.landing-2026-river-load-more:hover {
    filter: brightness(1.05);
}

.landing-2026-river-load-more[hidden] {
    display: none !important;
}

/* Very narrow phones (320px–480px): 14px still reads large in tight columns. */
/* !important on h3 below: beats redesign.css global `h3 { font-size: 28px !important }` (~line 261). */
@media (max-width: 480px) {
    .landing-2026-river-module h3.landing-2026-river-card-headline {
        font-size: 12px !important;
        line-height: 1.25;
        margin: 0 0 5px;
    }

    .landing-2026-fa-module h3.landing-2026-fa-sub-headline {
        font-size: 12px !important;
        line-height: 1.22;
        margin-bottom: 5px;
    }
}

/* ─── Project Masthead (Atlas of American Belonging) ─── */
.project-masthead {
    background: var(--rns-white);
    border-bottom: 1px solid var(--rns-border);
    padding: 56px 0 40px;
    text-align: center;
}

.project-masthead h1.masthead-title,
.project-masthead .masthead-title {
    display: block;
}

.project-masthead .masthead-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.project-masthead .masthead-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
}

.project-masthead .masthead-globe {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    line-height: 0;
}

.project-masthead .masthead-rule {
    display: block;
    width: 1.5px;
    height: 72px;
    background-color: #DDD5C5;
    flex-shrink: 0;
}

.project-masthead .masthead-globe svg {
    width: 100%;
    height: 100%;
    display: block;
}

.project-masthead .masthead-title {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    line-height: 0.9;
    color: #1A1410;
    text-align: left;
    letter-spacing: -1px;
}

.project-masthead .masthead-title .sub {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: #8B6340;
    margin-top: 6px;
    letter-spacing: 0;
}

.project-masthead .masthead-dek {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #7A6E66;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

/* ─── Vertical Video Row (4-up + Load More) ─── */
.landing-2026-vv {
    margin: 48px 0 32px;
}

.landing-2026-vv-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.landing-2026-vv-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--rns-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.landing-2026-vv-sub {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    color: var(--rns-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-2026-vv-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.landing-2026-vv-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.landing-2026-vv-card:hover .landing-2026-vv-card-title {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.landing-2026-vv-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--rns-dark);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.landing-2026-vv-poster {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-2026-vv-poster--ph {
    background: linear-gradient(135deg, #2a2420 0%, var(--rns-dark) 100%);
}

.landing-2026-vv-native-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--rns-dark);
}

/* Top-left: RNS badge + handle */
.landing-2026-vv-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px 3px 3px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    z-index: 2;
}

.landing-2026-vv-rns-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--rns-orange);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
}

.landing-2026-vv-handle {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

/* Top-right: source badge */
.landing-2026-vv-source {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 4px;
    line-height: 1.2;
    z-index: 2;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

.landing-2026-vv-source--tiktok {
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-2026-vv-source--youtube {
    color: rgba(255, 120, 120, 0.95);
    border: 1px solid rgba(255, 60, 60, 0.4);
}

.landing-2026-vv-source--instagram {
    color: rgba(230, 170, 220, 0.95);
    border: 1px solid rgba(200, 100, 200, 0.4);
}

/* Center play button */
.landing-2026-vv-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.landing-2026-vv-card:hover .landing-2026-vv-play {
    transform: scale(1.05);
}

.landing-2026-vv-play-circle {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rns-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.landing-2026-vv-play-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
}

.landing-2026-vv-info {
    padding-top: 12px;
}

.landing-2026-vv-card-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--rns-dark);
    line-height: 1.3;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-2026-vv-card-meta {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--rns-muted);
    line-height: 1.4;
}

/* Social cards: click poster to load platform iframe (URL-derived embed src). */
.landing-2026-vv-card[data-vv-social] {
    cursor: pointer;
}

.landing-2026-vv-card[data-vv-social]:focus {
    outline: 2px solid var(--rns-orange);
    outline-offset: 2px;
}

.landing-2026-vv-frame.is-vv-playing .landing-2026-vv-poster,
.landing-2026-vv-frame.is-vv-playing .landing-2026-vv-play {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.landing-2026-vv-frame.is-vv-playing .landing-2026-vv-badge,
.landing-2026-vv-frame.is-vv-playing .landing-2026-vv-source {
    z-index: 5;
}

.landing-2026-vv-card--instagram .landing-2026-vv-frame.is-vv-playing .landing-2026-vv-badge,
.landing-2026-vv-card--instagram .landing-2026-vv-frame.is-vv-playing .landing-2026-vv-source {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.landing-2026-vv-embed-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: #000;
    border-radius: inherit;
    overflow: hidden;
}

.landing-2026-vv-embed-iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
}

/* Instagram: official blockquote scaled inside the 9:16 frame (no modal). */
.landing-2026-vv-embed-wrap--ig {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    pointer-events: auto;
}

/*
 * 326px = Instagram embed.js default blockquote.instagram-media width.
 * Keeping our wrapper at the same base lets us pre-scale around the IG iframe
 * to fit the 9:16 vertical-video frame. !important overrides IG platform CSS.
 */
.landing-2026-vv-ig-scale {
    width: 326px;
    flex-shrink: 0;
    will-change: transform;
}

.landing-2026-vv-embed-wrap--ig .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    width: 326px !important;
    max-width: 326px !important;
}

.landing-2026-vv-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding-bottom: 24px;
}

.landing-2026-vv-load-more {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--rns-orange);
    border: 0;
    border-radius: 4px;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.landing-2026-vv-load-more:hover {
    background: #e14b00;
    transform: translateY(-1px);
}

.landing-2026-vv-load-more[hidden] {
    display: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * Mobile overrides — consolidated @media (max-width: 767px) appendix.
 *
 * Grouped by section in original source order so the cascade behaves
 * identically to when these blocks lived next to their desktop counterparts.
 * Tablet-only (≤900px) and very-narrow-phone (≤480px) overrides remain in
 * their section bodies because each fires in only one place.
 * ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {

    /* ── Page-level container ─────────────────────────────────────────── */

    /* Theme sets body to beige (!important); prototype uses a white canvas on mobile. */
    body.page-template-landing-page-2026-php {
        background-color: var(--rns-white) !important;
    }

    .landing-2026-page-wrap {
        padding: 0;
    }

    /* ── Full-Width Feature Card ──────────────────────────────────────── */

    .feature-card-img-wrap {
        height: 340px;
    }

    .feature-card-inner {
        padding: 20px 16px 22px;
    }

    .feature-card-headline {
        font-size: 21px !important;
        line-height: 1.18;
    }

    .feature-card-dek {
        font-size: 12px !important;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .feature-card-meta {
        font-size: 10px !important;
    }

    /* ── Full-Width Native Video ──────────────────────────────────────── */

    .landing-2026-fw-video {
        margin-top: 24px;
    }

    .landing-2026-fw-video-controls {
        display: none;
    }

    .landing-2026-fw-video-info,
    .landing-2026-fw-video-gradient {
        display: none;
    }

    .landing-2026-fw-video-play-circle {
        width: 52px;
        height: 52px;
        box-shadow: none;
    }

    .landing-2026-fw-video-play-circle::after {
        border-width: 10px 0 10px 19px;
        margin-left: 3px;
    }

    .landing-2026-fw-video-mobile-info {
        display: block;
        background: var(--rns-dark);
        padding: 18px 16px 22px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .landing-2026-fw-video-mobile-eyebrow {
        font-family: var(--font-sans);
        font-size: 9px !important;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--rns-orange);
        margin-bottom: 8px;
    }

    .landing-2026-fw-video-mobile-title {
        font-family: var(--font-display);
        font-size: 20px !important;
        font-weight: 700;
        line-height: 1.25;
        color: #fff;
        margin: 0 0 14px;
    }

    .landing-2026-fw-video-mobile-read-story {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 8px;
        background: var(--rns-orange);
        color: #fff;
        font-family: var(--font-sans);
        font-size: 11px !important;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 12px 22px;
        text-decoration: none;
    }

    /* ── Featured Articles ────────────────────────────────────────────── */

    .landing-2026-fa-grid {
        border: none !important;
    }

    .landing-2026-fa-section-header {
        padding: 20px 16px 12px;
        border-bottom: 1px solid var(--rns-border);
    }

    .landing-2026-fa-section-accent {
        width: 3px;
        height: 18px;
        margin-right: 0;
    }

    .landing-2026-fa-section-title {
        font-size: 9px !important;
        padding-left: 10px;
    }

    .landing-2026-fa-lead {
        grid-template-columns: 1fr;
    }

    .landing-2026-fa-lead-img {
        height: 220px;
    }

    .landing-2026-fa-lead-body {
        border-left: none;
        border-top: none;
        padding: 16px 16px 20px;
    }

    .landing-2026-fa-lead .landing-2026-fa-kicker {
        font-size: 9px !important;
        letter-spacing: 0.2em;
        margin-bottom: 8px;
    }

    .landing-2026-fa-module h2.landing-2026-fa-headline-lead {
        font-size: 22px !important;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .landing-2026-fa-module p.landing-2026-fa-dek {
        font-size: 13px !important;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .landing-2026-fa-lead .landing-2026-fa-meta {
        font-size: 10px !important;
        gap: 6px;
        padding-top: 10px;
    }

    .landing-2026-fa-sub-cards {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 16px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .landing-2026-fa-sub-cards::-webkit-scrollbar {
        display: none;
    }

    /* 180px = mobile horizontal-scroll card width tuned to show ~2 cards on a 360px viewport. */
    .landing-2026-fa-sub-card {
        flex: 0 0 180px;
        width: 180px;
        border: none;
        background: var(--rns-card-bg);
    }

    .landing-2026-fa-sub-img {
        height: 100px;
        border: 1px solid var(--rns-border);
        border-bottom: none;
        box-sizing: border-box;
    }

    .landing-2026-fa-sub-body {
        padding: 10px 12px 12px;
        border: 1px solid var(--rns-border);
        border-top: none;
        box-sizing: border-box;
    }

    /* ── Atlas Filtered Content River ─────────────────────────────────── */

    .landing-2026-river-filter-label {
        font-size: 10px;
    }

    .landing-2026-river-filters-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 10px;
    }

    .landing-2026-river-filter-wrap {
        min-width: 0;
        max-width: none;
    }

    /* Atlas river: flat white canvas on mobile (selects used --rns-bg / cream). */
    body.page-template-landing-page-2026-php section.landing-2026-river-module[data-atlas-river],
    body.page-template-landing-page-2026-php
        section.landing-2026-river-module[data-atlas-river]
        .landing-2026-river-section-header,
    body.page-template-landing-page-2026-php
        section.landing-2026-river-module[data-atlas-river]
        .landing-2026-river-filter-bar,
    body.page-template-landing-page-2026-php
        section.landing-2026-river-module[data-atlas-river]
        .landing-2026-river-active-tags,
    body.page-template-landing-page-2026-php
        section.landing-2026-river-module[data-atlas-river]
        .landing-2026-river-grid,
    body.page-template-landing-page-2026-php
        section.landing-2026-river-module[data-atlas-river]
        .landing-2026-river-load-more-wrap,
    body.page-template-landing-page-2026-php
        section.landing-2026-river-module[data-atlas-river]
        .landing-2026-river-empty {
        background-color: var(--rns-white) !important;
    }

    body.page-template-landing-page-2026-php .landing-2026-river-select {
        font-size: 11px !important;
        background-color: var(--rns-white) !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e66' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 9px center;
        padding: 8px 28px 8px 10px;
        max-width: none;
    }

    body.page-template-landing-page-2026-php .landing-2026-river-select.is-active {
        background-color: var(--rns-white) !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FA5500' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    .landing-2026-river-filter-dropdown-label {
        font-size: 8px !important;
    }

    .landing-2026-river-active-tags {
        gap: 5px;
        margin-top: 10px;
        padding: 0 0 12px;
    }

    .landing-2026-river-tag {
        gap: 4px;
        font-size: 8.5px !important;
        letter-spacing: 0.1em;
        padding: 4px 8px;
    }

    .landing-2026-river-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: none;
        background: transparent;
    }

    /* Match atlas-prototype-7.html .m-river-card — bottom border only */
    a.landing-2026-river-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        border: none;
        border-bottom: 1px solid var(--rns-border);
        background: var(--rns-white);
    }

    /* 100px square thumb on mobile river cards (1:1 aspect, matches HTML prototype). */
    .landing-2026-river-card-img {
        position: relative;
        flex: 0 0 100px;
        width: 100px;
        min-width: 100px;
        height: 100px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .landing-2026-river-card-img-ph {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .landing-2026-river-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .landing-2026-river-card-body {
        flex: 1;
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .landing-2026-river-card-kicker {
        font-size: 8.5px !important;
        letter-spacing: 0.18em;
        margin-bottom: 5px;
    }

    /* !important: beats redesign.css global `h3 { font-size: 28px !important }` (~line 261). */
    .landing-2026-river-module h3.landing-2026-river-card-headline {
        font-size: 14px !important;
        line-height: 1.28;
        margin: 0 0 6px;
    }

    .landing-2026-river-card-footer {
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: flex-start;
        gap: 0;
        font-size: 9.5px !important;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    a.landing-2026-river-card .landing-2026-river-card-author strong {
        color: var(--rns-text);
        font-weight: 600;
    }

    /* Prototype: By Name · pillar as plain text (not pill) */
    a.landing-2026-river-card .landing-2026-river-pillar {
        background: transparent !important;
        border: none !important;
        padding: 0;
        font-size: inherit;
        font-weight: 400;
        letter-spacing: normal;
        text-transform: none;
        color: var(--rns-muted);
    }

    a.landing-2026-river-card .landing-2026-river-pillar::before {
        content: '·';
        margin: 0 0.35em;
    }

    /* Only these CTAs keep horizontal gutter when page wrap padding is 0 on mobile. */
    .landing-2026-river-load-more-wrap {
        margin-top: 20px;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .landing-2026-river-load-more {
        max-width: none;
        width: 100%;
        font-size: 11px !important;
    }

    /* ── Project Masthead ─────────────────────────────────────────────── */

    .project-masthead {
        padding: 28px 0 24px;
    }

    .project-masthead .masthead-inner {
        padding: 0 16px;
    }

    .project-masthead .masthead-lockup {
        gap: 14px;
        margin-bottom: 14px;
    }

    .project-masthead .masthead-globe {
        width: 50px;
        height: 50px;
    }

    .project-masthead .masthead-rule {
        height: 44px;
    }

    .project-masthead .masthead-title {
        font-size: 34px !important;
    }

    .project-masthead .masthead-title .sub {
        font-size: 16px !important;
        margin-top: 4px;
    }

    .project-masthead .masthead-dek {
        font-size: 13px !important;
    }

    /* ── Vertical Video Row ───────────────────────────────────────────── */

    .landing-2026-vv {
        margin: 32px 0 24px;
    }

    /* Match atlas-prototype-7.html .m-section-hdr + .m-section-title (mobile video block) */
    .landing-2026-vv-header {
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
        margin: 0 0 12px;
        padding: 20px 16px 12px;
        border-top: 1px solid var(--rns-border);
        border-bottom: 1px solid var(--rns-border);
        background: var(--rns-white);
    }

    .landing-2026-vv-header::before {
        content: '';
        display: block;
        width: 3px;
        height: 18px;
        flex-shrink: 0;
        background: var(--rns-orange);
    }

    .landing-2026-vv .landing-2026-vv-header h3.landing-2026-vv-title {
        font-family: var(--font-sans) !important;
        font-size: 9px !important;
        font-weight: 700 !important;
        letter-spacing: 0.22em !important;
        text-transform: uppercase !important;
        color: var(--rns-dark) !important;
        line-height: 1.2;
        margin: 0;
    }

    .landing-2026-vv-sub {
        display: none !important;
    }

    .landing-2026-vv-card-title {
        font-size: 12px !important;
    }

    .landing-2026-vv-card-meta {
        font-size: 11px !important;
    }

    .landing-2026-vv-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0;
        padding: 0 0 4px;
    }

    .landing-2026-vv-grid::-webkit-scrollbar {
        display: none;
    }

    .landing-2026-vv-card {
        flex: 0 0 140px;
        scroll-snap-align: start;
    }

    .landing-2026-vv-load-more-wrap {
        margin-top: 16px;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .landing-2026-vv-load-more {
        width: 100%;
        padding: 14px;
        font-size: 12px !important;
    }
}
