
/* =====================================================================
   A Writing Life — literary editorial design system.
   Warm paper & ink, one restrained accent (oxblood), hairline rules,
   letter-spaced small-caps for wayfinding. Light and dark are both
   first-class; the map's atlas plate is deliberately dark in both.
   ===================================================================== */
:root {
  --bg: #faf8f3;
  --fg: #211d16;
  --muted: #6d675c;
  --faint: #948c7c;
  --accent: #7d2b2b;
  --accent-hover: #5a1e1e;
  --rule: #e6e1d3;
  --rule-strong: #d3cbb8;
  --chart-surface: #fdfcf8;
  --ink-muted: #948c7c;
  --gridline: #e6e1d3;
  --chip-fg: #6d675c;
  --annex-fg: #8a662a;
  /* Timeline series (validated on the light chart surface) */
  --tl-grp1: #2a78d6;
  --tl-grp2: #1baf7a;
  --tl-grp3: #eda100;
  --tl-grp4: #008300;
  /* Tag-group markers on the page surface */
  --grp-education: #2a78d6;
  --grp-ideas: #b97e00;
  --grp-inner-life: #4a3aa7;
  --grp-craft-world: #14805a;
  /* The atlas plate (map figure) — deliberately dark in both modes */
  --plate-bg: #131720;
  --plate-bg2: #0d1017;
  --plate-fg: #dfe2ec;
  --plate-muted: #8b93a8;
  --plate-rule: #262d3f;
  --plate-education: #3987e5;
  --plate-ideas: #c98500;
  --plate-inner-life: #9085e9;
  --plate-craft-world: #199e70;
  --serif: "Iowan Old Style", "Charter", "Sitka Text", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171410;
    --fg: #e9e4d7;
    --muted: #a89f8d;
    --faint: #7c7466;
    --accent: #d29181;
    --accent-hover: #e5ab9c;
    --rule: #2c2820;
    --rule-strong: #423c30;
    --chart-surface: #1f1b15;
    --ink-muted: #8f8778;
    --gridline: #2c2820;
    --chip-fg: #a89f8d;
    --annex-fg: #cfa35c;
    --tl-grp1: #3987e5;
    --tl-grp2: #199e70;
    --tl-grp3: #c98500;
    --tl-grp4: #008300;
    --grp-education: #3987e5;
    --grp-ideas: #c98500;
    --grp-inner-life: #9085e9;
    --grp-craft-world: #199e70;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { font: 18px/1.7 var(--serif); color: var(--fg); background: var(--bg);
       margin: 0; padding: 40px 24px 48px; }
.wrap { max-width: 46rem; margin: 0 auto; }
/* ------------------------------ chrome ------------------------------ */
header.site { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 20px;
  margin-bottom: 44px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
header.site a.brand { font-family: var(--serif); font-style: italic; color: var(--fg);
  text-decoration: none; font-weight: 600; font-size: 17px; letter-spacing: .01em; margin-right: auto; }
header.site a.brand:hover { color: var(--accent); text-decoration: none; }
header.site nav { font-family: var(--sans); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; display: flex; flex-wrap: wrap; gap: 4px 16px; }
header.site nav a { color: var(--muted); text-decoration: none; padding-bottom: 2px; }
header.site nav a:hover { color: var(--accent); }
header.site nav a.active { color: var(--fg); border-bottom: 1px solid var(--fg); }
.pfig-archive figcaption { font-style: normal; letter-spacing: .01em; }
.pfig-archive figcaption::before { content: "Photograph — "; opacity: .62; }
.private-badge { font-family: var(--sans); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--annex-fg); border: 1px solid var(--rule-strong);
  border-radius: 3px; padding: 2px 7px; white-space: nowrap; }
