/* =====================================================
   FAUCET MAGAZINE — theme.css  v2.0
   Fully responsive — mobile-first
   Breakpoints: 480 / 600 / 640 / 768 / 960 / 1100
   ===================================================== */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #0a0f1e;
    --deep:      #060b18;
    --gold:      #c9a84c;
    --gold-light:#e4c97e;
    --gold-dim:  #7a6330;
    --cream:     #f5f0e8;
    --cream-dim: #d9d0bc;
    --white:     #ffffff;
    --muted:     #6b7494;
    --rule:      rgba(201,168,76,0.25);
    --gutter:    clamp(16px, 4vw, 56px);
    --container: 1400px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--navy);
    color: var(--cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* Custom cursor disabled — using browser default */
.cursor, .cursor-ring { display: none !important; }

/* ─── SKIP LINK ─── */
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden;
    padding: 0; position: absolute; width: 1px;
}
.screen-reader-text:focus {
    background: var(--navy); clip: auto; clip-path: none;
    height: auto; left: 8px; padding: 12px 16px; top: 8px;
    width: auto; z-index: 200; color: var(--gold);
}

/* ─── CONTAINER ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ─── FILM GRAIN ─── */
body::after {
    content: ''; position: fixed; inset: 0;
    pointer-events: none; z-index: 9997; opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */

/* ─── CURSOR: disabled — browser default ─── */
.cursor, .cursor-ring { display: none !important; }

/* ══════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(6, 11, 24, 0.97);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* ── Nav bar — three-piece: logo | links | right ── */
.site-nav {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 var(--gutter);
}

/* Logo — left, fixed width */
.nav-logo {
    flex: 0 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: clamp(.82rem, 1.4vw, 1rem);
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    margin-right: 40px;
}

/* Nav links — centre, grow to fill available space */
.nav-links {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.8vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-links > li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links > li > a {
    font-family: 'DM Mono', monospace;
    font-size: clamp(.55rem, .75vw, .65rem);
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    padding: 0 2px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links > li > a:hover,
.nav-links > li.current > a { color: var(--gold); }

/* Right side — issue label + burger */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 32px;
}

.nav-issue {
    font-family: 'DM Mono', monospace;
    font-size: .56rem;
    letter-spacing: .1em;
    color: var(--muted);
    white-space: nowrap;
}

/* Hamburger — hidden on desktop */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    z-index: 101;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Dropdown ── */
.has-dropdown {
    position: relative;
}

.dropdown-btn {
    font-family: 'DM Mono', monospace;
    font-size: clamp(.55rem, .75vw, .65rem);
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cream-dim);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 2px;
    height: 64px;
    transition: color .2s;
    white-space: nowrap;
}
.dropdown-btn:hover,
.dropdown-btn[aria-expanded="true"] { color: var(--gold); }
.dropdown-btn svg { transition: transform .2s; flex-shrink: 0; }
.dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #060b18;
    border: 1px solid rgba(201, 168, 76, 0.2);
    min-width: 200px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    z-index: 200;
    box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.dropdown-menu.is-open { display: block; }

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s, background .15s;
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(201,168,76,.06); }

/* ── Admin bar offset ── */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ── Hide issue label below 1100px ── */
@media (max-width: 1100px) { .nav-issue { display: none; } }

/* ── Mobile: show burger, hide nav links ── */
@media (max-width: 960px) {
    .site-nav { height: 56px; }
    .nav-logo { margin-right: 0; }
    .nav-burger { display: flex; }
    .nav-issue  { display: none; }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        top: 56px;
        background: #060b18;
        z-index: 99;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 16px 0;
        overflow-y: auto;
        height: calc(100vh - 56px);
    }
    .nav-links.is-open { display: flex; }

    .nav-links > li { height: auto; justify-content: center; }

    .nav-links > li > a {
        display: block;
        width: 100%;
        padding: 14px 32px;
        height: auto;
        font-size: .9rem;
        letter-spacing: .12em;
        color: var(--cream);
        border-bottom: 1px solid rgba(201,168,76,.1);
        text-align: center;
        justify-content: center;
    }
    .nav-links > li > a:hover { color: var(--gold); background: rgba(201,168,76,.05); }

    /* Dropdown in mobile menu */
    .has-dropdown { flex-direction: column; height: auto !important; }
    .dropdown-btn {
        width: 100%;
        height: auto;
        padding: 14px 32px;
        font-size: .9rem;
        color: var(--cream);
        justify-content: center;
        border-bottom: 1px solid rgba(201,168,76,.1);
    }
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(201,168,76,.1);
        box-shadow: none;
        background: rgba(255,255,255,.03);
        padding: 4px 0;
    }
    .dropdown-menu li a {
        text-align: center;
        padding: 12px 32px;
        font-size: .85rem;
    }
}

