/* journal.css — Zine aesthetic for the research journal
   Builds on ink-steel.css. Cyberpunk ezine meets scientific rigor.
   ------------------------------------------------------------ */

/* ── Safe areas (notched devices) ────────────────────────────── */
@supports (padding: env(safe-area-inset-left)) {
    .journal-masthead,
    .journal-section,
    .journal-pullquote,
    .journal-colophon {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
}

/* ── Smooth scroll + touch behavior ──────────────────────────── */
.journal-page {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Scan-line overlay moved to ink-steel.css body::after (global) */

/* ── Three.js scene canvas (full-page background) ──────────── */
.journal-scene-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* ── Old spiral canvas (still used as fallback) ────────────── */
.journal-spiral-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.journal-masthead > *:not(.journal-spiral-canvas) { position: relative; z-index: 1; }

/* ── Journal Nav ───────────────────────────────────────────── */
.journal-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 1.5rem;
    height: 48px;
    background: rgba(12, 9, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    max-width: 100%;
}

.jnav-brand {
    display: flex;
    align-items: baseline;
    gap: 0.35em;
    text-decoration: none;
    color: var(--text);
    margin-right: auto;
    flex-shrink: 0;
}
.jnav-brand__name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}
.jnav-brand__jp {
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.jnav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.jnav-link {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-dim);
    padding: 0.5rem 0.8rem;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.jnav-link:hover {
    color: var(--accent);
    background: var(--surface);
}
.jnav-link--rss {
    color: var(--text-faint);
}
.jnav-link--rss::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    margin-right: 0.3em;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.jnav-right {
    margin-left: auto;
    flex-shrink: 0;
}
.jnav-link--site {
    color: var(--text-faint);
    font-size: 0.55rem;
}

/* ── Burger (mobile only) ──────────────────────────────────── */
.jnav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    position: relative;
    width: 28px;
    height: 20px;
}
.jnav-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-dim);
    position: absolute;
    left: 5px;
    transition: transform 0.2s, opacity 0.2s;
}
.jnav-burger span:first-child { top: 5px; }
.jnav-burger span:last-child { top: 13px; }

/* Open state */
.jnav--open .jnav-burger span:first-child {
    transform: rotate(45deg);
    top: 9px;
}
.jnav--open .jnav-burger span:last-child {
    transform: rotate(-45deg);
    top: 9px;
}

/* ── Masthead ────────────────────────────────────────────────── */
.journal-masthead {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem 0;
    border-bottom: 2px solid var(--text);
    box-shadow: 0 2px 0 var(--glow-dim);
}
.journal-masthead__issue {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.journal-masthead__name {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
    margin-bottom: 0.15rem;
    text-shadow: 0 0 40px rgba(200,151,106,0.08);
}
.journal-masthead__jp {
    font-size: 0.45em;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    vertical-align: baseline;
    margin-left: 0.3em;
}
.journal-masthead__sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.journal-masthead__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.6rem 0;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.journal-masthead__meta a {
    color: var(--text-faint);
    text-decoration: none;
}
.journal-masthead__meta a:hover { color: var(--accent); }

/* ── Generic section container ───────────────────────────────── */
.journal-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.journal-section__label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 0 8px var(--glow-accent);
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

/* ── Stats strip ─────────────────────────────────────────────── */
.journal-stats {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    border-bottom: 1px solid var(--border);
}
.journal-stat {
    flex: 1;
    padding: 0.9rem 0.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background 0.15s;
}
.journal-stat:last-child { border-right: none; }
.journal-stat:hover { background: var(--surface); }
.journal-stat__val {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(0.85rem, 2vw, 1.3rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    text-shadow: 0 0 10px var(--glow-accent);
}
.journal-stat__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
    margin-top: 0.3rem;
}

/* ── Editor's Letter ─────────────────────────────────────────── */
.journal-letter { border-bottom: 1px solid var(--border); }
.journal-letter__body {
    max-width: 640px;
}
.journal-letter__body p {
    font-size: 0.84rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 0.8rem;
}
.journal-letter__body p:first-child {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}
.journal-letter__body p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    float: left;
    line-height: 0.8;
    margin-right: 0.12em;
    margin-top: 0.05em;
    color: var(--accent);
}
.journal-letter__sig {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text);
    line-height: 1.5;
    margin-top: 1.2rem;
}
.journal-letter__sig-title {
    font-size: 0.65rem;
    color: var(--text-dim);
}
.journal-letter__sig-loc {
    font-size: 0.6rem;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Pull Quotes ─────────────────────────────────────────────── */
.journal-pullquote {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    box-shadow: inset 0 2px 8px var(--glow-dim), inset 0 -2px 8px var(--glow-dim);
}
.journal-pullquote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--text);
    margin: 0;
    padding: 0;
    border: none;
}