footer.site-footer { font-family: var(--sans); font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--rule); margin-top: 72px; padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 4px 18px; justify-content: space-between; }
footer.site-footer .colophon { color: var(--faint); }
/* ---------------------------- typography ---------------------------- */
h1.title { font-size: 34px; line-height: 1.15; margin: 0 0 8px; letter-spacing: -0.012em; font-weight: 600; }
.subtitle { color: var(--muted); font-style: italic; font-size: 19px; margin: 0 0 20px; }
h2 { font-size: 23px; line-height: 1.25; margin: 44px 0 12px; font-weight: 600; }
h3 { font-size: 19px; margin: 26px 0 8px; }
p { margin: 15px 0; }
.kicker, h2.kicker-h { font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
h2.kicker-h { margin: 26px 0 6px; }
blockquote { border-left: 2px solid var(--rule-strong); margin: 20px 0; padding: 2px 20px;
             color: var(--muted); font-style: italic; }
blockquote p:first-child { margin-top: 0; }
blockquote p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px;
    text-decoration-thickness: 1px; text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent); }
a:hover { color: var(--accent-hover); text-decoration-color: currentColor; }
ul, ol { padding-left: 26px; }
li { margin: 6px 0; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 44px 0; }
code { border: 1px solid var(--rule); padding: 1px 5px; border-radius: 3px; font-size: 0.88em; }
.dateline { font-family: var(--sans); color: var(--muted); font-size: 12px; margin: 2px 0 6px;
            letter-spacing: .12em; text-transform: uppercase; }
.dateline a { color: var(--muted); text-decoration: none; }
.dateline a:hover { color: var(--accent); }
.poem { white-space: pre-wrap; font-family: var(--serif); line-height: 1.55; margin: 24px 0; }
/* ----------------------------- masthead ----------------------------- */
.masthead { margin: 8px 0 36px; }
.masthead .eyebrow { font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.masthead h1.title { font-size: 46px; margin: 0; }
.masthead-rule { width: 56px; border-top: 2px solid var(--fg); margin: 20px 0 14px; }
.masthead-sub { font-family: var(--sans); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin: 0; }
/* --------------------------- home sections -------------------------- */
.home-sec { border-top: 1px solid var(--rule); margin-top: 46px; }
ul.ways-list { list-style: none; padding: 0; margin: 6px 0 4px; }
ul.ways-list li { display: flex; align-items: baseline; gap: 14px; padding: 9px 0;
  border-bottom: 1px solid var(--rule); margin: 0; }
ul.ways-list li:last-child { border-bottom: 0; }
.way-t { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--fg);
  text-decoration: none; white-space: nowrap; }
.way-t:hover { color: var(--accent); text-decoration: none; }
.way-d { font-family: var(--sans); font-size: 13px; color: var(--muted); }
ul.start-list { list-style: none; padding: 0; margin: 6px 0 4px; }
ul.start-list li { display: flex; align-items: baseline; gap: 14px; padding: 9px 0;
  border-bottom: 1px solid var(--rule); margin: 0; }
ul.start-list li:last-child { border: 0; }
.start-k { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); min-width: 9.5em; }
.start-t { color: var(--fg); font-weight: 600; text-decoration: none; }
.start-t:hover { color: var(--accent); text-decoration: none; }
.start-m { font-family: var(--sans); font-size: 12px; color: var(--faint); margin-left: auto;
  white-space: nowrap; font-variant-numeric: tabular-nums; }
/* ------------------------------ themes ------------------------------ */
.theme-group { margin: 24px 0; }
.theme-group .kicker { display: flex; align-items: center; gap: 8px; font-size: 11px;
  color: var(--fg); margin-bottom: 4px; }