/* ── Category strip ── */
.cat-strip {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 1px solid rgba(201,168,76,.12);
    background: rgba(255,255,255,.02);
    -webkit-overflow-scrolling: touch;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip-item {
    font-family: 'DM Mono', monospace;
    font-size: clamp(.5rem, .8vw, .58rem);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: clamp(9px, 1.2vw, 12px) clamp(14px, 2vw, 22px);
    border-right: 1px solid rgba(201,168,76,.1);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color .2s, background .2s;
}
.cat-strip-item:last-child { border-right: none; }
.cat-strip-item:hover,
.cat-strip-item.active { color: var(--gold); background: rgba(201,168,76,.04); }

@media (max-width: 960px) { .cat-strip { display: none; } }

/* ══════════════════════════════════════
   SECTION TAG
══════════════════════════════════════ */

.section-tag {
    font-family: 'DM Mono', monospace;
    font-size: clamp(.52rem, 1vw, .62rem); letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.section-tag::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */

.hero {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 100vh; position: relative; overflow: hidden;
}
.hero-left {
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: clamp(96px,13vw,132px) clamp(20px,4vw,64px) clamp(48px,6vw,80px) var(--gutter);
    position: relative; z-index: 2;
}
.hero-issue {
    font-family: 'DM Mono', monospace;
    font-size: clamp(.52rem,1vw,.65rem); letter-spacing: .25em; color: var(--gold);
    text-transform: uppercase; margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp .9s .1s cubic-bezier(.2,.6,.3,1) forwards;
}
.hero-issue::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 6rem); font-weight: 900; line-height: 1; color: var(--white);
    opacity: 0; animation: fadeUp .9s .25s cubic-bezier(.2,.6,.3,1) forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title a  { color: inherit; text-decoration: none; }
.hero-subtitle {
    font-size: clamp(.92rem,1.5vw,1.15rem); font-weight: 300; color: var(--cream-dim);
    line-height: 1.7; max-width: 380px;
    margin: clamp(12px,2vw,24px) 0 clamp(24px,4vw,48px); font-style: italic;
    opacity: 0; animation: fadeUp .9s .4s cubic-bezier(.2,.6,.3,1) forwards;
}
.hero-cta-group {
    display: flex; align-items: center; gap: clamp(16px,2.5vw,28px); flex-wrap: wrap;
    opacity: 0; animation: fadeUp .9s .55s cubic-bezier(.2,.6,.3,1) forwards;
}
.hero-cta {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'DM Mono', monospace; font-size: clamp(.58rem,1vw,.7rem);
    letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
    text-decoration: none; border-bottom: 1px solid var(--gold-dim); padding-bottom: 5px;
    transition: gap .3s, color .2s;
}
.hero-cta:hover { gap: 22px; color: var(--gold-light); }
.hero-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-cta-secondary {
    font-family: 'DM Mono', monospace; font-size: clamp(.56rem,1vw,.65rem);
    letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
    text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 4px;
    transition: color .2s, border-color .2s;
}
.hero-cta-secondary:hover { color: var(--cream); border-color: var(--cream); }

.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg,rgba(10,15,30,.5),transparent 60%),
                linear-gradient(to right,var(--navy),transparent 20%);
    z-index: 1;
}
.hero-feature-img {
    position: absolute; inset: 0;
    background: linear-gradient(160deg,#1a2540,#0d1628 40%,#06111e);
}
.hero-image-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%,rgba(201,168,76,.08),transparent 60%),
                radial-gradient(ellipse at 20% 80%,rgba(10,15,30,.8),transparent 50%);
}
.hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.rings {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); width: 500px; height: 500px; pointer-events: none;
}
.ring {
    position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,.15);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: ripple 4s ease-out infinite;
}
.ring:nth-child(1){width:120px;height:120px;animation-delay:0s}
.ring:nth-child(2){width:220px;height:220px;animation-delay:.8s}
.ring:nth-child(3){width:340px;height:340px;animation-delay:1.6s}
.ring:nth-child(4){width:460px;height:460px;animation-delay:2.4s}
@keyframes ripple {
    0%  {opacity:0;transform:translate(-50%,-50%) scale(.8)}
    30% {opacity:1}
    100%{opacity:0;transform:translate(-50%,-50%) scale(1.1)}
}
.faucet-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; }

