@font-face {
    font-family: "Chicago";
    src: url("../fonts/Chicago Bold.049a1ec045a5.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: "Chicago Light";
    src: url("../fonts/Chicago/Chicago_Light.b21a80a9a03b.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "LeyAn Hiragino Interface";
    src: url("../fonts/HiraginoInterface.3e5853a3e4ac.ttc#.HiraKakuInterface-W6") format("collection");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "LeyAn Courier";
    src: url("../fonts/Courier/Courier-12.3ff8bd9ced42.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "LeyAn Courier";
    src: url("../fonts/Courier/Courier-BOLD-3.1b7735f0968c.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "LeyAn Courier";
    src: url("../fonts/Courier/Courier-ITALIC-6.a144e5f72f41.ttf") format("truetype");
    font-display: swap;
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: "LeyAn Courier";
    src: url("../fonts/Courier/Courier-BOLDITALIC-4.5824112f0602.ttf") format("truetype");
    font-display: swap;
    font-style: italic;
    font-weight: 700;
}

:root {
    --ink: #111318;
    --paper: #f7f6f2;
    --white: #ffffff;
    --muted: #697079;
    --line: #d8d7d1;
    --accent: #ea5b2a;
    --accent-soft: #f4d7c8;
    --blue: #264f86;
    --soft: #ecebe6;
    --footer: #111318;
    --max: 1600px;
    --body: "Chicago Light", "Songti SC", "STSong", SimSun, serif;
    --heading: "Arial Black", "Noto Sans SC", "Microsoft YaHei", SimHei, sans-serif;
    --display: var(--heading);
    --serif: var(--heading);
    --sans: var(--heading);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scrollbar-color: #777c82 var(--footer);
    scrollbar-width: thin;
}
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: var(--footer); }
html::-webkit-scrollbar-thumb {
    background: #777c82;
    border: 2px solid var(--footer);
    border-radius: 999px;
}
body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading);
}
main { flex: 1 0 auto; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: -50px; left: 1rem; z-index: 1000; background: var(--white); padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    color: var(--white); background: rgba(17, 19, 24, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.header-inner {
    width: min(1760px, calc(100% - 40px)); height: 70px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: baseline;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: .04em;
    transition: color .18s ease;
}
.brand-cn {
    font-family: "LeyAn Hiragino Interface", "Hiragino Kaku Gothic ProN", "Microsoft YaHei", SimHei, sans-serif;
    font-weight: 900;
    -webkit-text-stroke: .45px currentColor;
    paint-order: stroke fill;
}
.brand-en {
    font-family: Arial, Helvetica, "Microsoft YaHei", sans-serif;
    font-weight: 700;
}
.brand:hover,
.brand:focus-visible { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: .45rem; font-size: .93rem; }
.nav-primary-links {
    width: 18rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-dropdown {
    position: relative;
    width: auto;
    min-width: 0;
}
.nav-dropdown-toggle,
.nav-direct-link,
.account-link {
    min-height: 70px;
    padding: 0 .75rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--white);
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
}
.nav-direct-link { width: 100%; justify-content: center; }
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.nav-dropdown.is-open > .nav-dropdown-toggle,
.nav-direct-link:hover,
.nav-direct-link:focus-visible,
.account-link:hover,
.account-link:focus-visible {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.nav-dropdown-toggle > span {
    width: .46rem;
    height: .3rem;
    flex: 0 0 auto;
    display: inline-block;
    align-self: center;
    color: inherit;
    background: currentColor;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    font-size: 0;
    line-height: 0;
    transform-origin: center;
    transition: transform .18s ease;
}
.nav-dropdown.is-open > .nav-dropdown-toggle > span {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 120;
    display: none;
    width: 100%;
    min-width: 8rem;
    padding: .45rem;
    color: var(--white);
    background: #343840;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}
.nav-dropdown-menu a {
    display: block;
    padding: .7rem .8rem;
    color: #eef0f2;
    text-align: center;
    white-space: nowrap;
    overflow-wrap: normal;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    color: var(--white);
    background: #4a4f58;
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown.is-open > .nav-dropdown-menu {
    display: block;
}
.search-form {
    height: 38px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 0;
    overflow: hidden;
}
.search-form:focus-within { border-color: var(--accent); }
.search-form input { width: 160px; border: 0; outline: 0; color: var(--white); background: transparent; padding: .45rem .1rem .45rem .8rem; }
.search-form button { color: var(--white); border: 0; background: transparent; padding: .3rem .7rem; cursor: pointer; }
.search-form button:hover,
.search-form button:focus-visible { color: var(--accent); background: rgba(255, 255, 255, .06); }
.nav-toggle { display: none; border: 0; background: none; padding: .5rem; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--white); }
.anchor-section { scroll-margin-top: 88px; }

.message-stack { position: fixed; right: 1.25rem; top: 85px; z-index: 200; display: grid; gap: .6rem; }
.message { max-width: 380px; padding: .85rem 1rem; background: var(--white); border-left: 4px solid var(--blue); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.message-success { border-color: #278056; }
.message-error { border-color: #b43631; }

.hero { min-height: calc(100vh - 70px); position: relative; overflow: hidden; background: var(--paper); color: var(--white); }
.home-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 13%;
}
.home-hero-content {
    min-height: calc(100vh - 70px);
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 5rem) 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.home-hero-copy {
    width: min(610px, 62vw);
    padding: clamp(1.35rem, 2.4vw, 2rem);
    box-sizing: border-box;
    color: var(--white);
    background: rgba(17, 19, 24, .94);
    border-top: 5px solid var(--accent);
    box-shadow: 0 24px 55px rgba(17, 19, 24, .22);
}
.home-hero-tagline {
    margin: 0;
    color: var(--white);
    font: 700 clamp(1.05rem, 1.8vw, 1.3rem)/1.5 var(--serif);
    letter-spacing: .04em;
    text-align: center;
}
.hero-grid { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: clamp(.95rem, 1.4vw, 1.2rem);
    font-family: var(--heading);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.hero h1 { margin: 0; font: 700 clamp(3.5rem, 7vw, 5.8rem)/.92 var(--serif); letter-spacing: -.06em; }
.hero-subtitle { margin: 1.6rem 0 .5rem; font: 500 clamp(1.25rem, 2.5vw, 2rem) var(--body); }
.hero-intro { max-width: 520px; color: #bec2c7; font-size: 1.05rem; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.home-hero .hero-actions .button { flex: 1 1 0; }
.button {
    display: inline-flex; justify-content: center; align-items: center; min-height: 46px;
    padding: .7rem 1.25rem; border: 1px solid transparent; cursor: pointer; font-weight: 700;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.button-primary { color: var(--white); background: var(--accent); }
.button-primary:hover,
.button-primary:focus-visible { background: #d94e20; transform: translateY(-2px); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-dark { color: var(--white); background: var(--ink); }
.home-hero .button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .45); }
.home-hero .button-ghost:hover,
.home-hero .button-ghost:focus-visible {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}
.hero-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.record {
    position: relative; z-index: 2; width: min(450px, 80vw); aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-radial-gradient(circle at center, #17191e 0 3px, #292c32 4px 5px);
    box-shadow: 0 30px 100px rgba(0,0,0,.45);
    animation: spin 30s linear infinite;
}
.record::after { content: ""; position: absolute; inset: 43%; border-radius: 50%; background: var(--paper); }
.record-label {
    position: absolute; inset: 31%; display: grid; place-items: center; text-align: center;
    color: var(--ink); background: var(--accent); border-radius: 50%; font: 800 1.6rem var(--serif);
}
.record-label small { font: 700 .55rem var(--sans); letter-spacing: .2em; }
.sound-lines { position: absolute; width: 80%; height: 65%; border: 1px solid rgba(255,255,255,.1); transform: rotate(-8deg); }
.sound-lines::before, .sound-lines::after { content: ""; position: absolute; inset: 12%; border: inherit; }
.sound-lines::after { inset: 24%; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .record { animation: none; }
    .article-card { transition: none; }
    .article-card:hover,
    .article-card:focus-visible {
        transform: translate3d(var(--card-shift-x), var(--card-shift-y), 0);
    }
    html { scroll-behavior: auto; }
}

.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 6rem 0; }
.section-muted { width: 100%; padding-inline: max(20px, calc((100% - var(--max))/2)); background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading h2 { margin: 0; font: 700 clamp(2.2rem, 5vw, 4.5rem)/1 var(--serif); letter-spacing: -.04em; }
.text-link {
    font-weight: 750;
    border-bottom: 1px solid currentColor;
    transition: color .18s ease, border-color .18s ease;
}
.text-link:hover,
.text-link:focus-visible { color: var(--accent); }
.featured-issue { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.featured-cover-link {
    display: block;
    transition: transform .25s ease, filter .25s ease;
}
.featured-cover-link:hover,
.featured-cover-link:focus-visible {
    transform: translateY(-8px);
    filter: drop-shadow(0 18px 22px rgba(16, 26, 48, .18));
}
.issue-cover {
    aspect-ratio: 3/4; min-height: 320px; padding: 1.6rem;
    display: flex; flex-direction: column; justify-content: space-between;
    color: var(--white);
    background:
        linear-gradient(145deg, transparent 35%, rgba(255,255,255,.14) 35% 37%, transparent 37%),
        linear-gradient(145deg, var(--blue), #101a30 70%);
    box-shadow: 0 20px 55px rgba(16,26,48,.22);
}
.issue-cover strong { font: 700 clamp(2rem, 5vw, 4.2rem)/1 var(--serif); }
.issue-cover-pending {
    color: var(--ink);
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(17, 19, 24, .045) 48% 52%, transparent 52% 100%),
        #e8e7e1;
    border: 1px solid #c8c6bd;
    box-shadow: none;
}
.issue-cover-pending strong { max-width: 7ch; }
.issue-cover-large { min-height: 480px; }
.cover-kicker { font-size: .75rem; font-weight: 800; letter-spacing: .2em; }
.featured-copy { display: flex; align-items: flex-start; flex-direction: column; }
.featured-entry { margin-bottom: 1.5rem; }
.featured-entry:hover,
.featured-entry:focus-visible { background: var(--accent); transform: translateY(-2px); }
.featured-copy h3 { margin: 0 0 1.2rem; font: 700 clamp(2rem, 5vw, 4.5rem)/1.05 var(--serif); }
.featured-copy h3 a { transition: color .18s ease; }
.featured-copy h3 a:hover,
.featured-copy h3 a:focus-visible { color: var(--accent); }
.featured-copy > p:not(.meta) { max-width: 620px; color: var(--ink); font-size: 1.08rem; }
.featured-issues-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: start;
}
.featured-issue-card { min-width: 0; }
.featured-issue-card .issue-cover {
    min-height: 0;
    padding: clamp(1.1rem, 2vw, 1.6rem);
}
.featured-issue-card .issue-cover strong {
    font-size: clamp(1.7rem, 3.2vw, 3.2rem);
}
.featured-issue-card-copy { padding-top: 1.25rem; }
.featured-issue-card-copy .meta { margin: 0 0 .45rem; }
.featured-issue-card-copy h3 {
    margin: 0 0 .85rem;
    font: 900 clamp(1.35rem, 2.3vw, 2.15rem)/1.12 var(--heading);
    letter-spacing: -.025em;
}
.featured-issue-card-copy h3 a { transition: color .18s ease; }
.featured-issue-card-copy h3 a:hover,
.featured-issue-card-copy h3 a:focus-visible { color: var(--accent); }
.article-batch-button {
    padding: .25rem 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    cursor: pointer;
    font-family: var(--heading);
    font-weight: 800;
}
.article-batch-button[hidden] { display: none; }
.meta { color: var(--muted); font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.article-grid {
    width: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 6px;
    gap: 3px;
    padding: 18px 6px 22px;
    background: transparent;
}
.article-card {
    --card-bg: #f4d9cf;
    --card-hover: #efc6b6;
    --card-inset-top: 0px;
    --card-inset-bottom: 0px;
    position: relative;
    isolation: isolate;
    min-width: 0;
    min-height: 0;
    margin-block: var(--card-inset-top) var(--card-inset-bottom);
    padding: clamp(.95rem, 1.6vw, 1.4rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(17, 19, 24, .08);
    box-shadow: 0 8px 24px rgba(17, 19, 24, .06);
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.article-card[hidden] { display: none; }
.article-card-short {
    grid-column: span 3;
    grid-row: span 17;
    padding: clamp(.85rem, 1.3vw, 1.15rem);
}
.article-card:nth-child(8n + 1) {
    --card-inset-top: 12px;
}
.article-card:nth-child(8n + 2) {
    --card-bg: #dce8f1;
    --card-hover: #c6dbea;
    --card-inset-bottom: 10px;
}
.article-card:nth-child(8n + 3) {
    --card-bg: #dcebdc;
    --card-hover: #c5dfc7;
    --card-inset-top: 18px;
}
.article-card:nth-child(8n + 4) {
    --card-bg: #f2e7c8;
    --card-hover: #ead9aa;
    --card-inset-bottom: 6px;
}
.article-card:nth-child(8n + 5) {
    --card-bg: #e7dcf0;
    --card-hover: #d8c5e7;
    --card-inset-top: 15px;
}
.article-card:nth-child(8n + 6) {
    --card-bg: #f2ddd0;
    --card-hover: #e9c8b6;
    --card-inset-bottom: 12px;
}
.article-card:nth-child(8n + 7) {
    --card-bg: #d7ebe6;
    --card-hover: #bfddd5;
    --card-inset-top: 9px;
}
.article-card:nth-child(8n) {
    --card-bg: #dce1ea;
    --card-hover: #c8d0df;
    --card-inset-bottom: 4px;
}
.article-card-medium {
    grid-column: span 4;
    grid-row: span 20;
    padding-inline: clamp(1rem, 1.7vw, 1.5rem);
}
.article-card-long {
    grid-column: span 5;
    grid-row: span 24;
    padding-inline: clamp(1.1rem, 1.9vw, 1.65rem);
}
.article-card::before {
    content: attr(data-index);
    position: absolute;
    right: -.08em;
    bottom: -.28em;
    z-index: -1;
    color: rgba(17, 19, 24, .07);
    font: 300 clamp(5rem, 8vw, 8rem)/1 "Chicago Light", "Chicago", Impact, sans-serif;
    letter-spacing: -.08em;
}
.article-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -2;
    height: 42%;
    background: linear-gradient(to top, rgba(255, 255, 255, .38), transparent);
}
.article-card:hover,
.article-card:focus-visible {
    z-index: 2;
    background: var(--card-hover);
    box-shadow: 0 18px 38px rgba(17, 19, 24, .14);
    transform: scale(1.025);
}
.article-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.article-card .meta {
    margin: 0 0 .35rem;
    align-self: flex-start;
    color: rgba(17, 19, 24, .62);
    line-height: 1.25;
}
.article-card h3 {
    max-width: 15ch;
    margin: 0 0 .75rem;
    font: 700 clamp(1.4rem, 2.1vw, 2rem)/1.22 var(--serif);
}
.article-card-short h3 {
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    line-height: 1.18;
}
.article-card .text-link { margin-top: auto; align-self: flex-start; }
.recent-writing-pending {
    min-height: 300px;
    padding: clamp(2rem, 6vw, 5rem);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    color: var(--ink);
    background: #e2e6e8;
    border: 1px solid rgba(17, 19, 24, .1);
}
.recent-writing-pending > span {
    color: rgba(17, 19, 24, .12);
    font: 300 clamp(5rem, 14vw, 11rem)/.8 "Chicago Light", "Chicago", Impact, sans-serif;
}
.recent-writing-pending h3 {
    margin: .2rem 0 .8rem;
    font: 900 clamp(2.2rem, 6vw, 5rem)/1.05 var(--serif);
}
.recent-writing-pending p:last-child { max-width: 38rem; margin-bottom: 0; color: var(--ink); }

.page-header { padding: 7rem max(20px, calc((100% - var(--max))/2)); color: var(--white); background: var(--ink); }
.page-header h1 { margin: 0; font: 700 clamp(3.5rem, 8vw, 7rem)/1 var(--serif); letter-spacing: -.05em; }
.page-header > p:last-child { max-width: 700px; color: #c6c9cc; font-size: 1.15rem; }
.page-header-accent { background: var(--blue); }
.page-header.compact { padding-block: 4rem; }
.volumes-header {
    padding-block: 4.5rem;
}
.volumes-header .eyebrow {
    margin-bottom: .75rem;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    letter-spacing: .2em;
}
.volumes-header h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}
.volumes-section {
    padding-top: 4.5rem;
}
.issue-grid {
    width: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem clamp(1.5rem, 3vw, 2.5rem);
}
.issue-tile { min-width: 0; }
.issue-tile .issue-cover {
    min-height: 0;
    padding: 1.35rem;
    transition: transform .25s ease, box-shadow .25s ease;
}
.issue-tile:hover .issue-cover { transform: translateY(-8px); }
.issue-tile-copy { padding-top: 1rem; }
.issue-tile-date {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
}
.issue-tile-copy h2 {
    margin: .25rem 0 0;
    font: 700 clamp(1.3rem, 2vw, 1.6rem)/1.25 var(--serif);
}
.issue-tile-copy p { margin: .45rem 0 0; color: var(--ink); }
.issue-tile:hover .issue-tile-copy h2,
.issue-tile:focus-visible .issue-tile-copy h2 { color: var(--accent); }
.breadcrumb { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 1.25rem 0; display: flex; gap: .6rem; color: var(--muted); font-size: .85rem; }
.breadcrumb a { color: var(--ink); }
.issue-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 2.5rem 0 4.5rem;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}
.issue-cover-media {
    width: 100%;
    aspect-ratio: 3 / 4;
    min-width: 0;
}
.issue-cover-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 20px 55px rgba(16, 26, 48, .2);
}
.issue-cover-media .issue-cover {
    height: 100%;
    min-height: 0;
}
.issue-hero-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.issue-label {
    margin: 0 0 1.25rem;
    color: var(--accent);
    font: 800 clamp(2.75rem, 5.5vw, 5rem)/.9 var(--sans);
    letter-spacing: -.06em;
    text-transform: uppercase;
}
.issue-hero h1 {
    margin: 0;
    font: 700 clamp(2.4rem, 5vw, 4.5rem)/1.02 var(--serif);
    letter-spacing: -.045em;
}
.issue-date {
    margin-top: 1.25rem;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 700;
}
.issue-download {
    width: min(100%, 360px);
    margin-top: 1.25rem;
    padding: .9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    background: var(--ink);
    font-weight: 800;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
}
.issue-download:hover,
.issue-download:focus-visible {
    color: var(--ink);
    background: var(--accent);
    transform: translateY(-2px);
}
.issue-contents {
    padding-top: 3rem;
    padding-bottom: 5rem;
}
.issue-contents .section-heading {
    margin-bottom: 1.25rem;
}
.issue-contents .section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.issue-count { color: var(--muted); }
.issue-article-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) minmax(160px, 220px);
    gap: 1.25rem;
    align-items: center;
    padding: .9rem 1rem;
    border-top: 1px solid var(--line);
    transition: background-color .18s ease;
}
.issue-article-row:last-child {
    border-bottom: 1px solid var(--line);
}
.article-number {
    color: var(--accent);
    font: 300 clamp(4rem, 7vw, 6.5rem)/.78 "Chicago Light", "Chicago", Impact, sans-serif;
    letter-spacing: -.08em;
}
.issue-article-copy {
    min-width: 0;
}
.issue-article-category {
    margin: 0 0 .25rem;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
}
.issue-article-row h3 {
    width: fit-content;
    margin: 0;
    font: 700 clamp(1.2rem, 2.2vw, 1.85rem)/1.18 var(--serif);
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: .18em;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: color .18s ease, text-decoration-color .18s ease;
}
.issue-article-subtitle {
    max-width: 100%;
    margin: .4rem 0 0;
    color: var(--ink);
    font-size: .9rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.issue-article-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #767a7f;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .45), transparent 55%),
        #dddcd6;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    transition: background-color .18s ease, filter .18s ease;
}
.issue-article-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.issue-article-row:hover,
.issue-article-row:focus-visible {
    background-color: #ebe8df;
}
.issue-article-row:hover h3,
.issue-article-row:focus-visible h3 {
    color: var(--accent);
    text-decoration-line: underline;
    text-decoration-color: currentColor;
}
.issue-article-row:hover .issue-article-thumb,
.issue-article-row:focus-visible .issue-article-thumb {
    background-color: var(--accent-soft);
    filter: saturate(1.08);
}

.article-page { padding-bottom: 7rem; }
.article-layout {
    width: min(1600px, calc(100% - 40px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1040px) minmax(300px, 380px);
    justify-content: center;
    gap: clamp(3rem, 4vw, 6rem);
    align-items: start;
}
.article-primary { min-width: 0; }
.article-header, .article-body, .article-cover { width: 100%; margin-inline: auto; }
.article-header {
    min-width: 0;
    padding: 5rem 0 3rem;
}
.article-header > .eyebrow {
    margin-bottom: .9rem;
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
    letter-spacing: .11em;
}
.article-header h1 {
    max-width: 100%;
    margin: 0;
    font: 700 clamp(2.2rem, 4.5vw, 4.25rem)/1.08 var(--serif);
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.standfirst {
    max-width: 100%;
    color: var(--muted);
    font: 500 clamp(1.2rem, 2.6vw, 1.7rem)/1.45 var(--body);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.article-byline { display: flex; flex-wrap: wrap; gap: .7rem 2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .9rem; }
.article-abstract { margin-top: 2rem; padding-left: 1.25rem; border-left: 4px solid var(--accent); font-weight: 650; }
.article-cover { margin-bottom: 4rem; }
.article-cover img { width: 100%; }
.article-body,
.article-body * {
    font-family: SimSun, "宋体", "Songti SC", STSong, serif !important;
}
.article-body {
    font-size: 1.08rem;
    line-height: 1.68;
}
.content-block { margin: .95rem 0; }
.article-paragraph { max-width: 100%; }
.article-paragraph p { margin: .65em 0; }
.article-paragraph ul,
.article-paragraph ol { margin: .75em 0; }
.article-paragraph--left { text-align: left; }
.article-paragraph--center { text-align: center; }
.article-paragraph--right { text-align: right; }
.article-paragraph--justify {
    text-align: justify;
    text-justify: inter-ideograph;
}
.article-paragraph--indent > p,
.article-paragraph--indent > .rich-text > p { text-indent: 2em; }
.article-body--indent-all .article-paragraph--normal.article-paragraph--left > p,
.article-body--indent-all .article-paragraph--normal.article-paragraph--left > .rich-text > p,
.article-body--indent-all .article-paragraph--normal.article-paragraph--justify > p,
.article-body--indent-all .article-paragraph--normal.article-paragraph--justify > .rich-text > p {
    text-indent: 2em;
}
.article-paragraph--lead {
    color: var(--ink);
    font-size: 1.18em;
    line-height: 1.75;
}
.article-paragraph--caption {
    color: var(--muted);
    font-size: .9em;
    line-height: 1.5;
}
.article-paragraph--note {
    padding: .9rem 1rem;
    color: var(--muted);
    background: var(--white);
    border-left: 3px solid var(--line);
    font-size: .92em;
}
.content-block-heading { margin: 2.6rem 0 .8rem; font: 700 1.8rem var(--serif); }
.content-block-quote { margin: 1.6rem 0; padding: 1.25rem 1.6rem; border-left: 5px solid var(--accent); background: var(--white); font-size: 1.2rem; }
.article-figure {
    margin-block: 1.8rem;
    max-width: 100%;
}
.article-figure--small { width: min(420px, 100%); }
.article-figure--medium { width: min(680px, 100%); }
.article-figure--large { width: min(960px, 100%); }
.article-figure--full { width: 100%; }
.article-figure--left { margin-right: auto; margin-left: 0; }
.article-figure--center { margin-right: auto; margin-left: auto; }
.article-figure--right { margin-right: 0; margin-left: auto; }
.article-figure-link { display: block; }
.article-figure img {
    width: 100%;
    height: auto;
    display: block;
}
.article-figure figcaption {
    margin-top: .65rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}
.article-figure figcaption span,
.article-figure figcaption small { display: block; }
.article-figure figcaption small { margin-top: .22rem; font-size: .92em; }
.content-block-table { overflow-x: auto; }
.content-block-table table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: .93rem; }
.article-body .content-block-heading,
.article-body .content-block-table table { font-family: inherit; }
.content-block-table th, .content-block-table td { padding: .8rem; border: 1px solid var(--line); text-align: left; }
.content-block-table th { background: #e8e7e1; }
.content-block-audio a { display: block; padding: 1rem; background: var(--white); border: 1px solid var(--line); }
.external-card { padding: 1.1rem 1.25rem; display: flex; justify-content: space-between; gap: 1rem; background: var(--white); border: 1px solid var(--line); font-family: var(--sans); }
.external-card small { display: block; color: var(--muted); }
.article-sidebar {
    position: sticky;
    top: 94px;
    padding-top: 5rem;
    font-family: var(--sans);
}
.article-access-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
    box-shadow: 0 12px 28px rgba(17, 19, 24, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-top-color .2s ease;
}
.article-access-card:hover,
.article-access-card:focus-within {
    border-top-color: var(--ink);
    box-shadow: 0 18px 36px rgba(17, 19, 24, .13);
    transform: translateY(-3px);
}
.article-access-card > p {
    margin: 0 0 1.25rem;
    font: 600 1.05rem/1.65 var(--body);
}
.article-download {
    min-height: 62px;
    padding: .9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--white);
    background: var(--ink);
    border: 1px solid var(--ink);
    font-weight: 800;
    transition: color .2s ease, background .2s ease;
}
.article-download span:last-child { color: var(--accent); font-size: 1.35rem; }
.article-download:hover,
.article-download:focus-visible {
    color: var(--ink);
    background: var(--accent);
}
.article-download:hover span:last-child,
.article-download:focus-visible span:last-child { color: var(--ink); }
.article-download.is-unavailable {
    color: var(--muted);
    background: var(--soft);
    border-color: var(--line);
}
.article-related { margin-top: 2.5rem; }
.article-related h2 {
    margin: 0 0 1rem;
    font: 700 clamp(2rem, 3vw, 2.7rem)/1.2 var(--serif);
}
.article-audio-card {
    padding: 1.15rem;
    color: var(--white);
    background: var(--ink);
    border-bottom: 4px solid var(--accent);
}
.article-audio-meta {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
}
.article-audio-meta strong,
.article-audio-meta small { display: block; }
.article-audio-meta small { color: #b6bbc0; }
.article-audio-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--accent);
    border-radius: 50%;
    font: 800 1.25rem var(--serif);
}
.article-audio-card audio {
    width: 100%;
    display: block;
    accent-color: var(--accent);
}
.article-related-link {
    margin-top: .7rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1.25rem 1fr;
    gap: .65rem;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--line);
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.article-related-link > span:first-child {
    padding-top: .15rem;
    color: var(--accent);
    font-size: .8rem;
}
.article-related-link strong,
.article-related-link small { display: block; }
.article-related-link strong { font-family: var(--serif); font-size: 1.05rem; }
.article-related-link small { margin-top: .25rem; color: var(--muted); line-height: 1.5; }
.article-related-copy { min-width: 0; }
.article-related-url {
    margin-top: .55rem;
    display: block;
    color: var(--blue);
    font-size: .72rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.article-related-link:hover,
.article-related-link:focus-visible {
    background-color: #ebe8df;
    border-color: #c9c5b9;
    transform: translateY(-2px);
}
.article-related-link:hover strong,
.article-related-link:focus-visible strong { color: var(--accent); }
.article-related-empty { color: var(--muted); }
.preview-banner { position: sticky; top: 70px; z-index: 90; padding: .6rem; text-align: center; color: var(--ink); background: #ffe27a; font-weight: 800; }

.prose-layout { width: min(1200px, calc(100% - 40px)); margin: 0 auto; padding: 6rem 0; display: grid; grid-template-columns: 180px 1fr; gap: 4rem; }
.prose-layout aside span { color: var(--accent); font-size: 4rem; font-weight: 800; }
.prose-layout h2 { margin: 0 0 1rem; font: 700 2rem var(--serif); }
.prose-layout h2:not(:first-child) { margin-top: 3rem; }
.prose-layout p { color: var(--ink); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.feature-grid article { min-height: 300px; padding: 2rem; background: var(--paper); }
.feature-grid span { color: var(--accent); font-size: 3rem; font-weight: 800; }
.feature-grid h2 { font: 700 2rem var(--serif); }
.feature-grid p { color: var(--ink); }
.empty-state { padding: 5rem 1rem; text-align: center; border: 1px dashed var(--line); color: var(--muted); }
.empty-state > span { color: var(--accent); font-size: 3rem; }

.about-page-nav {
    position: sticky;
    top: 70px;
    z-index: 40;
    padding: .8rem max(20px, calc((100% - 1200px) / 2));
    display: flex;
    flex-wrap: wrap;
    gap: .45rem 1.25rem;
    background: rgba(244, 243, 238, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}
.about-page-nav a { padding: .35rem 0; font-weight: 750; border-bottom: 2px solid transparent; }
.about-page-nav a:hover,
.about-page-nav a:focus-visible { color: var(--accent); border-bottom-color: currentColor; }
.about-page-sections { width: min(1200px, calc(100% - 40px)); margin: 0 auto; padding: 2rem 0 6rem; }
.about-page-section {
    padding: clamp(3rem, 7vw, 6rem) 0;
    display: grid;
    grid-template-columns: minmax(80px, 140px) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 5rem);
    border-bottom: 1px solid var(--line);
}
.about-section-number { margin: 0; color: var(--accent); font: 300 clamp(3rem, 7vw, 6rem)/.9 var(--display); }
.about-page-section h2 { margin: .2rem 0 1.2rem; font: 900 clamp(2rem, 5vw, 4rem)/1.05 var(--serif); }
.about-page-section p:not(.eyebrow, .about-section-number) { max-width: 48rem; color: var(--ink); font-size: 1.08rem; }
.about-keion-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.about-keion-grid span { padding: 1.2rem; display: block; color: var(--ink); background: var(--white); }
.about-keion-grid strong { display: block; margin-bottom: .35rem; color: var(--ink); font-family: var(--serif); font-size: 1.15rem; }
.page-section-media { margin: 2rem 0 0; }
.page-section-media img { width: 100%; height: auto; display: block; border: 1px solid var(--line); }
.page-section-download { margin-top: 1.5rem; }
.page-section-body--indent > .rich-text > p,
.page-section-body--indent > p { text-indent: 2em; }
.partners-page-sections { padding-top: 0; }
.partners-page-section { border-bottom: 0; }
.partners-page-actions { margin-top: 2rem; }

.form-section { width: min(1200px, calc(100% - 40px)); margin: 0 auto; padding: 5rem 0; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.form-intro h2 { font: 700 2rem var(--serif); }
.form-intro li { margin-bottom: .8rem; color: var(--ink); }
.editorial-form { padding: 2rem; background: var(--white); border: 1px solid var(--line); }
.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; margin-bottom: .4rem; font-weight: 750; }
.form-field label span { color: var(--accent); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: .75rem .85rem; border: 1px solid #b8b8b3; border-radius: 0; background: var(--white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid var(--accent-soft); border-color: var(--accent); }
.form-field small { display: block; color: var(--muted); margin-top: .35rem; }
.field-error { color: #a92e2a; font-size: .9rem; }
.submission-layout {
    width: min(1360px, calc(100% - 40px));
    margin: 0 auto;
    padding: 5rem 0 7rem;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, .75fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}
.submission-main { min-width: 0; }
.submission-main .form-intro { margin-bottom: 2rem; }
.submission-main .editorial-form { padding: clamp(1.25rem, 3vw, 2.5rem); }
.submission-contacts {
    position: sticky;
    top: 100px;
    padding: 2rem;
    color: var(--white);
    background: var(--ink);
    border-top: 6px solid var(--accent);
}
.submission-contacts h2 { margin: .25rem 0 1rem; font: 900 2rem/1.1 var(--serif); }
.submission-contacts > p:not(.eyebrow) { color: #c6c9cc; }
.submission-contact-copy { color: #c6c9cc; }
.submission-contact-copy a { color: var(--white); text-decoration: underline; text-underline-offset: .2em; }
.submission-contacts .page-section-media { margin-top: 2rem; }
.submission-contacts .page-section-media img { border-color: rgba(255, 255, 255, .2); }
.submission-contacts .button-outline { color: var(--white); border-color: rgba(255, 255, 255, .55); }
.submission-contact-list { margin-top: 2rem; display: grid; gap: 1rem; }
.submission-contact-list > div { padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .18); }
.submission-contact-list span,
.submission-contact-list a,
.submission-contact-list strong { display: block; }
.submission-contact-list span { margin-bottom: .25rem; color: #9da3a9; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.submission-contact-list a { overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: .22em; }
.page-search { max-width: 700px; display: flex; gap: .7rem; margin-top: 2rem; }
.page-search input { flex: 1; min-width: 0; padding: .8rem 1rem; }
.category-browser { padding-bottom: 1rem; }
.category-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.category-links a {
    padding: .65rem 1rem;
    border: 1px solid var(--line);
    background: var(--white);
}
.category-links a:hover,
.category-links a:focus-visible,
.category-links a[aria-current="page"] { color: var(--white); background: var(--ink); border-color: var(--ink); }
.result-summary { color: var(--muted); }
.search-result { display: grid; grid-template-columns: 80px 1fr 2fr; gap: 1.5rem; align-items: baseline; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.search-result > span { color: var(--accent); font-size: .75rem; font-weight: 800; }
.search-result h2 { font: 700 1.4rem var(--serif); }
.search-result p { color: var(--ink); }
.social-platform-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.social-platform-card,
.contact-card {
    min-height: 280px;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--line);
}
.social-platform-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 1.25rem;
    align-items: center;
}
.social-platform-card h2,
.contact-card h2 { margin: .2rem 0 1rem; font: 700 1.65rem var(--serif); }
.platform-pending { color: var(--muted); }
.social-qr-placeholder {
    width: 140px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    gap: .15rem;
    text-align: center;
    color: var(--muted);
    background:
        linear-gradient(90deg, transparent 48%, rgba(17, 19, 24, .05) 48% 52%, transparent 52%),
        linear-gradient(transparent 48%, rgba(17, 19, 24, .05) 48% 52%, transparent 52%),
        var(--soft);
    background-size: 18px 18px;
    border: 1px dashed #9da1a5;
}
.social-qr-placeholder span { color: var(--ink); font-weight: 800; }
.social-qr-placeholder small { font-size: .75rem; }
.contact-card p:not(.eyebrow) { color: var(--ink); }
.copyright-content .button { margin-top: 1.5rem; }
.resource-list { display: grid; gap: 1rem; }
.resource-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--line);
}
.resource-card h2 { margin: .2rem 0; font: 700 1.5rem var(--serif); }
.resource-card p { margin: .35rem 0; color: var(--ink); }
.account-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 5rem 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}
.account-card,
.account-current {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 5px solid var(--accent);
}
.account-card h2,
.account-current h2 { margin: 0 0 1.5rem; font: 700 2rem var(--serif); }
.account-card .form-field input { width: 100%; }
.account-register { background: var(--soft); }
.account-current { grid-column: 1 / -1; }
.button-code {
    min-height: 38px;
    margin-top: .55rem;
    padding: .45rem .75rem;
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}
.button-code:hover,
.button-code:focus-visible { color: var(--white); background: var(--ink); }
.button-code:disabled { cursor: wait; opacity: .65; }
.email-code-status { min-height: 1.5em; margin: .35rem 0 0; color: #278056; font-size: .85rem; }
.email-code-status.is-error { color: #b43631; }
.account-verification-state { color: var(--muted); }
.account-verification-state.is-verified { color: #278056; font-weight: 700; }
.account-verification-form { max-width: 560px; margin: 1.5rem 0; }

.article-comments {
    width: min(1040px, calc(100% - 40px));
    margin: 5rem auto 0;
    padding: 3rem 0 5rem;
    border-top: 2px solid var(--ink);
}
.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}
.comments-header h2 { margin: 0; font: 700 clamp(2.5rem, 6vw, 4.5rem)/1 var(--display); }
.comments-header > span { color: var(--muted); font-weight: 700; }
.comment-form,
.comment-account-prompt {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--soft);
    border-top: 4px solid var(--accent);
}
.comment-form > label { display: block; margin-bottom: .6rem; font-weight: 700; }
.comment-moderation-notice {
    margin: 0 0 1.25rem;
    padding: 1rem 1.1rem;
    color: var(--ink);
    background: #fff3df;
    border-left: 4px solid var(--accent);
}
.comment-moderation-notice.is-pending {
    margin-bottom: 2rem;
    background: var(--soft);
    border-top: 4px solid var(--accent);
    border-left: 0;
}
.comment-moderation-notice strong { display: block; margin-bottom: .25rem; }
.comment-moderation-notice p { margin: 0; color: var(--muted); }
.comment-form textarea,
.comment-reply-form textarea {
    width: 100%;
    resize: vertical;
    padding: .85rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
}
.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: .75rem;
}
.comment-form-footer small { color: var(--muted); }
.comment-account-prompt { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.comment-account-prompt p { margin: 0; }
.comment-list { display: grid; gap: 1rem; }
.reader-comment {
    padding: 1.35rem;
    background: var(--white);
    border: 1px solid var(--line);
}
.reader-comment > header {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    color: var(--muted);
    font-size: .85rem;
}
.reader-comment > header strong { color: var(--ink); font-size: 1rem; }
.reader-comment > header time { margin-left: auto; }
.comment-body { margin-top: .75rem; overflow-wrap: anywhere; }
.comment-reply-form { margin-top: 1rem; }
.comment-reply-form summary { width: fit-content; cursor: pointer; color: var(--accent); font-weight: 700; }
.comment-reply-form form { display: grid; gap: .7rem; margin-top: .7rem; }
.comment-reply-form .button { justify-self: end; }
.comment-replies { display: grid; gap: .75rem; margin: 1rem 0 0 2rem; }
.reader-comment-reply { background: var(--paper); }
.comments-empty { padding: 2rem; color: var(--muted); text-align: center; border: 1px dashed var(--line); }

.site-footer {
    flex: 0 0 auto;
    color: var(--white);
    background: var(--footer);
    border-top: 4px solid var(--accent);
}
.footer-panel {
    padding: 2.25rem max(24px, calc((100% - 1680px) / 2)) 1.5rem;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 3.5rem);
}
.footer-columns-simplified {
    grid-template-columns: repeat(auto-fit, minmax(120px, 190px));
    justify-content: start;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
.footer-column h2 {
    margin: 0 0 .55rem;
    font: 700 clamp(1.15rem, 1.5vw, 1.3rem) var(--serif);
}
.footer-column a,
.footer-column span {
    display: block;
    width: fit-content;
    margin: .22rem 0;
    color: #b6bbc0;
    font-size: clamp(.95rem, 1.15vw, 1rem);
}
.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: .25em;
}
.footer-column h2 .footer-heading-link {
    display: inline;
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
}
.footer-license {
    margin-top: .9rem;
    padding-top: .85rem;
    display: flex;
    justify-content: center;
    color: #9da3a9;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .82rem;
}
.footer-license p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .25rem .4rem;
}
.footer-license a {
    color: #c3c7cb;
    text-decoration: underline;
    text-underline-offset: .22em;
    transition: color .18s ease;
}
.footer-license a:hover,
.footer-license a:focus-visible { color: var(--white); }
.footer-license-icons {
    display: inline-flex;
    align-items: center;
    gap: .2em;
    margin-left: .1em;
}
.footer-license-icons img {
    width: 1em;
    height: 1em;
    display: block;
}
.copyright-license-link { display: block; width: fit-content; margin-top: 1.5rem; }
.copyright-license-link + .button { margin-left: 1rem; }

.hero h1,
.section-heading h2,
.issue-cover strong,
.page-header h1,
.issue-hero h1,
.article-header h1 {
    font-family: var(--display);
}

@media (max-width: 1180px) {
    .article-layout { grid-template-columns: minmax(0, 800px); }
    .article-sidebar {
        position: static;
        padding-top: 2rem;
    }
}

@media (max-width: 1080px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none; position: absolute; inset: 70px 0 auto; padding: 1rem 20px 1.5rem;
        align-items: stretch; flex-direction: column; gap: .2rem; color: var(--white); background: var(--ink);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .site-nav.is-open { display: flex; }
    .nav-primary-links {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .nav-dropdown-toggle,
    .nav-direct-link,
    .account-link {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: .65rem .4rem;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }
    .nav-dropdown {
        width: 100%;
        flex-basis: auto;
    }
    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        padding: .25rem .5rem .55rem;
        background: #292d34;
        border: 0;
        box-shadow: none;
    }
    .nav-dropdown:hover > .nav-dropdown-menu { display: none; }
    .nav-dropdown.is-open > .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a {
        padding: .7rem .85rem;
        text-align: left;
        white-space: normal;
    }
    .nav-direct-link,
    .account-link { justify-content: flex-start; }
    .search-form { margin: .65rem 0; }
    .search-form input { width: 100%; }
    .hero-grid { grid-template-columns: 1fr; padding: 5rem 0; }
    .hero-art { min-height: 360px; }
    .home-hero-content {
        padding: clamp(18rem, 38vw, 25rem) 0 2rem;
        align-items: flex-start;
    }
    .home-hero-copy {
        width: min(560px, 52vw);
        padding: 1.1rem;
    }
    .home-hero-tagline { font-size: clamp(.95rem, 2vw, 1.1rem); }
    .home-hero .hero-actions .button {
        padding-inline: clamp(.6rem, 1.5vw, 1rem);
        white-space: nowrap;
    }
    .issue-grid { grid-template-columns: repeat(2, 1fr); }
    .social-platform-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .footer-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }
    .footer-columns-simplified {
        grid-template-columns: repeat(auto-fit, minmax(120px, 190px));
    }
}

@media (max-width: 980px) {
    .featured-issues-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
    .featured-issues-grid {
        width: min(520px, 100%);
        margin-inline: auto;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .article-grid {
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    .article-grid .article-card {
        --card-inset-top: 0px;
        --card-inset-bottom: 0px;
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
        padding: 1.35rem;
    }
    .article-grid .article-card h3 {
        font-size: clamp(1.4rem, 7vw, 2rem);
        line-height: 1.22;
    }
}

@media (max-width: 680px) {
    html, body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    html::-webkit-scrollbar,
    body::-webkit-scrollbar,
    .footer-columns::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }
    .header-inner, .hero-grid, .section, .breadcrumb, .issue-hero { width: min(100% - 28px, var(--max)); }
    .hero,
    .home-hero-content { min-height: calc(100svh - 70px); }
    .home-hero-image { object-position: center top; }
    .home-hero-content {
        width: calc(100% - 28px);
        padding: clamp(12.5rem, 48vw, 16rem) 0 1.5rem;
        align-items: flex-start;
    }
    .home-hero-copy { width: 52vw; padding: .85rem; }
    .home-hero-tagline { font-size: .9rem; line-height: 1.45; }
    .hero-actions { gap: .6rem; margin-top: .9rem; flex-wrap: nowrap; }
    .home-hero .hero-actions .button {
        min-height: 42px;
        padding: .5rem .35rem;
        font-size: .92rem;
        line-height: 1.2;
    }
    .hero h1 { font-size: clamp(3.25rem, 17vw, 4.8rem); }
    .hero-art { min-height: 300px; }
    .featured-issue, .issue-hero, .form-section, .prose-layout, .submission-layout { grid-template-columns: 1fr; gap: 2rem; }
    .submission-layout { width: calc(100% - 28px); padding-block: 3.5rem 5rem; }
    .submission-contacts { position: static; }
    .article-body {
        font-size: 1.04rem;
        line-height: 1.76;
    }
    .article-figure figcaption { font-size: 1rem; line-height: 1.65; }
    .article-figure figcaption small { font-size: .94em; }
    .about-page-nav { top: 70px; padding-inline: 14px; overflow-x: auto; flex-wrap: nowrap; }
    .about-page-nav a { flex: 0 0 auto; }
    .about-page-sections { width: calc(100% - 28px); padding-bottom: 4rem; }
    .about-page-section { grid-template-columns: 1fr; gap: 1.25rem; }
    .about-keion-grid { grid-template-columns: 1fr; }
    .article-grid {
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 1rem;
        aspect-ratio: auto;
    }
    .article-grid .article-card {
        --card-shift-x: 0px;
        --card-shift-y: 0px;
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
        padding: 1.35rem;
    }
    .article-grid .article-card h3 {
        font-size: clamp(1.4rem, 7vw, 2rem);
        line-height: 1.22;
    }
    .issue-grid, .feature-grid { grid-template-columns: 1fr; }
    .page-header { padding-inline: 20px; padding-block: 4rem; }
    .section, .section-muted { padding-block: 4rem; }
    .section-heading { align-items: start; flex-direction: column; }
    .section-heading.recent-heading {
        align-items: flex-end;
        flex-direction: row;
        gap: 1rem;
    }
    .recent-heading > div { min-width: 0; }
    .recent-heading h2 { font-size: clamp(2.1rem, 11vw, 3.25rem); }
    .recent-writing-pending { min-height: 260px; grid-template-columns: 1fr; gap: 1rem; }
    .recent-writing-pending > span { font-size: 5rem; }
    .article-batch-button { flex: 0 0 auto; white-space: nowrap; }
    .issue-cover-media { width: min(100%, 480px); }
    .issue-cover-large { min-height: 0; }
    .issue-label { font-size: clamp(2.6rem, 14vw, 4rem); }
    .issue-article-row {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: .8rem;
        padding: 1rem .4rem;
    }
    .article-number { font-size: clamp(3.2rem, 15vw, 4.4rem); }
    .issue-article-thumb {
        grid-column: 2;
        aspect-ratio: 16 / 7;
        margin-top: .15rem;
    }
    .search-result { grid-template-columns: 1fr; gap: .2rem; }
    .page-search { flex-direction: column; }
    .resource-card { grid-template-columns: 1fr; }
    .resource-card .button { justify-self: start; }
    .account-section { grid-template-columns: 1fr; }
    .article-comments { width: calc(100% - 28px); margin-top: 3rem; padding-block: 2rem 4rem; }
    .comments-header { align-items: start; }
    .comment-form,
    .comment-account-prompt,
    .reader-comment { padding: 1rem; }
    .comment-form-footer,
    .comment-account-prompt { align-items: stretch; flex-direction: column; }
    .comment-form-footer .button,
    .comment-account-prompt .button { width: 100%; }
    .reader-comment > header { align-items: flex-start; flex-wrap: wrap; }
    .reader-comment > header time { width: 100%; margin-left: 0; }
    .comment-replies { margin-left: .75rem; }
    .social-platform-card { grid-template-columns: minmax(0, 1fr) 120px; }
    .social-qr-placeholder { width: 120px; }
    .footer-panel {
        padding: 1.75rem 16px 1.25rem;
    }
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.5rem;
    }
    .footer-columns-simplified { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-column h2 {
        margin-bottom: .4rem;
        font-size: 1.125rem;
        line-height: 1.35;
        white-space: normal;
    }
    .footer-column a,
    .footer-column span {
        min-height: 30px;
        margin: 0;
        padding: .22rem 0;
        font-size: .9375rem;
        line-height: 1.45;
        white-space: normal;
    }
}

@media (max-width: 520px) {
    .hero.home-hero {
        min-height: clamp(33rem, 135vw, 37rem);
    }
    .home-hero-image {
        inset: 0 auto auto 50%;
        width: 145%;
        max-width: none;
        height: auto;
        object-fit: initial;
        transform: translateX(-50%);
    }
    .home-hero-content {
        min-height: clamp(33rem, 135vw, 37rem);
        padding: clamp(16.5rem, 78vw, 19.5rem) 0 1.75rem;
    }
    .home-hero-copy {
        width: min(72vw, 300px);
        margin-inline: auto;
        padding: .85rem;
    }
}
