:root {
    --paper: #f4f0e8;
    --paper-deep: #e9e1d5;
    --paper-warm: #faf7f1;
    --wine: #7c2d35;
    --wine-dark: #572128;
    --ink: #25211f;
    --body: #383431;
    --muted: #766f68;
    --tan: #b58b62;
    --line: #cfc3b3;
    --line-dark: #9e8d7c;
    --white: #fffdf9;
    --serif: 'Noto Serif SC', 'Songti SC', STSong, serif;
    --sans: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    --container: 1200px;
    --shadow: 0 14px 35px rgba(54, 40, 28, .1);
    --ease: 180ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--body);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { cursor: pointer; }

::selection { color: var(--white); background: var(--wine); }

:focus-visible { outline: 3px solid var(--tan); outline-offset: 4px; }

.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;
    z-index: 20;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--wine);
    transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.narrow-container { width: min(calc(100% - 48px), 820px); margin-inline: auto; }

.section-space { padding: 86px 0; }

.section-kicker {
    margin: 0 0 12px;
    color: var(--wine);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.section-kicker::before { display: inline-block; width: 22px; height: 1px; margin: 0 9px 4px 0; content: ''; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { color: var(--ink); font-family: var(--serif); font-weight: 700; line-height: 1.26; }

h1 { font-size: 48px; }

h2 { font-size: 30px; }

h3 { font-size: 21px; }

.text-link, .card-link, .primary-link, .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    line-height: 1.4;
}

.text-link { color: var(--wine); }

.text-link:hover, .card-link:hover, .breadcrumb:hover { color: var(--wine-dark); }

.text-link svg, .card-link svg, .primary-link svg, .breadcrumb svg { width: 17px; height: 17px; stroke-width: 1.8; transition: transform var(--ease); }

.text-link:hover svg, .card-link:hover svg, .primary-link:hover svg { transform: translateX(3px); }

.utility-bar { color: #e9ded1; background: var(--ink); font-size: 12px; }

.utility-content { display: flex; align-items: center; justify-content: space-between; min-height: 32px; }

.utility-content p, .utility-content time { margin: 0; }

.masthead { display: flex; align-items: center; justify-content: space-between; min-height: 108px; }

.wordmark { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }

.wordmark-mark {
    display: grid;
    width: 39px;
    height: 45px;
    color: var(--white);
    background: var(--wine);
    place-items: center;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}

.wordmark-copy { display: grid; gap: 2px; }

.wordmark-copy strong { font-family: var(--serif); font-size: 26px; font-weight: 900; line-height: 1.1; }

.wordmark-copy small { color: var(--muted); font-size: 12px; font-weight: 500; }

.header-search { display: flex; align-items: center; width: min(340px, 33vw); border-bottom: 1px solid var(--line-dark); }

.header-search input { width: 100%; min-width: 0; padding: 10px 0; border: 0; outline: 0; color: var(--body); background: transparent; font-size: 14px; }

.header-search input::placeholder { color: #958a80; }

.header-search button, .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--wine);
    border: 0;
    background: transparent;
    place-items: center;
}

.header-search button:hover, .menu-toggle:hover { color: var(--wine-dark); background: var(--paper-deep); }

.header-search svg, .menu-toggle svg { width: 19px; height: 19px; stroke-width: 1.8; }

.menu-toggle { display: none; }

.site-nav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(250, 247, 241, .72); }

.nav-inner { display: flex; align-items: center; gap: 0; min-height: 52px; }

.nav-inner > a { display: inline-flex; align-items: center; min-height: 52px; padding: 0 19px; color: #554e49; font-size: 14px; font-weight: 600; transition: color var(--ease), background var(--ease); }

.nav-inner > a:hover, .nav-inner > a.is-active { color: var(--wine); background: var(--paper-deep); }

.nav-inner .nav-note { gap: 7px; margin-left: auto; padding-right: 0; color: var(--wine); }

.nav-note svg { width: 16px; height: 16px; }

.hero-section { padding: 32px 0 0; }

.hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    min-height: 545px;
    overflow: hidden;
    color: var(--white);
    background-color: var(--ink);
    background-position: center;
    background-size: cover;
}

.hero-copy { align-self: end; max-width: 670px; padding: 64px; }