.hero-stats {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 18px; z-index: 3;
    background: rgba(10,15,30,.75); border: 1px solid var(--rule);
    padding: 12px 22px; backdrop-filter: blur(8px); white-space: nowrap;
}
.hero-stat { text-align: center; }
.stat-num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.stat-label {
    display: block; font-family: 'DM Mono', monospace;
    font-size: .5rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); margin-top: 4px;
}
.hero-stat-sep { width: 1px; height: 26px; background: var(--rule); }

.scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: 'DM Mono', monospace; font-size: .56rem;
    letter-spacing: .2em; color: var(--muted); text-transform: uppercase; z-index: 10;
}
.scroll-line {
    width: 1px; height: 34px;
    background: linear-gradient(to bottom,var(--gold-dim),transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

@media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: clamp(100px,14vw,130px) var(--gutter) 56px; min-height: 88vh; }
    .hero-right, .hero-stats, .scroll-hint { display: none; }
    .hero-subtitle { max-width: 100%; }
}
@media (max-width: 480px) {
    .hero-left { min-height: 80vh; padding-bottom: 40px; }
    .hero-title { font-size: clamp(1.9rem,10vw,3rem); }
    .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ══════════════════════════════════════
   TOPIC NAV BAR
══════════════════════════════════════ */

.topic-nav-bar {
    display: flex; align-items: center;
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    background: rgba(255,255,255,.02);
    overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.topic-nav-bar::-webkit-scrollbar { display: none; }
.topic-nav-item {
    font-family: 'DM Mono', monospace;
    font-size: clamp(.52rem,1vw,.62rem); letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    padding: clamp(10px,1.5vw,16px) clamp(14px,2vw,28px);
    border-right: 1px solid var(--rule);
    transition: color .2s, background .2s; white-space: nowrap; flex-shrink: 0;
}
.topic-nav-item:last-child { border-right: none; }
.topic-nav-item:hover, .topic-nav-item:focus { color: var(--gold); background: rgba(201,168,76,.04); }

/* ══════════════════════════════════════
   GRIDS
══════════════════════════════════════ */

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }

@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 960px)  { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════ */

.features {
    padding: clamp(48px,7vw,96px) var(--gutter);
    max-width: var(--container); margin: 0 auto;
}
.features-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(20px,3vw,40px); margin-bottom: clamp(28px,5vw,64px); align-items: end;
}
.features-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem,3.5vw,3.4rem); font-weight: 700; line-height: 1.1; color: var(--white);
}
.features-header h2 em { font-style: italic; color: var(--gold-light); }
.features-header p {
    font-size: clamp(.85rem,1.2vw,1.05rem); font-weight: 300; color: var(--muted);
    line-height: 1.8; font-style: italic;
}
.features-header-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.view-all-link {
    font-family: 'DM Mono', monospace; font-size: clamp(.55rem,1vw,.62rem);
    letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
    text-decoration: none; transition: letter-spacing .3s;
}
.view-all-link:hover { letter-spacing: .25em; }

@media (max-width: 768px) {
    .features-header { grid-template-columns: 1fr; }
    .features-header-right { display: none; }
}

/* ══════════════════════════════════════
   CARD
══════════════════════════════════════ */

.card { position: relative; overflow: hidden; }
.card-inner {
    background: rgba(255,255,255,.03);
    padding: clamp(22px,3vw,40px) clamp(18px,2.5vw,36px);
    height: 100%; border: 1px solid rgba(201,168,76,.08);
    transition: background .3s, border-color .3s;
}
.card:hover .card-inner { background: rgba(201,168,76,.05); border-color: rgba(201,168,76,.2); }
.card-num {
    font-family: 'DM Mono', monospace; font-size: .58rem;
    letter-spacing: .22em; color: var(--gold-dim); margin-bottom: 18px; text-transform: uppercase;
}
.card-visual {
    width: 100%; height: clamp(130px,18vw,200px);
    margin-bottom: 22px; overflow: hidden;
    background: rgba(201,168,76,.04);
    display: flex; align-items: center; justify-content: center;
}
.card-visual img { width: 100%; height: 100%; object-fit: cover; }
.card-visual--placeholder { background: rgba(201,168,76,.04); }
.card-tag {
    font-family: 'DM Mono', monospace; font-size: .56rem; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
}
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem,1.5vw,1.4rem); font-weight: 700; color: var(--white);
    line-height: 1.25; margin-bottom: 10px;
}
.card-title a { color: inherit; text-decoration: none; transition: color .2s; }
.card-title a:hover { color: var(--gold-light); }
.card-title em { font-style: italic; color: var(--gold-light); }
.card-excerpt {
    font-size: clamp(.82rem,1vw,.92rem); font-weight: 300; color: var(--muted);
    line-height: 1.75; font-style: italic;
}
.card-footer {
    margin-top: 20px; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 8px;
    border-top: 1px solid var(--rule); padding-top: 14px;
}
.card-author { font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .1em; color: var(--muted); }
.card-read {
    font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold); text-decoration: none; transition: letter-spacing .3s;
}
.card-read:hover { letter-spacing: .22em; }