.theme-group .kicker .gdot { width: 8px; height: 8px; border-radius: 2px; }
ul.theme-list { list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 0 30px; }
ul.theme-list li { margin: 0; }
ul.theme-list a { display: flex; align-items: baseline; gap: 10px; padding: 5px 0; text-decoration: none; }
.th-l { font-family: var(--sans); font-size: 14px; color: var(--fg); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
ul.theme-list a:hover .th-l { color: var(--accent); }
.th-bar { flex: 1; min-width: 20px; height: 3px; border-radius: 2px; background: var(--rule);
  position: relative; align-self: center; }
.th-bar i { position: absolute; top: 0; bottom: 0; left: 0; border-radius: 2px; background: var(--bar-c, var(--faint)); }
.th-c { font-family: var(--sans); font-size: 11.5px; color: var(--faint); min-width: 2.6ch;
  text-align: right; font-variant-numeric: tabular-nums; }
/* --------------------------- list surfaces -------------------------- */
.collection-card { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "t c" "n n";
  align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--rule); }
.collection-card:last-child { border: 0; }
.collection-card a.title-link { grid-area: t; font-size: 19px; font-weight: 600;
  color: var(--fg); text-decoration: none; line-height: 1.3; }
.collection-card a.title-link:hover { color: var(--accent); }
.collection-card .note { grid-area: n; color: var(--muted); margin-top: 2px; font-style: italic; font-size: 15.5px; }
.collection-card .count { grid-area: c; font-family: var(--sans); font-size: 12px; color: var(--faint);
  font-variant-numeric: tabular-nums; }
.cluster-card { padding: 16px 0; border-bottom: 1px solid var(--rule); }
.cluster-card:last-child { border: 0; }
.cluster-card a.title-link { display: block; font-size: 19px; font-weight: 600;
  color: var(--fg); text-decoration: none; line-height: 1.3; }
.cluster-card a.title-link:hover { color: var(--accent); }
.cluster-card .note { font-family: var(--sans); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); margin: 4px 0; }
.cluster-card .blurb { color: var(--muted); margin: 6px 0 4px; font-size: 16px; }
ul.toc { list-style: none; padding: 0; }
ul.toc li { padding: 8px 0; border-bottom: 1px solid var(--rule); display: flex;
  align-items: baseline; gap: 14px; margin: 0; }
ul.toc li:last-child { border: 0; }
ul.toc .year { font-family: var(--sans); color: var(--faint); font-size: 12px; min-width: 3.2em;
  font-variant-numeric: tabular-nums; }
ul.toc a { color: var(--fg); text-decoration: none; font-weight: 600; }
ul.toc a:hover { color: var(--accent); }
/* ------------------------------- chips ------------------------------ */
.tags-row { margin: 14px 0 26px; }
.tag-chip { display: inline-block; font-family: var(--sans); font-size: 12px; color: var(--chip-fg);
  border: 1px solid var(--rule-strong); border-radius: 3px; padding: 2px 10px; margin: 0 6px 6px 0;
  text-decoration: none; letter-spacing: .02em; }
.tag-chip:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }
.chip-annex { display: inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--annex-fg); border: 1px solid var(--rule-strong);
  border-radius: 3px; padding: 1px 6px; margin-left: 8px; vertical-align: middle; }
/* ---------------------------- reader page --------------------------- */
.read-meta { font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin: 0 0 4px;
  display: flex; flex-wrap: wrap; gap: 4px 16px; }
.read-meta .cchip { color: var(--muted); text-decoration: none; }
.read-meta .cchip:hover { color: var(--accent); }
.original-link { font-family: var(--sans); font-size: 13px; margin: 28px 0; }
.read-next { margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--rule); }
.read-next h2 { margin: 0 0 6px; font-size: 20px; }
ul.rn-list { list-style: none; padding: 0; margin: 0; }
ul.rn-list li { display: flex; align-items: baseline; gap: 14px; padding: 8px 0;
  border-bottom: 1px solid var(--rule); margin: 0; }
ul.rn-list li:last-child { border: 0; }
ul.rn-list a { color: var(--fg); font-weight: 600; text-decoration: none; }
ul.rn-list a:hover { color: var(--accent); }
.rn-m { font-family: var(--sans); font-size: 12px; color: var(--faint); margin-left: auto;
  white-space: nowrap; font-variant-numeric: tabular-nums; }