.hero-copy .section-kicker { color: #ead4c1; }

.hero-copy .section-kicker::before { background: #ead4c1; }

.hero-copy h1 { margin-bottom: 14px; color: var(--white); font-size: 63px; font-weight: 900; }

.hero-lead { max-width: 530px; margin-bottom: 31px; color: #f1e7dd; font-family: var(--serif); font-size: 23px; line-height: 1.65; }

.primary-link { min-height: 46px; padding: 12px 17px; color: var(--white); background: var(--wine); transition: background var(--ease), transform var(--ease); }

.primary-link:hover { background: var(--wine-dark); transform: translateY(-2px); }

.hero-edition { display: flex; flex-direction: column; justify-content: flex-end; padding: 39px 31px; border-left: 1px solid rgba(255, 253, 249, .35); background: rgba(124, 45, 53, .72); }

.hero-edition p { margin-bottom: 18px; color: #f2dfcf; font-size: 12px; font-weight: 700; }

.hero-edition strong { white-space: pre-line; color: var(--white); font-family: var(--serif); font-size: 27px; line-height: 1.45; }

.hero-edition span { margin-top: 17px; color: #eadcd1; font-size: 13px; line-height: 1.6; }

.heading-line { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; padding-bottom: 23px; border-bottom: 2px solid var(--ink); }

.heading-line h2 { margin-bottom: 0; }

.reading-path { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }

.reading-path a { position: relative; display: flex; flex-direction: column; min-height: 185px; padding: 27px 24px 24px; border-right: 1px solid var(--line); transition: color var(--ease), background var(--ease); }

.reading-path a:first-child { border-left: 1px solid var(--line); }

.reading-path a:hover { color: var(--white); background: var(--wine); }

.reading-path span { margin-bottom: auto; color: var(--tan); font-family: var(--serif); font-size: 17px; font-weight: 700; }

.reading-path a:hover span { color: #ebd6c2; }

.reading-path strong { font-family: var(--serif); font-size: 22px; }

.reading-path small { margin-top: 5px; color: var(--muted); font-size: 13px; }

.reading-path a:hover small { color: #f3e3d7; }

.edition-section { background: var(--paper-deep); }

.editorial-layout { display: grid; grid-template-columns: minmax(0, 1fr) 306px; gap: 46px; }

.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 26px; padding-top: 28px; }

.article-card { display: grid; grid-template-rows: auto 1fr; }

.article-image { display: block; aspect-ratio: 1.48 / 1; overflow: hidden; background: #d2c3b0; }

.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }

.article-card:hover .article-image img { transform: scale(1.04); }

.article-card-body { padding-top: 19px; }

.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 9px; color: var(--muted); font-size: 12px; }

.article-meta span { color: var(--wine); font-weight: 700; }

.article-meta span::after { display: inline-block; width: 3px; height: 3px; margin: 0 0 3px 8px; content: ''; background: var(--tan); border-radius: 50%; }

.article-card h3 { margin-bottom: 10px; font-size: 22px; }

.article-card h3 a:hover { color: var(--wine); }

.article-card-body > p:not(.article-meta) { display: -webkit-box; overflow: hidden; margin-bottom: 13px; color: #615a54; font-size: 14px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.card-link { color: var(--wine); font-size: 14px; }

.side-column { display: grid; align-content: start; gap: 20px; padding-top: 84px; }

.side-note { padding: 26px; border-top: 3px solid var(--wine); background: var(--paper-warm); }

.note-wine { color: #f6e8dc; border-top: 0; background: var(--wine); }

.note-index { margin-bottom: 20px; color: var(--tan); font-size: 12px; font-weight: 700; }

.note-wine .note-index { color: #e6c19e; }

.side-note h2 { margin-bottom: 14px; color: inherit; font-size: 25px; }

.side-note > p:not(.note-index) { margin-bottom: 20px; font-size: 14px; line-height: 1.8; }

.note-wine a { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-size: 14px; font-weight: 700; }

.note-wine a svg { width: 16px; }

.term-list { border-top-color: var(--tan); }

.term-list dl { margin: 0; }

.term-list dl > div { padding: 13px 0; border-top: 1px solid var(--line); }

.term-list dl > div:last-child { padding-bottom: 0; }

.term-list dt { color: var(--ink); font-family: var(--serif); font-size: 17px; font-weight: 700; }

.term-list dd { margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.map-section { background: var(--paper); }

.topic-map { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }

.topic-map a { position: relative; min-height: 244px; padding: 26px 20px 23px; border-right: 1px solid var(--line); transition: background var(--ease), color var(--ease); }

.topic-map a:first-child { border-left: 1px solid var(--line); }

.topic-map a:hover { color: var(--white); background: var(--ink); }

.topic-map span { display: block; margin-bottom: 45px; color: var(--tan); font-family: var(--serif); font-size: 16px; font-weight: 700; }

.topic-map strong { display: block; font-family: var(--serif); font-size: 21px; }

.topic-map p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.topic-map a:hover p { color: #d8ccc1; }

.topic-map svg { position: absolute; right: 19px; bottom: 19px; width: 17px; color: var(--tan); transition: transform var(--ease); }

.topic-map a:hover svg { transform: translate(3px, -3px); }

.questions-section { color: #f0e8df; background: var(--ink); }

.questions-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 86px; }

.questions-layout .section-kicker { color: #dcba96; }

.questions-layout .section-kicker::before { background: #dcba96; }

.questions-layout h2 { color: var(--white); font-size: 36px; }

.questions-intro { max-width: 400px; margin-bottom: 0; color: #cdbfb1; }

.faq-list { border-top: 1px solid #66594f; }

.faq-list details { border-bottom: 1px solid #66594f; }

.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 70px; color: var(--white); cursor: pointer; font-family: var(--serif); font-size: 18px; font-weight: 700; list-style: none; }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary svg { flex: 0 0 auto; width: 18px; color: #d8b793; transition: transform var(--ease); }

.faq-list details[open] summary svg { transform: rotate(45deg); }

.faq-list details p { max-width: 620px; margin: -4px 36px 22px 0; color: #cec1b5; font-size: 14px; }

.page-intro { padding: 78px 0 63px; border-bottom: 1px solid var(--line); background: var(--paper-deep); }

.page-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 80px; align-items: end; }

.page-intro h1 { max-width: 700px; margin-bottom: 17px; font-size: 51px; }

.page-intro p:not(.section-kicker) { max-width: 690px; margin-bottom: 0; color: #5f5751; font-family: var(--serif); font-size: 20px; line-height: 1.8; }

.page-intro .intro-side-copy { padding-left: 22px; border-left: 2px solid var(--tan); color: var(--muted); font-family: var(--sans); font-size: 14px; line-height: 1.85; }

.category-content { padding-top: 54px; }

.category-layout { display: grid; grid-template-columns: minmax(0, 1fr) 282px; gap: 67px; }

.article-list { border-top: 2px solid var(--ink); }

.article-row { display: grid; grid-template-columns: 55px minmax(0, 1fr) 42px; gap: 18px; align-items: start; padding: 29px 0; border-bottom: 1px solid var(--line); }

.article-row:hover h2 a { color: var(--wine); }

.row-number { margin: 4px 0 0; color: var(--tan); font-family: var(--serif); font-size: 18px; font-weight: 700; }

.article-row h2 { margin: 0 0 9px; font-size: 25px; }

.article-row > div > p:not(.article-meta) { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.row-arrow { display: grid; width: 40px; height: 40px; margin-top: 2px; color: var(--wine); place-items: center; transition: color var(--ease), background var(--ease); }

.row-arrow:hover { color: var(--white); background: var(--wine); }

.row-arrow svg { width: 18px; }

.category-aside { align-self: start; padding: 20px 0; border-top: 3px solid var(--wine); }

.category-aside .section-kicker { margin-bottom: 10px; }

.category-aside nav { border-top: 1px solid var(--line); }

.category-aside nav a { display: grid; grid-template-columns: 28px 1fr 17px; align-items: center; gap: 7px; min-height: 51px; border-bottom: 1px solid var(--line); color: var(--body); font-size: 14px; font-weight: 700; transition: color var(--ease), padding var(--ease); }

.category-aside nav a:hover, .category-aside nav a.is-current { padding-left: 7px; color: var(--wine); }

.category-aside nav span { color: var(--tan); font-family: var(--serif); font-size: 13px; }

.category-aside nav svg { width: 15px; height: 15px; }

.empty-state { padding: 35px 0; color: var(--muted); }

.article-page { padding-top: 54px; }

.article-header { padding-bottom: 36px; }

.breadcrumb { margin-bottom: 35px; color: var(--wine); font-size: 14px; }

.breadcrumb:hover svg { transform: translateX(-3px); }

.article-header h1 { max-width: 780px; margin: 0 0 20px; font-size: 51px; line-height: 1.24; }

.article-deck { max-width: 730px; margin-bottom: 25px; color: #625950; font-family: var(--serif); font-size: 20px; line-height: 1.85; }

.article-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; color: var(--muted); font-size: 13px; }

.article-byline > span + span::before { margin-right: 11px; color: var(--tan); content: '·'; }

.copy-link { display: inline-flex; align-items: center; gap: 6px; min-height: 34px; margin-left: auto; padding: 6px 9px; color: var(--wine); border: 1px solid var(--line); background: transparent; font-size: 12px; font-weight: 700; transition: background var(--ease), color var(--ease); }

.copy-link:hover { color: var(--white); background: var(--wine); }

.copy-link svg { width: 15px; height: 15px; }

.article-cover-wrap { width: min(calc(100% - 48px), 1200px); }

.article-cover { width: 100%; height: min(54vw, 610px); object-fit: cover; }

.article-reading-layout { display: grid; grid-template-columns: 182px minmax(0, 680px); justify-content: center; gap: 62px; padding-top: 65px; }

.toc { position: sticky; top: 20px; align-self: start; padding-top: 12px; border-top: 2px solid var(--ink); }

.toc p { margin-bottom: 12px; color: var(--wine); font-size: 13px; font-weight: 700; }

.toc ol { display: grid; gap: 8px; margin: 0; padding-left: 20px; color: var(--tan); }

.toc li { padding-left: 2px; font-size: 13px; }

.toc a { color: var(--muted); transition: color var(--ease); }

.toc a:hover { color: var(--wine); }

.article-body { padding-bottom: 4px; }

.article-body section { position: relative; padding: 0 0 36px; }

.article-body .section-number { position: absolute; top: 4px; left: -45px; margin: 0; color: var(--tan); font-family: var(--serif); font-size: 16px; font-weight: 700; }

.article-body h2 { margin-bottom: 17px; font-size: 29px; }

.article-body p { margin-bottom: 18px; font-family: var(--serif); font-size: 17px; line-height: 2; }

.article-body ul { display: grid; gap: 11px; margin: 24px 0 0; padding: 21px 25px 21px 46px; border-left: 3px solid var(--tan); background: var(--paper-deep); }

.article-body li { padding-left: 3px; font-size: 15px; line-height: 1.8; }

.article-body li::marker { color: var(--wine); }

.article-callout { display: flex; gap: 12px; margin: 9px 0 0; padding: 21px 22px; color: #68482c; border-top: 1px solid #d4b990; border-bottom: 1px solid #d4b990; background: #f0e5d1; }

.article-callout svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 4px; color: var(--wine); }

.article-callout p { margin: 0; font-family: var(--sans); font-size: 14px; line-height: 1.8; }

.related-section { margin-top: 72px; background: var(--paper-deep); }

.related-list { border-top: 0; }

.related-list a { display: grid; grid-template-columns: 120px minmax(0, 1fr) 22px; align-items: center; gap: 20px; min-height: 71px; border-bottom: 1px solid var(--line); transition: color var(--ease); }

.related-list a:hover { color: var(--wine); }

.related-list span { color: var(--wine); font-size: 13px; font-weight: 700; }

.related-list strong { font-family: var(--serif); font-size: 18px; }

.related-list svg { width: 18px; height: 18px; }

.not-found { display: grid; min-height: 52vh; place-items: center; }

.not-found .container { padding: 80px 0; }

.not-found h1 { max-width: 550px; margin-bottom: 27px; }

.search-hero { padding: 74px 0 65px; border-bottom: 1px solid var(--line); background: var(--paper-deep); }

.search-hero h1 { margin-bottom: 24px; }

.large-search { display: flex; align-items: center; gap: 13px; padding: 6px 7px 6px 20px; border: 1px solid var(--line-dark); background: var(--paper-warm); }

.large-search > svg { flex: 0 0 auto; width: 21px; color: var(--wine); }

.large-search input { width: 100%; min-width: 0; padding: 12px 0; color: var(--ink); border: 0; outline: 0; background: transparent; font-size: 16px; }

.large-search button { min-height: 44px; padding: 0 22px; color: var(--white); border: 0; background: var(--wine); font-weight: 700; transition: background var(--ease); }

.large-search button:hover { background: var(--wine-dark); }

.search-results { min-height: 370px; padding-top: 54px; }

.results-heading { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; }

.results-heading p { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 20px; font-weight: 700; }

.results-heading span { color: var(--muted); font-size: 13px; }

.empty-search { padding: 63px 10px; text-align: center; }

.empty-search > svg { width: 32px; height: 32px; margin-bottom: 9px; color: var(--tan); }

.empty-search h2 { margin-bottom: 8px; font-size: 26px; }

.empty-search p { color: var(--muted); }

.prose-page { padding-bottom: 85px; }

.prose-page h2 { margin: 0 0 15px; padding-top: 34px; border-top: 1px solid var(--line); font-size: 27px; }

.prose-page h2:first-child { padding-top: 0; border-top: 0; }

.prose-page p { margin-bottom: 34px; font-family: var(--serif); font-size: 17px; line-height: 2; }

.site-footer { padding-top: 57px; color: #d9cec4; background: var(--ink); }

.footer-grid { display: grid; grid-template-columns: 1.1fr .65fr 1fr; gap: 70px; padding-bottom: 47px; }

.wordmark-footer { color: var(--white); }

.wordmark-footer .wordmark-mark { color: var(--wine); background: #ead7c4; }

.wordmark-footer .wordmark-copy small { color: #b9a99a; }

.footer-brand > p { max-width: 300px; margin: 17px 0 0; color: #bdb0a3; font-size: 13px; }

.site-footer h2 { margin: 3px 0 15px; color: #ead7c4; font-family: var(--sans); font-size: 14px; }

.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 12px; margin: 0; padding: 0; list-style: none; }

.footer-links a, .site-footer > p { color: #c8bab0; font-size: 13px; }

.footer-links a:hover, .site-footer .text-link:hover { color: var(--white); }

.footer-grid > div:last-child > p { margin-bottom: 12px; color: #bdb0a3; font-size: 13px; line-height: 1.8; }

.site-footer .text-link { color: #ead7c4; font-size: 13px; }

.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-top: 1px solid #4c433d; color: #9d9086; font-size: 12px; }

.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
    .header-search { width: min(300px, 37vw); }
    .nav-inner > a { padding-inline: 13px; }
    .hero-stage { min-height: 500px; grid-template-columns: minmax(0, 1fr) 230px; }
    .hero-copy { padding: 48px; }
    .hero-copy h1 { font-size: 55px; }
    .hero-edition { padding: 31px 25px; }
    .reading-path a { min-height: 165px; padding: 20px 16px; }
    .editorial-layout, .category-layout { gap: 35px; }
    .topic-map { grid-template-columns: repeat(3, 1fr); }
    .topic-map a:nth-child(4) { border-left: 1px solid var(--line); }
    .topic-map a { min-height: 215px; }
    .questions-layout { gap: 45px; }
    .article-reading-layout { grid-template-columns: 150px minmax(0, 620px); gap: 48px; }
    .article-body .section-number { position: static; margin-bottom: 6px; }
}

@media (max-width: 760px) {
    .container, .narrow-container, .article-cover-wrap { width: min(calc(100% - 32px), var(--container)); }
    .section-space { padding: 62px 0; }
    h1 { font-size: 37px; }
    h2 { font-size: 27px; }
    .utility-content { min-height: 30px; }
    .utility-content p { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
    .utility-content time { display: none; }
    .masthead { min-height: 83px; }
    .wordmark-mark { width: 33px; height: 38px; font-size: 23px; }
    .wordmark-copy strong { font-size: 22px; }
    .wordmark-copy small { font-size: 11px; }
    .header-search { display: none; }
    .menu-toggle { display: grid; }
    .site-nav { display: none; }
    .site-nav.is-open { display: block; }
    .nav-inner { align-items: stretch; flex-direction: column; padding: 7px 0; }
    .nav-inner > a { min-height: 44px; padding: 0 7px; }
    .nav-inner .nav-note { margin-left: 0; }
    .hero-section { padding-top: 16px; }
    .hero-stage { display: flex; min-height: 510px; flex-direction: column; background-position: 60% center; }
    .hero-copy { display: flex; flex: 1; justify-content: flex-end; flex-direction: column; padding: 35px 25px; }
    .hero-copy h1 { font-size: 49px; }
    .hero-lead { margin-bottom: 24px; font-size: 19px; }
    .hero-edition { display: block; min-height: auto; padding: 19px 25px; border-top: 1px solid rgba(255, 253, 249, .35); border-left: 0; }
    .hero-edition p { display: inline; margin-right: 15px; margin-bottom: 0; }
    .hero-edition strong { font-size: 19px; }
    .hero-edition span { display: none; }
    .heading-line { align-items: flex-start; flex-direction: column; padding-bottom: 17px; }
    .reading-path { grid-template-columns: repeat(2, 1fr); }
    .reading-path a { min-height: 148px; border-bottom: 1px solid var(--line); }
    .reading-path a:nth-child(3) { border-left: 1px solid var(--line); }
    .reading-path strong { font-size: 19px; }
    .editorial-layout, .category-layout, .page-intro-grid, .questions-layout { grid-template-columns: 1fr; gap: 34px; }
    .article-grid { gap: 34px 16px; }
    .article-card h3 { font-size: 19px; }
    .side-column { grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 0; }
    .side-note { padding: 20px; }
    .side-note h2 { font-size: 22px; }
    .topic-map { grid-template-columns: repeat(2, 1fr); }
    .topic-map a { min-height: 188px; padding: 19px 15px; }
    .topic-map a:nth-child(2n + 1) { border-left: 1px solid var(--line); }
    .topic-map a:nth-child(4) { border-left: 0; }
    .topic-map a:nth-child(5) { border-left: 1px solid var(--line); }
    .topic-map span { margin-bottom: 26px; }
    .topic-map strong { font-size: 19px; }
    .topic-map p { font-size: 12px; }
    .questions-layout h2 { font-size: 31px; }
    .page-intro { padding: 56px 0 50px; }
    .page-intro h1 { font-size: 39px; }
    .page-intro p:not(.section-kicker) { font-size: 18px; }
    .page-intro .intro-side-copy { margin: 0; }
    .category-aside { display: none; }
    .article-row { grid-template-columns: 35px minmax(0, 1fr) 34px; gap: 10px; padding: 24px 0; }
    .row-number { font-size: 14px; }
    .article-row h2 { font-size: 21px; }
    .row-arrow { width: 34px; height: 34px; }
    .article-page { padding-top: 36px; }
    .article-header { padding-bottom: 25px; }
    .breadcrumb { margin-bottom: 26px; }
    .article-header h1 { font-size: 38px; }
    .article-deck { font-size: 18px; }
    .copy-link { width: 100%; justify-content: center; margin: 8px 0 0; }
    .article-cover { height: 270px; }
    .article-reading-layout { display: block; padding-top: 43px; }
    .toc { position: static; margin-bottom: 36px; padding: 17px; border-top: 2px solid var(--ink); background: var(--paper-deep); }
    .toc ol { grid-template-columns: 1fr 1fr; gap: 6px 20px; }
    .article-body h2 { font-size: 26px; }
    .article-body p { font-size: 16px; line-height: 1.95; }
    .article-body ul { padding: 18px 18px 18px 35px; }
    .related-section { margin-top: 46px; }
    .related-list a { grid-template-columns: 90px minmax(0, 1fr) 18px; gap: 10px; min-height: 80px; }
    .related-list strong { font-size: 16px; }
    .large-search { padding-left: 14px; }
    .large-search button { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 33px; padding-bottom: 38px; }
}

@media (max-width: 460px) {
    .article-grid, .side-column { grid-template-columns: 1fr; }
    .side-column { gap: 14px; }
    .topic-map { grid-template-columns: 1fr; }
    .topic-map a, .topic-map a:nth-child(4) { min-height: 150px; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
    .topic-map span { margin-bottom: 15px; }
    .topic-map p { padding-right: 20px; }
    .faq-list summary { min-height: 80px; font-size: 16px; }
    .toc ol { grid-template-columns: 1fr; }
    .article-header h1, .page-intro h1 { font-size: 34px; }
    .article-deck { font-size: 17px; }
    .results-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Homepage archive layout: a vertical index, one lead note, and an image plate. */
.masthead-center {
    display: grid;
    gap: 3px;
    margin-left: auto;
    margin-right: 56px;
    color: var(--muted);
    text-align: center;
}

.masthead-center span { font-size: 11px; font-weight: 700; }

.masthead-center strong { color: var(--ink); font-family: var(--serif); font-size: 14px; font-weight: 700; }

.nav-label {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    margin-right: 13px;
    color: var(--tan);
    font-family: Georgia, serif;
    font-size: 11px;
}

.front-intro { padding: 20px 0 0; background: var(--paper); }

.front-grid {
    display: grid;
    grid-template-columns: 96px minmax(0, 1.04fr) minmax(380px, .96fr);
    min-height: 575px;
    border: 1px solid var(--line);
    background: var(--paper-warm);
}

.front-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 12px 18px;
    border-right: 1px solid var(--line);
    background: var(--paper-deep);
    text-align: center;
}

.rail-label { margin: 0; color: var(--wine); font-family: var(--serif); font-size: 14px; font-weight: 700; line-height: 1.65; }

.rail-rule { width: 1px; height: 90px; margin: 22px auto; background: var(--line-dark); }

.rail-issue { margin: 0; color: var(--body); font-family: Georgia, serif; font-size: 14px; font-weight: 700; line-height: 1.75; }

.rail-issue small { color: var(--muted); font-family: var(--sans); font-size: 10px; font-weight: 400; }

.rail-mark { display: grid; width: 46px; height: 46px; margin-top: auto; color: var(--white); background: var(--wine); place-items: center; font-family: Georgia, serif; font-size: 27px; font-weight: 700; }

.front-lead { display: flex; flex-direction: column; justify-content: center; padding: 58px 60px 54px; }

.front-overline { display: flex; justify-content: space-between; margin-bottom: 67px; color: var(--muted); font-size: 10px; font-weight: 700; }

.front-overline span:last-child { color: var(--tan); }

.front-lead .section-kicker { margin-bottom: 21px; }

.front-lead h1 { margin-bottom: 20px; font-size: 60px; font-weight: 900; line-height: 1.2; }

.front-lead h1 em { color: var(--wine); font-style: normal; }

.front-deck { max-width: 480px; margin-bottom: 39px; color: #625952; font-family: var(--serif); font-size: 18px; line-height: 1.95; }

.front-lead-foot { display: flex; align-items: end; justify-content: space-between; gap: 20px; max-width: 480px; padding-top: 19px; border-top: 1px solid var(--line); }

.lead-meta { display: grid; gap: 3px; color: var(--muted); font-size: 12px; }

.lead-meta span:first-child { color: var(--ink); font-weight: 700; }

.lead-read { display: inline-flex; align-items: center; gap: 12px; color: var(--wine); font-size: 14px; font-weight: 700; }

.lead-read svg { width: 18px; height: 18px; transition: transform var(--ease); }

.lead-read:hover svg { transform: translate(3px, -3px); }

.front-visual { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-width: 0; margin: 0; border-left: 1px solid var(--line); background: #d2c3b0; }

.front-visual img { width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(.78) sepia(.1); }

.front-visual figcaption { display: flex; justify-content: space-between; gap: 15px; min-height: 53px; padding: 16px 21px; color: #eadfd4; background: var(--ink); font-size: 11px; }

.front-visual figcaption span:first-child { color: #d8b793; font-family: Georgia, serif; font-weight: 700; }

.front-visual figcaption span:last-child { text-align: right; }

.front-board { background: var(--paper); }

.board-grid { display: grid; grid-template-columns: 245px minmax(0, 1fr); border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }

.board-index { padding: 32px 29px 35px; color: #e9dfd5; background: var(--ink); }

.board-index .section-kicker { color: #d8b793; }

.board-index .section-kicker::before { background: #d8b793; }

.board-index h2 { margin: 54px 0 18px; color: var(--white); font-size: 40px; line-height: 1.14; }

.board-index > p:not(.section-kicker) { color: #c1b2a6; font-size: 13px; line-height: 1.8; }

.index-action { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding-bottom: 6px; color: #f1dfca; border-bottom: 1px solid #9f785e; font-size: 13px; font-weight: 700; }

.index-action svg { width: 16px; height: 16px; }

.board-main { padding: 32px 38px 12px; background: var(--paper-warm); }

.board-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 19px; border-bottom: 2px solid var(--ink); }

.board-heading .section-kicker { margin-bottom: 8px; }

.board-heading h2 { margin: 0; }

.board-heading > span { padding-bottom: 5px; color: var(--muted); font-size: 12px; }

.file-row { display: grid; grid-template-columns: 44px minmax(0, 1fr) 40px; gap: 14px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--line); }

.file-row:last-child { border-bottom: 0; }

.file-index { padding-top: 2px; color: var(--tan); font-family: Georgia, serif; font-size: 17px; font-weight: 700; }

.file-copy .article-meta { margin-bottom: 5px; }

.file-copy h3 { margin-bottom: 6px; font-size: 20px; }

.file-copy h3 a:hover { color: var(--wine); }

.file-copy > p:last-child { display: -webkit-box; overflow: hidden; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.file-open { display: grid; width: 38px; height: 38px; color: var(--wine); place-items: center; transition: color var(--ease), background var(--ease); }

.file-open:hover { color: var(--white); background: var(--wine); }

.file-open svg { width: 17px; height: 17px; }

.catalogue-section { color: #ede4da; background: var(--wine-dark); }

.catalogue-heading { display: flex; align-items: end; justify-content: space-between; padding-bottom: 26px; border-bottom: 1px solid rgba(246, 232, 220, .45); }

.catalogue-heading .section-kicker { margin: 0; color: #e5bf9a; }

.catalogue-heading .section-kicker::before { background: #e5bf9a; }

.catalogue-heading h2 { max-width: 500px; margin: 0; color: var(--white); font-size: 31px; }

.catalogue-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-left: 1px solid rgba(246, 232, 220, .45); }

.catalogue-item { position: relative; display: grid; grid-template-rows: auto 1fr auto; min-height: 265px; padding: 20px 18px; border-right: 1px solid rgba(246, 232, 220, .45); border-bottom: 1px solid rgba(246, 232, 220, .45); transition: color var(--ease), background var(--ease); }

.catalogue-item:hover { color: var(--ink); background: #e7d5c2; }

.catalogue-no { color: #e5bf9a; font-family: Georgia, serif; font-size: 16px; font-weight: 700; }

.catalogue-item:hover .catalogue-no { color: var(--wine); }

.catalogue-item strong { display: block; margin-top: 50px; color: inherit; font-family: var(--serif); font-size: 22px; }

.catalogue-item p { max-width: 175px; margin: 7px 0 0; color: #d6c6b9; font-size: 12px; line-height: 1.75; }

.catalogue-item:hover p { color: #624b3e; }

.catalogue-item svg { justify-self: end; width: 19px; height: 19px; color: #e5bf9a; }

.catalogue-item:hover svg { color: var(--wine); }

.editor-note-section { color: #eee5dc; background: var(--ink); }

.editor-note-grid { display: grid; grid-template-columns: .85fr 1fr .55fr; gap: 75px; align-items: start; }

.editor-note-title .section-kicker { color: #d8b793; }

.editor-note-title .section-kicker::before { background: #d8b793; }

.editor-note-title h2 { margin: 0; color: var(--white); font-size: 42px; line-height: 1.35; }

.editor-note-copy { padding-top: 7px; }

.editor-note-copy > p { margin-bottom: 37px; color: #cfc1b5; font-family: var(--serif); font-size: 18px; line-height: 2; }

.note-signature { display: flex; justify-content: space-between; gap: 16px; padding-top: 13px; border-top: 1px solid #65564c; color: #e7d2bb; font-size: 12px; }

.note-signature span:last-child { color: #9c8b7d; font-family: Georgia, serif; }

.note-aside { padding: 21px 0 0 24px; border-left: 1px solid #87674f; color: #e2bd99; }

.note-aside svg { width: 24px; height: 24px; margin-bottom: 25px; }

.note-aside span { display: block; font-family: var(--serif); font-size: 19px; line-height: 1.7; }

@media (max-width: 980px) {
    .masthead-center { margin-right: 24px; }
    .front-grid { grid-template-columns: 72px minmax(0, 1fr) minmax(290px, .85fr); }
    .front-lead { padding: 45px 37px; }
    .front-overline { margin-bottom: 45px; }
    .board-grid { grid-template-columns: 190px minmax(0, 1fr); }
    .board-index { padding-inline: 22px; }
    .board-main { padding-inline: 25px; }
    .catalogue-grid { grid-template-columns: repeat(3, 1fr); }
    .catalogue-item { min-height: 220px; }
    .catalogue-item strong { margin-top: 28px; }
    .editor-note-grid { gap: 35px; }
}

@media (max-width: 760px) {
    .masthead-center { display: none; }
    .nav-label { display: none; }
    .front-intro { padding-top: 12px; }
    .front-grid { display: flex; min-height: 0; flex-direction: column; }
    .front-rail { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 69px; padding: 12px 18px; border-right: 0; border-bottom: 1px solid var(--line); text-align: left; }
    .rail-label { font-size: 13px; line-height: 1.35; }
    .rail-rule { width: 1px; height: 34px; margin: 0; }
    .rail-issue { text-align: right; }
    .rail-mark { display: none; }
    .front-lead { padding: 40px 24px 37px; }
    .front-overline { margin-bottom: 42px; }
    .front-lead h1 { font-size: 45px; }
    .front-deck { font-size: 17px; }
    .front-lead-foot { align-items: start; flex-direction: column; gap: 19px; }
    .front-visual { min-height: 310px; border-top: 1px solid var(--line); border-left: 0; }
    .front-visual img { min-height: 265px; }
    .front-visual figcaption { min-height: 45px; padding: 12px 15px; }
    .board-grid { display: flex; flex-direction: column; }
    .board-index { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; padding: 25px 23px; }
    .board-index .section-kicker { grid-column: 1 / -1; }
    .board-index h2 { margin: 12px 0 0; font-size: 33px; }
    .board-index > p:not(.section-kicker) { margin: 13px 0 0; }
    .index-action { align-self: end; justify-self: end; margin-top: 0; }
    .board-main { padding: 27px 20px 7px; }
    .board-heading { align-items: start; flex-direction: column; gap: 5px; }
    .board-heading > span { padding-bottom: 0; }
    .file-row { grid-template-columns: 31px minmax(0, 1fr) 34px; gap: 8px; }
    .file-copy h3 { font-size: 18px; }
    .file-open { width: 33px; height: 33px; }
    .catalogue-heading { align-items: start; flex-direction: column; gap: 17px; }
    .catalogue-heading h2 { font-size: 28px; }
    .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
    .catalogue-item { min-height: 185px; padding: 16px 14px; }
    .catalogue-item strong { margin-top: 24px; font-size: 19px; }
    .catalogue-item p { font-size: 11px; }
    .editor-note-grid { grid-template-columns: 1fr; gap: 28px; }
    .editor-note-title h2 { font-size: 35px; }
    .editor-note-copy { padding-top: 0; }
    .editor-note-copy > p { font-size: 17px; }
    .note-aside { padding: 18px 0 0; border-top: 1px solid #87674f; border-left: 0; }
    .note-aside svg { margin-bottom: 10px; }
}

@media (max-width: 460px) {
    .front-lead h1 { font-size: 39px; }
    .front-visual figcaption span:last-child { max-width: 190px; }
    .board-index { grid-template-columns: 1fr; }
    .board-index .section-kicker { grid-column: auto; }
    .index-action { justify-self: start; }
    .catalogue-grid { grid-template-columns: 1fr; }
    .catalogue-item { min-height: 145px; }
    .catalogue-item strong { margin-top: 12px; }
    .catalogue-item p { max-width: none; padding-right: 22px; }
}