/* ══════════════════════════════════════
   COVER STORY
══════════════════════════════════════ */

.feature-large {
    padding: 0 var(--gutter) clamp(48px,7vw,96px);
    max-width: var(--container); margin: 0 auto;
}
.feature-large-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(201,168,76,.15);
}
.feature-large-image {
    min-height: clamp(240px,35vw,520px); position: relative; overflow: hidden;
    background: linear-gradient(135deg,#0d1c35,#0a1628,#060e1c);
    display: flex; align-items: center; justify-content: center;
}
.feature-large-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right,transparent 70%,rgba(10,15,30,.8));
}
.feature-large-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-large-content {
    padding: clamp(28px,5vw,64px) clamp(22px,4vw,56px);
    display: flex; flex-direction: column; justify-content: center;
    background: rgba(255,255,255,.02);
}
.feature-large-content .section-tag { margin-bottom: 18px; }
.feature-large-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem,2.5vw,2.8rem); font-weight: 700; line-height: 1.15;
    color: var(--white); margin-bottom: 16px;
}
.feature-large-content h2 em { font-style: italic; color: var(--gold-light); }
.feature-large-content p {
    font-size: clamp(.85rem,1.2vw,1rem); font-weight: 300; color: var(--muted);
    line-height: 1.9; font-style: italic; margin-bottom: 28px;
}
.feature-large-content .hero-cta { align-self: flex-start; animation: none; opacity: 1; }

@media (max-width: 768px) {
    .feature-large-inner { grid-template-columns: 1fr; }
    .feature-large-image { min-height: 200px; }
    .feature-large-image::after { background: linear-gradient(to bottom,transparent 60%,rgba(10,15,30,.9)); }
}

/* ══════════════════════════════════════
   EDITORIAL SECTIONS
══════════════════════════════════════ */

.editorial-section {
    padding: clamp(36px,6vw,60px) var(--gutter);
    max-width: var(--container); margin: 0 auto;
}
.editorial-section--dark {
    background: rgba(0,0,0,.2); max-width: 100%;
    padding: clamp(36px,6vw,60px) var(--gutter);
}
.editorial-section--dark .grid-3,
.editorial-section--dark .grid-4 { max-width: var(--container); margin: 0 auto; }
.editorial-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: clamp(18px,3vw,32px); flex-wrap: wrap; gap: 8px;
}
.editorial-header .section-tag { margin-bottom: 0; flex: 1; min-width: 140px; }
.see-more-link {
    font-family: 'DM Mono', monospace; font-size: clamp(.52rem,1vw,.6rem);
    letter-spacing: .15em; text-transform: uppercase; color: var(--gold-dim);
    text-decoration: none; transition: color .2s, letter-spacing .3s; white-space: nowrap;
}
.see-more-link:hover { color: var(--gold); letter-spacing: .22em; }

/* ══════════════════════════════════════
   PROMO BAND
══════════════════════════════════════ */

.promo-band {
    background: linear-gradient(135deg,rgba(201,168,76,.12),rgba(201,168,76,.05));
    border-top: 1px solid rgba(201,168,76,.3); border-bottom: 1px solid rgba(201,168,76,.3);
    padding: clamp(22px,3vw,32px) var(--gutter);
}
.promo-band-inner {
    max-width: var(--container); margin: 0 auto;
    display: flex; align-items: center; gap: clamp(18px,3vw,36px); flex-wrap: wrap;
}
.promo-band-stat {
    font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,3.5vw,2.4rem);
    font-weight: 900; color: var(--gold); white-space: nowrap; flex-shrink: 0;
}
.promo-band-text { flex: 1; min-width: 180px; font-size: clamp(.82rem,1.2vw,.95rem); color: var(--cream-dim); line-height: 1.6; }
.promo-band-text strong { color: var(--cream); }
.promo-band-cta {
    font-family: 'DM Mono', monospace; font-size: clamp(.56rem,1vw,.65rem);
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--navy); background: var(--gold); text-decoration: none;
    padding: clamp(10px,1.5vw,12px) clamp(16px,2vw,24px);
    white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.promo-band-cta:hover { background: var(--gold-light); }