/* ── Cover Story ─────────────────────────────────────────────── */
.journal-cover__card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: background 0.15s;
}
.journal-cover__card:hover { background: var(--surface-2); }
.journal-cover__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.journal-cover__deck {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}
.journal-cover__byline {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Field Dispatches ────────────────────────────────────────── */
.journal-dispatches { border-bottom: 1px solid var(--border); }
.journal-dispatches__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}
.dispatch {
    padding: 1rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.dispatch:nth-child(2n) { border-right: none; }
.dispatch:nth-last-child(-n+2) { border-bottom: none; }
.dispatch__date {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 0 6px var(--glow-accent);
    margin-bottom: 0.35rem;
}
.dispatch__body {
    font-size: 0.76rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.dispatch__body strong {
    color: var(--text);
    font-weight: 700;
}

/* ── Independent Convergences ────────────────────────────────── */
.journal-convergences { border-bottom: 1px solid var(--border); }
.journal-convergences__intro {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 640px;
}
.journal-convergences__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}
.convergence-card {
    padding: 1rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.convergence-card:nth-child(2n) { border-right: none; }
.convergence-card:nth-last-child(-n+2) { border-bottom: none; }
.convergence-card__venue {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green, var(--accent));
    text-shadow: 0 0 6px rgba(61, 220, 132, 0.3);
    margin-bottom: 0.25rem;
}
.convergence-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.88rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}
.convergence-card__finding {
    font-size: 0.73rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.convergence-card__finding em { color: var(--text); }

/* ── Recent Articles ─────────────────────────────────────────── */
.journal-recent__list {
    border: 1px solid var(--border);
}
.recent-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.recent-item:last-child { border-bottom: none; }
.recent-item:hover { background: var(--surface-2); }
.recent-item__date {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 3rem;
}
.recent-item__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.82rem;
    flex-shrink: 1;
    min-width: 0;
}
.recent-item__hook {
    font-size: 0.68rem;
    color: var(--text-dim);
    margin-left: auto;
    text-align: right;
    flex-shrink: 1;
    min-width: 0;
}
.journal-recent__more {
    margin-top: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.journal-recent__more a {
    color: var(--text-faint);
    text-decoration: none;
}
.journal-recent__more a:hover { color: var(--accent); }

/* ── LW Sequence ─────────────────────────────────────────────── */
.journal-sequence__intro {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 640px;
}
.journal-sequence__list {
    border: 1px solid var(--border);
}
.seq-item {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.seq-item:last-child { border-bottom: none; }
.seq-item:hover:not(.seq-item--locked) { background: var(--surface-2); }
.seq-item__num {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent);
    flex-shrink: 0;
    min-width: 1.5rem;
}
.seq-item--locked .seq-item__num { color: var(--text-faint); }
.seq-item__body { flex: 1; }
.seq-item__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    display: block;
}
.seq-item--locked .seq-item__title { color: var(--text-dim); }
.seq-item__sub {
    display: block;
    font-size: 0.68rem;
    color: var(--text-dim);
    margin-top: 0.15rem;
}
.seq-item--locked .seq-item__sub { color: var(--text-faint); }
.seq-item__status {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    margin-left: auto;
    flex-shrink: 0;
}
.seq-item__status--ready { color: var(--green, #5a8); }
.seq-item__status--draft { color: var(--orange, #c84); }
.seq-item__status--outline { color: var(--text-faint); }

/* ── House Ads ───────────────────────────────────────────────── */
.journal-house-ads__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}
.house-ad {
    padding: 1.2rem 1rem;
    border-right: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    display: flex;
    flex-direction: column;
}
.house-ad:last-child { border-right: none; }
.house-ad:hover { background: var(--surface-2); }
.house-ad__label {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.house-ad__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}
.house-ad__body {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.55;
    margin-top: auto;
}

/* ── Volume grid ─────────────────────────────────────────────── */
.volume-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.volume-card {
    padding: 1.2rem 1rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
    display: flex;
    flex-direction: column;
}
.volume-card:nth-child(3n) { border-right: none; }
.volume-card:nth-last-child(-n+3) { border-bottom: none; }
.volume-card:hover { background: var(--surface-2); }
.volume-card__num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.volume-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.88rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.volume-card__count {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ── Editorial section ───────────────────────────────────────── */
.journal-editorial { border-top: 1px solid var(--border); }
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}
.editorial-cell {
    padding: 1rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.editorial-cell:nth-child(3n) { border-right: none; }
.editorial-cell:nth-last-child(-n+3) { border-bottom: none; }
.editorial-cell h3 {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.6rem;
}
.editorial-cell p,
.editorial-cell li {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.editorial-cell a { color: var(--text-dim); }
.editorial-cell a:hover { color: var(--accent); }
.editorial-cell ul {
    list-style: none;
    padding: 0;
}
.editorial-cell li::before {
    content: '>';
    color: var(--accent);
    margin-right: 0.4em;
    font-family: var(--font-mono);
    font-weight: 700;
}
.editorial-orcid {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-faint);
}
.cite-example {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    line-height: 1.5;
    padding: 0.5rem;
    background: var(--surface);
    margin-bottom: 0.4rem;
}
.cite-note {
    font-size: 0.65rem;
    color: var(--text-faint);
}

/* ── ASCII dividers ──────────────────────────────────────────── */
.journal-divider {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.3rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--border);
    letter-spacing: 0.5em;
    text-align: center;
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
}

/* ── Colophon (footer) ───────────────────────────────────────── */
.journal-colophon {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem;
    border-top: 2px solid var(--text);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet (768px) ──────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Journal nav: collapse to burger */
    .jnav-burger { display: block; }
    .jnav-links, .jnav-right {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 48px;
        left: 0; right: 0;
        background: rgba(12, 9, 8, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 0.5rem 0;
    }
    .jnav--open .jnav-links,
    .jnav--open .jnav-right {
        display: flex;
    }
    .jnav-right {
        top: auto;
        border-top: 1px solid var(--border);
    }
    .jnav-link {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .journal-masthead,
    .journal-section,
    .journal-pullquote,
    .journal-colophon,
    .journal-divider { padding-left: 1rem; padding-right: 1rem; }

    .journal-masthead { padding-top: 2rem; }
    .journal-masthead__issue { font-size: 0.55rem; margin-bottom: 0.3rem; }
    .journal-masthead__sub { font-size: 0.65rem; }
    .journal-masthead__meta { flex-direction: column; gap: 0.2rem; padding: 0.45rem 0; }

    .journal-stats { flex-wrap: wrap; }
    .journal-stat { flex: none; width: 33.333%; padding: 0.65rem 0.3rem; }
    .journal-stat__val { font-size: 0.9rem; }
    .journal-stat__label { font-size: 0.48rem; }
    .journal-stat:last-child { border-right: none; }

    .journal-dispatches__grid { grid-template-columns: 1fr; }
    .dispatch { border-right: none; }
    .dispatch:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .dispatch:last-child { border-bottom: none; }

    .journal-convergences__grid { grid-template-columns: 1fr; }
    .convergence-card { border-right: none; }
    .convergence-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .convergence-card:last-child { border-bottom: none; }

    .recent-item__hook { display: none; }
    .recent-item { gap: 0.5rem; padding: 0.55rem 0.75rem; }
    .recent-item__date { min-width: 2.5rem; font-size: 0.52rem; }
    .recent-item__title { font-size: 0.78rem; }

    .seq-item { gap: 0.5rem; padding: 0.65rem 0.75rem; }
    .seq-item__status { font-size: 0.5rem; }

    .volume-grid { grid-template-columns: 1fr 1fr; }
    .volume-card:nth-child(3n) { border-right: 1px solid var(--border); }
    .volume-card:nth-child(2n) { border-right: none; }

    .journal-house-ads__grid { grid-template-columns: 1fr; }
    .house-ad { border-right: none; border-bottom: 1px solid var(--border); }
    .house-ad:last-child { border-bottom: none; }

    .editorial-grid { grid-template-columns: 1fr 1fr; }
    .editorial-cell:nth-child(3n) { border-right: 1px solid var(--border); }
    .editorial-cell:nth-child(2n) { border-right: none; }

    .journal-colophon { flex-direction: column; gap: 0.35rem; }
    .journal-divider { display: none; }
}

/* ── Phone (480px) ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .journal-masthead,
    .journal-section,
    .journal-pullquote,
    .journal-colophon { padding-left: 0.75rem; padding-right: 0.75rem; }

    .journal-masthead { padding-top: 1.5rem; }
    .journal-masthead__jp { display: block; font-size: 0.7rem; margin-left: 0; margin-top: 0.15rem; }

    .journal-stat { width: 33.333%; padding: 0.55rem 0.25rem; }
    .journal-stat__val { font-size: 0.78rem; }
    .journal-stat:last-child { border-right: none; }

    .journal-letter__body p:first-child::first-letter { font-size: 2.6rem; }
    .journal-letter__body p { font-size: 0.8rem; line-height: 1.65; }
    .journal-letter__body p:first-child { font-size: 0.92rem; }

    .journal-pullquote blockquote { font-size: 1rem; }

    .journal-cover__title { font-size: 1.3rem; }
    .journal-cover__deck { font-size: 0.72rem; }
    .journal-cover__card { padding: 1rem; }

    .dispatch { padding: 0.75rem; }
    .dispatch__body { font-size: 0.72rem; }

    .convergence-card { padding: 0.75rem; }
    .convergence-card__finding { font-size: 0.7rem; }

    .recent-item { flex-direction: row; gap: 0.4rem; padding: 0.5rem 0.75rem; min-height: 44px; }
    .recent-item__date { min-width: 2.2rem; font-size: 0.5rem; }
    .recent-item__title { font-size: 0.75rem; }

    .seq-item { flex-wrap: wrap; gap: 0.4rem; padding: 0.6rem 0.75rem; min-height: 44px; }
    .seq-item__num { font-size: 0.95rem; min-width: 1.2rem; }
    .seq-item__body { flex: 1; min-width: 0; }
    .seq-item__title { font-size: 0.78rem; }
    .seq-item__sub { font-size: 0.64rem; }
    .seq-item__status { font-size: 0.48rem; align-self: center; }

    .volume-grid { grid-template-columns: 1fr; }
    .volume-card {
        border-right: none;
        padding: 0.75rem;
        flex-direction: row;
        align-items: baseline;
        gap: 0.6rem;
        min-height: 44px;
    }
    .volume-card:nth-child(3n),
    .volume-card:nth-child(2n) { border-right: none; }
    .volume-card:last-child { border-bottom: none; }
    .volume-card__num { font-size: 1.1rem; flex-shrink: 0; min-width: 1.8rem; margin-bottom: 0; }
    .volume-card__title { font-size: 0.78rem; flex: 1; margin-bottom: 0; }
    .volume-card__count { display: none; }

    .editorial-grid { grid-template-columns: 1fr; }
    .editorial-cell { border-right: none; border-bottom: 1px solid var(--border); padding: 0.75rem; }
    .editorial-cell:last-child { border-bottom: none; }
    .editorial-cell:nth-child(3n) { border-right: none; }

    .journal-colophon { font-size: 0.5rem; padding-top: 1rem; padding-bottom: 1.5rem; }
}

/* ── Tiny (360px) ────────────────────────────────────────────── */
@media (max-width: 360px) {
    .journal-masthead__issue { font-size: 0.5rem; letter-spacing: 0.2em; }
    .journal-stat__val { font-size: 0.95rem; }
    .journal-stat__label { font-size: 0.44rem; }

    .seq-item__sub { display: none; }
    .recent-item__title { font-size: 0.7rem; }
    .journal-pullquote { padding: 1.2rem 0.75rem; }
    .journal-pullquote blockquote { font-size: 0.9rem; }
}