.wander { margin-top: 18px; font-family: var(--sans); font-size: 13px; }
.wander a, .wander button { color: var(--accent); background: none; border: 0; font: inherit;
  cursor: pointer; padding: 0; text-decoration: none; }
.wander a:hover, .wander button:hover { text-decoration: underline; }
/* ------------------------------ figures ----------------------------- */
figure.pfig { margin: 30px 0; }
figure.pfig img { max-width: 100%; height: auto; display: block;
  border: 1px solid var(--rule); border-radius: 2px; }
figure.pfig figcaption { font-family: var(--sans); font-size: 12.5px; color: var(--faint);
  margin-top: 8px; }
/* --------------------------- timeline chart ------------------------- */
.tl-chart { background: var(--chart-surface); border: 1px solid var(--rule); border-radius: 4px;
  padding: 10px 4px 2px; margin: 18px 0 6px; }
.tl-surface { fill: var(--chart-surface); }
.tl-grid { stroke: var(--gridline); stroke-width: 1; }
.tl-axis-label { font-family: var(--sans); font-size: 10px; fill: var(--ink-muted); }
.tl-grp1 { fill: var(--tl-grp1); }
.tl-grp2 { fill: var(--tl-grp2); }
.tl-grp3 { fill: var(--tl-grp3); }
.tl-grp4 { fill: var(--tl-grp4); }
.tl-legend { font-family: var(--sans); font-size: 12.5px; color: var(--fg); display: flex;
  flex-wrap: wrap; gap: 6px 18px; margin: 10px 0 6px; }