@media (max-width: 600px) {
    .promo-band-inner { flex-direction: column; text-align: center; gap: 14px; }
    .promo-band-cta { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════
   TOPICS
══════════════════════════════════════ */

.topics {
    padding: clamp(36px,6vw,80px) var(--gutter);
    max-width: var(--container); margin: 0 auto;
}
.topics-row {
    display: flex; flex-wrap: wrap;
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    margin-top: 22px;
}
.topic-item {
    flex: 1 1 clamp(130px,20%,200px);
    padding: clamp(18px,2.5vw,36px) clamp(14px,2vw,28px);
    border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    cursor: pointer; transition: background .3s;
    text-decoration: none; color: inherit; display: block;
}
.topic-item:last-child { border-right: none; }
.topic-item:hover { background: rgba(201,168,76,.04); }
.topic-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(.85rem,1.2vw,1.05rem); font-weight: 700; color: var(--white); margin-bottom: 7px;
}
.topic-desc { font-size: clamp(.75rem,1vw,.83rem); color: var(--muted); font-style: italic; line-height: 1.6; }

@media (max-width: 768px) {
    .topic-item { flex: 1 1 48%; }
    .topic-item:nth-child(even) { border-right: none; }
}
@media (max-width: 480px) { .topic-item { flex: 1 1 100%; border-right: none; } }

/* ══════════════════════════════════════
   PULL QUOTE
══════════════════════════════════════ */

.pullquote {
    padding: clamp(56px,9vw,100px) var(--gutter);
    text-align: center; position: relative; overflow: hidden;
}
.pullquote::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center,rgba(201,168,76,.06),transparent 70%);
}
.pullquote blockquote {
    max-width: clamp(260px,80%,760px); margin: 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem,3vw,2.4rem); font-style: italic; font-weight: 400;
    color: var(--cream); line-height: 1.45; position: relative;
}
.pullquote blockquote::before,
.pullquote blockquote::after {
    color: var(--gold); font-size: clamp(2.5rem,6vw,5rem);
    line-height: 0; vertical-align: -.4em; opacity: .4;
}
.pullquote blockquote::before { content: '\201C'; }
.pullquote blockquote::after  { content: '\201D'; }
.pullquote cite {
    display: block; margin-top: 22px;
    font-family: 'DM Mono', monospace; font-size: clamp(.52rem,1vw,.65rem);
    letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim); font-style: normal;
}

/* ══════════════════════════════════════
   SUBSCRIBE
══════════════════════════════════════ */

.subscribe {
    margin: 0 var(--gutter) clamp(40px,7vw,96px);
    border: 1px solid rgba(201,168,76,.2);
    background: linear-gradient(135deg,rgba(201,168,76,.06),rgba(201,168,76,.02));
    padding: clamp(36px,6vw,72px) clamp(22px,5vw,80px);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(28px,5vw,60px); align-items: center;
}
.subscribe h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem,2.5vw,2.8rem); font-weight: 700; color: var(--white); line-height: 1.15;
}
.subscribe h2 em { font-style: italic; color: var(--gold-light); }
.subscribe p { margin-top: 14px; font-size: clamp(.85rem,1.2vw,1rem); font-weight: 300; color: var(--muted); font-style: italic; line-height: 1.7; }
.subscribe-form { display: flex; flex-direction: column; gap: 12px; }
.input-wrap {
    display: flex; border: 1px solid rgba(201,168,76,.25);
    background: rgba(255,255,255,.03); overflow: hidden; transition: border-color .3s;
}
.input-wrap:focus-within { border-color: var(--gold); }
.input-wrap input {
    flex: 1; min-width: 0; background: none; border: none; outline: none;
    padding: clamp(11px,1.5vw,16px) clamp(12px,2vw,20px);
    color: var(--cream); font-family: 'Cormorant Garamond',serif;
    font-size: clamp(.88rem,1.2vw,1rem); font-style: italic;
}
.input-wrap input::placeholder { color: var(--muted); }
.btn-gold {
    background: var(--gold); color: var(--navy); border: none;
    padding: clamp(11px,1.5vw,16px) clamp(16px,2.5vw,32px);
    font-family: 'DM Mono', monospace; font-size: clamp(.56rem,.9vw,.65rem);
    letter-spacing: .2em; text-transform: uppercase; cursor: pointer;
    transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.btn-gold:hover { background: var(--gold-light); }
.subscribe-note { font-family: 'DM Mono', monospace; font-size: clamp(.5rem,.8vw,.58rem); letter-spacing: .1em; color: var(--muted); }
.subscribe-message { font-family: 'DM Mono', monospace; font-size: clamp(.56rem,.9vw,.65rem); letter-spacing: .1em; min-height: 1.2em; }
.subscribe-message.success { color: var(--gold); }
.subscribe-message.error   { color: #e87474; }

@media (max-width: 768px) {
    .subscribe { grid-template-columns: 1fr; margin: 0 0 40px; }
}
@media (max-width: 480px) {
    .subscribe { padding: 28px 18px; }
    .input-wrap { flex-direction: column; border: none; gap: 10px; background: none; }
    .input-wrap input { border: 1px solid rgba(201,168,76,.25); background: rgba(255,255,255,.03); padding: 14px 16px; width: 100%; }
    .btn-gold { width: 100%; text-align: center; padding: 14px; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

.site-footer {
    background: var(--deep); border-top: 1px solid var(--rule);
    padding: clamp(36px,6vw,60px) var(--gutter) clamp(22px,4vw,40px);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(22px,4vw,40px); margin-bottom: clamp(28px,5vw,56px);
}
.footer-brand a {
    font-family: 'Playfair Display', serif; font-size: clamp(1rem,2vw,1.5rem);
    font-weight: 700; color: var(--gold); letter-spacing: .05em;
    text-decoration: none; display: inline-block; margin-bottom: 12px;
}
.footer-tagline { font-size: clamp(.78rem,1.1vw,.88rem); font-style: italic; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.footer-social a {
    font-family: 'DM Mono', monospace; font-size: clamp(.5rem,.8vw,.58rem);
    letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
    text-decoration: none; transition: color .2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-col h4 {
    font-family: 'DM Mono', monospace; font-size: clamp(.5rem,.8vw,.6rem);
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: clamp(8px,1.2vw,12px); }
.footer-col a { font-size: clamp(.78rem,1.1vw,.88rem); color: var(--muted); text-decoration: none; font-style: italic; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
    border-top: 1px solid var(--rule); padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-family: 'DM Mono', monospace; font-size: clamp(.48rem,.8vw,.58rem); letter-spacing: .12em; color: var(--muted); }
.footer-copy a { color: var(--muted); text-decoration: none; }
.footer-social--inline { flex-wrap: wrap; }

@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px)  {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-social--inline { display: none; }
}

/* ══════════════════════════════════════
   BLOG / ARCHIVE
══════════════════════════════════════ */

.blog-index { padding: clamp(88px,14vw,140px) 0 clamp(40px,7vw,80px); }
.archive-heading { font-size: clamp(.62rem,1vw,.75rem); margin-bottom: clamp(20px,4vw,40px); padding-top: clamp(80px,12vw,140px); }
.archive-desc { font-style: italic; color: var(--muted); margin-bottom: 32px; font-size: clamp(.85rem,1.2vw,1rem); line-height: 1.7; }
.no-posts { color: var(--muted); font-style: italic; padding: 36px 0; }
.no-posts a { color: var(--gold); }

/* Pagination */
.navigation.posts-navigation,
.navigation.pagination { margin-top: 40px; }
.page-numbers {
    font-family: 'DM Mono', monospace; font-size: .62rem; letter-spacing: .15em;
    color: var(--muted); text-decoration: none;
    padding: 10px 14px; border: 1px solid transparent;
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; min-height: 44px; transition: all .2s;
}
.page-numbers.current, .page-numbers:hover { color: var(--gold); border-color: var(--gold); }
.nav-previous a, .nav-next a {
    font-family: 'DM Mono', monospace; font-size: .62rem; letter-spacing: .15em;
    color: var(--gold); text-decoration: none; text-transform: uppercase;
    transition: letter-spacing .3s; display: inline-flex; align-items: center; min-height: 44px;
}
.nav-previous a:hover, .nav-next a:hover { letter-spacing: .25em; }

/* ══════════════════════════════════════
   SINGLE POST
══════════════════════════════════════ */

.single-post { padding-top: 0; }
.post-hero {
    position: relative; min-height: clamp(45vh,55vw,60vh);
    display: flex; align-items: flex-end; overflow: hidden;
    padding-top: 64px; /* account for fixed nav */
}
.post-hero-image { position: absolute; inset: 0; }
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,rgba(6,11,24,.95) 0%,rgba(6,11,24,.3) 60%,transparent 100%);
}
.post-hero-content {
    position: relative; z-index: 2;
    padding: clamp(36px,6vw,60px) var(--gutter);
    max-width: var(--container); width: 100%; margin: 0 auto;
}
.post-hero-content .section-tag { margin-bottom: 16px; }
.post-hero-content .section-tag a { color: var(--gold); text-decoration: none; }
.post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem,5vw,4rem); font-weight: 900; color: var(--white);
    line-height: 1.05; margin-bottom: 18px;
    overflow-wrap: break-word;
}
.post-meta {
    font-family: 'DM Mono', monospace; font-size: .62rem;
    letter-spacing: .12em; color: var(--muted);
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.post-sep { color: var(--gold-dim); }

.post-layout {
    display: grid; grid-template-columns: 1fr 300px;
    gap: clamp(28px,5vw,60px);
    max-width: var(--container); margin: 0 auto;
    padding: clamp(36px,6vw,64px) var(--gutter);
}
@media (max-width: 960px) {
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar  { display: none; }
}

.entry-content {
    font-size: clamp(.92rem,1.3vw,1.05rem); line-height: 1.9;
    color: var(--cream-dim); font-weight: 300;
    overflow-wrap: break-word; word-break: break-word;
}
.entry-content h2 {
    font-family: 'Playfair Display', serif; font-size: clamp(1.3rem,2.5vw,1.8rem);
    color: var(--white); margin: clamp(28px,4vw,48px) 0 16px; font-weight: 700;
}
.entry-content h3 {
    font-family: 'Playfair Display', serif; font-size: clamp(1.1rem,2vw,1.4rem);
    color: var(--white); margin: clamp(22px,3vw,36px) 0 12px; font-weight: 700;
}
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--gold); text-decoration: underline; text-decoration-style: dotted; }
.entry-content blockquote {
    border-left: 2px solid var(--gold); padding: 12px 0 12px 24px; margin: 24px 0;
    font-style: italic; color: var(--cream); font-size: clamp(.95rem,1.5vw,1.15rem);
}
.entry-content img { max-width: 100%; height: auto; margin: 22px 0; }
.entry-content ul, .entry-content ol { padding-left: 20px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; line-height: 1.7; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 22px; overflow-x: auto; display: block; }
.entry-content th, .entry-content td { padding: 9px 12px; border: 1px solid var(--rule); font-size: .88rem; text-align: left; }
.entry-content th { color: var(--gold); font-family: 'DM Mono', monospace; font-size: .62rem; letter-spacing: .1em; }
.entry-content pre { background: rgba(0,0,0,.3); padding: 14px 18px; overflow-x: auto; font-size: .82rem; border: 1px solid var(--rule); margin-bottom: 20px; border-radius: 2px; }
.entry-content code { font-family: 'DM Mono', monospace; font-size: .88em; background: rgba(201,168,76,.1); padding: 2px 5px; border-radius: 2px; }