.tl-legend-item { display: inline-flex; align-items: center; gap: 6px; }
.tl-swatch { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.tl-table { font-family: var(--sans); font-size: 12.5px; margin: 14px 0 30px; color: var(--muted); }
.tl-table summary { cursor: pointer; color: var(--accent); }
.tl-table table { border-collapse: collapse; margin-top: 10px; width: 100%; }
.tl-table th, .tl-table td { text-align: right; padding: 3px 8px; border-bottom: 1px solid var(--rule);
  font-variant-numeric: tabular-nums; }
.tl-table th:first-child, .tl-table td:first-child { text-align: left; }
/* ------------------------------ shorts ------------------------------ */
.shorts-controls { font-family: var(--sans); font-size: 13px; margin: 20px 0 30px; }
.shorts-controls select { font-family: var(--sans); font-size: 13px; padding: 4px 8px; border-radius: 3px;
  border: 1px solid var(--rule-strong); background: var(--chart-surface); color: var(--fg); }
.short-card { border-left: 2px solid var(--rule-strong); padding: 2px 0 2px 20px; margin: 26px 0; }
.short-card .date { font-family: var(--sans); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.bubble { margin: 0 0 10px; font-size: 17px; line-height: 1.6; }
.short-card .tags-row { margin: 8px 0 0; }
/* -------------------------- constellations -------------------------- */
.unwritten-list { margin-bottom: 10px; }
.unwritten-card { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.unwritten-card:last-child { border: 0; }
.unwritten-card h3 { margin: 0 0 4px; }
.unwritten-card .meta { font-family: var(--sans); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.unwritten-card .members { color: var(--muted); font-size: 15px; }
.unwritten-card .members a { color: var(--muted); }
.era-bars { display: flex; align-items: flex-end; gap: 3px; height: 20px; margin-top: 8px; }
.era-bars .bar { width: 9px; background: var(--faint); opacity: .5; border-radius: 1px 1px 0 0; }
/* ------------------------- the atlas plate -------------------------- */
.map-controls { font-family: var(--sans); display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 10px; margin: 20px 0 12px; }
.map-legend { display: flex; flex-wrap: wrap; gap: 6px 8px; }
.leg { display: inline-flex; align-items: center; gap: 7px; font-family: var(--sans); font-size: 12.5px;
  color: var(--fg); border: 1px solid var(--rule-strong); border-radius: 3px; padding: 3px 10px;
  background: var(--chart-surface); cursor: pointer; user-select: none; }
.leg .sw { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.leg[aria-pressed="false"] { opacity: .38; }
.map-btn { font-family: var(--sans); font-size: 12.5px; color: var(--muted); border: 1px solid var(--rule-strong);
  background: none; border-radius: 3px; padding: 3px 10px; cursor: pointer; }
.map-btn:hover { color: var(--accent); border-color: var(--accent); }
.map-btn[aria-pressed="true"] { color: var(--fg); border-color: var(--fg); }
figure.plate { margin: 0 0 34px; }
.plate-panel { position: relative; overflow: hidden; height: min(72vh, 640px); min-height: 420px;
  background: radial-gradient(115% 95% at 32% 0%, #1b2231 0%, var(--plate-bg) 48%, var(--plate-bg2) 100%);
  border: 1px solid var(--rule-strong); border-radius: 3px; }
.plate-panel svg { width: 100%; height: 100%; display: block; touch-action: none; cursor: grab; }
.plate-panel svg.grabbing { cursor: grabbing; }
figure.plate figcaption { font-family: var(--sans); font-size: 12px; color: var(--faint);
  margin-top: 10px; display: flex; flex-wrap: wrap; gap: 4px 18px; justify-content: space-between; }
.map-dot { cursor: pointer; }
.map-dot:hover circle, .map-dot:focus circle { stroke: var(--plate-fg); stroke-width: 1.2; }
.map-clabel { fill: var(--plate-muted); font-family: var(--sans); font-size: 11px; letter-spacing: .14em;
  text-anchor: middle; pointer-events: none; text-transform: uppercase; opacity: 0; transition: opacity .2s; }
.plate-panel.show-constellations .map-clabel { opacity: .85; }
.map-tip { position: absolute; pointer-events: none; background: var(--plate-bg2); color: var(--plate-fg);
  border: 1px solid var(--plate-rule); border-radius: 3px; padding: 6px 10px; font-family: var(--sans);
  font-size: 12.5px; max-width: 16rem; opacity: 0; z-index: 5; }
.map-tip .tt-meta { color: var(--plate-muted); font-size: 11px; margin-top: 2px; }
/* --------------------- threads (an idea, aging) --------------------- */
.thread { margin: 34px 0 40px; }
.thread h2 { margin: 0 0 4px; }
.thread .t-gloss { color: var(--muted); font-style: italic; margin: 0 0 16px; }
.thread ol.beads { list-style: none; padding: 0; margin: 0; }
.thread ol.beads li { position: relative; padding: 0 0 20px 26px; margin: 0 0 0 5px;
  border-left: 1px solid var(--rule-strong); }
.thread ol.beads li:last-child { border-left-color: transparent; padding-bottom: 4px; }
.thread ol.beads li::before { content: ""; position: absolute; left: -4px; top: 6px; width: 7px;
  height: 7px; border-radius: 50%; background: var(--accent); }
.thread .b-year { font-family: var(--sans); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); }
.thread .b-t { display: block; color: var(--fg); text-decoration: none; font-weight: 600; margin: 2px 0; }
.thread .b-t:hover { color: var(--accent); }
.thread .b-note { color: var(--muted); font-size: 15px; }
@media (max-width: 600px) {
  body { padding: 26px 18px 40px; font-size: 17px; }
  h1.title { font-size: 28px; }
  .masthead h1.title { font-size: 34px; }
  .plate-panel { height: 64vh; }
  .start-k { min-width: 0; }
}

/* ------------------------- the blog (front of house) ----------------- */
.standfirst { font-size: 19px; line-height: 1.5; color: var(--muted); margin: 0; max-width: 34em; }
.wing-name { font-family: var(--sans); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-left: 2px; }
.home-section { margin: 44px 0 0; padding-top: 22px; border-top: 1px solid var(--rule); }
.home-section > h2 { font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.home-series { margin: 0 0 30px; }
.home-series:last-of-type { margin-bottom: 0; }
.home-series h3 { font-size: 20px; margin: 0 0 4px; font-weight: 600; line-height: 1.3; }
.home-series h3 a { color: var(--fg); text-decoration: none; }
.home-series h3 a:hover { color: var(--accent); }
.home-series.lead h3 { font-size: 25px; }
.home-series.lead { padding-left: 14px; border-left: 2px solid var(--accent); }
.series-blurb { color: var(--muted); font-size: 16.5px; margin: 0 0 10px; max-width: 40em; }
.more { font-family: var(--sans); font-size: 12px; letter-spacing: .08em; margin: 12px 0 0; }
.more a { color: var(--muted); text-decoration: none; }
.more a:hover { color: var(--accent); }
.more-in-series a { font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: var(--muted); letter-spacing: .06em; }
.more-in-series a:hover { color: var(--accent); }
.in-series { font-family: var(--sans); font-size: 11.5px; color: var(--faint);
  margin-left: auto; white-space: nowrap; letter-spacing: .04em; }
/* series bar on a post */
.series-bar { margin: 0 0 30px; padding: 10px 0; border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule); font-family: var(--sans); font-size: 12px; }
.series-bar .series-name { color: var(--fg); text-decoration: none; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; font-size: 11px; }
.series-bar .series-name:hover { color: var(--accent); }
.series-bar .series-pos { color: var(--faint); margin-left: 10px; }
.series-links { display: flex; flex-wrap: wrap; gap: 6px 24px; margin-top: 8px; }
.series-links a { color: var(--muted); text-decoration: none; max-width: 21em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.series-links a:hover { color: var(--accent); }
.series-links .next { margin-left: auto; }
.chip-open { display: inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent);
  border-radius: 3px; padding: 1px 7px; margin: 0 0 12px; }
ul.toc.numbered { counter-reset: part; }
ul.toc.numbered li { counter-increment: part; }
ul.toc.numbered li .year::before { content: counter(part) ". "; color: var(--faint); }
/* editorial apparatus */
.editors-note { font-family: var(--sans); font-size: 13.5px; line-height: 1.55; color: var(--muted);
  background: var(--chart-surface); border-left: 2px solid var(--rule-strong);
  padding: 12px 16px; margin: 0 0 26px; }
.editors-note strong { color: var(--fg); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; font-size: 11px; }
.draft-flag { display: inline-block; font-family: var(--sans); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--annex-fg);
  border: 1px solid var(--annex-fg); border-radius: 3px; padding: 1px 8px; margin: 0 0 14px; }
.pager { display: flex; gap: 24px; margin: 32px 0 0; padding-top: 16px;
  border-top: 1px solid var(--rule); font-family: var(--sans); font-size: 12px; }
.pager a { color: var(--muted); text-decoration: none; }
.pager a:hover { color: var(--accent); }
.pager a.next, .pager a:last-child:not(:first-child) { margin-left: auto; }
.chip-row { margin: 34px 0 0; padding-top: 18px; border-top: 1px solid var(--rule); }
@media (max-width: 600px) {
  .home-series.lead h3 { font-size: 21px; }
  .in-series { margin-left: 0; flex-basis: 100%; }
}

.subscribe { margin: 52px 0 0; padding: 22px 24px; background: var(--chart-surface);
  border: 1px solid var(--rule); }
.subscribe h2 { font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.subscribe p { color: var(--muted); font-size: 16px; margin: 0 0 14px; max-width: 34em; }
.subscribe form { display: flex; flex-wrap: wrap; gap: 10px; }
.subscribe input { flex: 1 1 16em; font-family: var(--sans); font-size: 14px;
  padding: 9px 12px; border: 1px solid var(--rule-strong); border-radius: 3px;
  background: var(--bg); color: var(--fg); }
.subscribe input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.subscribe button { font-family: var(--sans); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; padding: 9px 20px; border: 1px solid var(--accent);
  background: var(--accent); color: var(--bg); border-radius: 3px; cursor: pointer; }
.subscribe button:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; }