.post-sidebar .widget-title {
    font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 1px solid var(--rule);
}
.related-posts ul { list-style: none; }
.related-posts li { display: flex; justify-content: space-between; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--rule); gap: 10px; }
.related-posts a { color: var(--cream); text-decoration: none; font-size: clamp(.8rem,1.1vw,.88rem); font-style: italic; transition: color .2s; flex: 1; line-height: 1.4; }
.related-posts a:hover { color: var(--gold-light); }
.related-posts span { font-family: 'DM Mono', monospace; font-size: .56rem; letter-spacing: .1em; color: var(--muted); white-space: nowrap; }

.post-terms { padding: 0 var(--gutter); margin-bottom: 32px; }
.post-tags { font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .12em; }
.post-tags span { color: var(--muted); margin-right: 8px; }
.post-tags a { color: var(--gold); text-decoration: none; margin-right: 8px; }

.author-box {
    display: flex; gap: clamp(14px,2.5vw,24px); align-items: flex-start;
    padding: clamp(24px,4vw,40px) var(--gutter);
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 32px;
}
.author-box img { border-radius: 50%; flex-shrink: 0; width: 52px; height: 52px; }
.author-name { font-family: 'Playfair Display', serif; font-size: clamp(.95rem,1.5vw,1.1rem); color: var(--white); font-weight: 700; margin-bottom: 6px; }
.author-bio  { font-size: clamp(.8rem,1.1vw,.88rem); color: var(--muted); font-style: italic; line-height: 1.6; }

.post-comments { padding: 0 var(--gutter); margin-bottom: 32px; }
.comment-form input, .comment-form textarea {
    background: rgba(255,255,255,.05); border: 1px solid var(--rule);
    color: var(--cream); padding: 11px 14px; width: 100%; margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif; font-size: 1rem; outline: none; transition: border-color .2s;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gold); }
.comment-form .submit {
    background: var(--gold); color: var(--navy); border: none; padding: 12px 26px;
    cursor: pointer; font-family: 'DM Mono', monospace; font-size: .62rem;
    letter-spacing: .18em; text-transform: uppercase; transition: background .2s;
}
.comment-form .submit:hover { background: var(--gold-light); }

.post-navigation {
    max-width: var(--container); margin: 0 auto; margin-bottom: clamp(40px,7vw,80px);
    padding: 0 var(--gutter);
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.post-navigation a { display: flex; flex-direction: column; gap: 6px; padding: 22px 0; text-decoration: none; }
.nav-dir { font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.nav-title { font-family: 'Playfair Display', serif; font-size: clamp(.88rem,1.5vw,1.1rem); color: var(--white); font-style: italic; transition: color .2s; overflow-wrap: break-word; }
.post-navigation a:hover .nav-title { color: var(--gold-light); }
@media (max-width: 600px) { .post-navigation { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════
   STATIC PAGE
══════════════════════════════════════ */

.page-content { padding: clamp(96px,14vw,140px) 0 clamp(40px,7vw,80px); }
.page-header { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,4vw,3.5rem); font-weight: 700; color: var(--white); line-height: 1.1; }

/* ══════════════════════════════════════
   SEARCH FORM
══════════════════════════════════════ */

.search-form { display: flex; border: 1px solid var(--rule); overflow: hidden; margin-bottom: 36px; }
.search-field {
    flex: 1; min-width: 0; background: rgba(255,255,255,.04); border: none; outline: none;
    color: var(--cream); padding: 12px 14px; font-family: 'Cormorant Garamond', serif; font-size: 1rem;
}
.search-submit {
    background: var(--gold); color: var(--navy); border: none; cursor: pointer;
    padding: 12px 18px; font-family: 'DM Mono', monospace; font-size: .58rem;
    letter-spacing: .15em; text-transform: uppercase; transition: background .2s;
}
.search-submit:hover { background: var(--gold-light); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-issue, .hero-title, .hero-subtitle,
    .hero-cta-group, .hero-cta-secondary { opacity: 1 !important; animation: none !important; }
}

/* ══════════════════════════════════════
   TOUCH TARGETS
══════════════════════════════════════ */

a, button, [role="button"] { -webkit-tap-highlight-color: rgba(201,168,76,.15); }

@media (pointer: coarse) {
    .nav-links a, .topic-nav-item, .card-read,
    .hero-cta, .promo-band-cta, .btn-gold,
    .footer-col a, .footer-social a, .page-numbers {
        min-height: 44px; display: inline-flex; align-items: center;
    }
    .topic-nav-item { min-height: 44px; }
    .cat-strip-item { min-height: 44px; display: inline-flex; align-items: center; }
}

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ══════════════════════════════════════
   WP UTILITIES
══════════════════════════════════════ */

.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left;  margin: 0 22px 14px 0; max-width: 50%; }
.alignright { float: right; margin: 0 0 14px 22px; max-width: 50%; }
@media (max-width: 480px) {
    .alignleft, .alignright { float: none; max-width: 100%; margin: 0 0 14px; }
}
.wp-caption, figcaption {
    font-family: 'DM Mono', monospace; font-size: .58rem;
    letter-spacing: .1em; color: var(--muted); margin-top: 7px;
}

/* ══════════════════════════════════════
   PRINT
══════════════════════════════════════ */

@media print {
    body { background: #fff; color: #000; cursor: auto; }
    .site-header, .cursor, .cursor-ring, body::after,
    .pullquote::before { display: none; }
    .entry-content { font-size: 12pt; color: #000; }
    a { color: #000; }
}


/* Suppress cat-strip on front page (belt + braces) */
.home.page .cat-strip,
body.home:not(.blog) .cat-strip { display: none; }

/* Single post hero — ensure it has min height even without featured image */
.post-hero:not(:has(.post-hero-image)) {
    min-height: auto;
    padding-top: clamp(100px, 14vw, 140px);
    background: linear-gradient(to bottom, var(--deep), var(--navy));
}

/* Entry content images — responsive */
.entry-content figure { margin: 24px 0; }
.entry-content figure img { width: 100%; height: auto; }
.entry-content figcaption {
    font-family: 'DM Mono', monospace; font-size: .58rem;
    letter-spacing: .1em; color: var(--muted); margin-top: 8px;
}

/* WP block: columns */
.wp-block-columns { display: flex; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.wp-block-column  { flex: 1 1 200px; }

@media (max-width: 600px) {
    .post-navigation .nav-links { grid-template-columns: 1fr; }
    .related-full { padding-top: 24px; }
}
