/* ===========================================================
   Midwest Mental Health Guide
   "A Missouri Field Guide" - regional health quarterly
   Two-color letterpress: Spruce Ink + Bone paper + Persimmon spot
   Type: Fraunces (display) / Newsreader (prose) / Archivo (apparatus)
   =========================================================== */

:root {
  --ink:        #16231f;   /* spruce near-black */
  --ink-soft:   #3c463f;   /* body-on-paper secondary */
  --ink-mute:   #626b62;   /* captions, muted apparatus */
  --paper:      #ede8dd;   /* warm bone */
  --paper-2:    #e6dfcf;   /* recessed panel */
  --paper-hi:   #f4f0e7;   /* lifted reading field */
  --line:       #d3cbb8;   /* warm hairline */
  --line-soft:  #ded6c4;
  --spot:       #c13b28;   /* persimmon spot */
  --spot-deep:  #8f2a1b;
  --gold:       #c98a2b;   /* used only reversed on ink, sparingly */
  --max:        1200px;
  --measure:    68ch;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-optical-sizing: auto;
  font-size: 19px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- Type roles ---------- */
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0;
}

.kicker {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spot);
  display: inline-block;
}

a { color: var(--spot-deep); text-decoration: none; }

::selection { background: var(--spot); color: #fff8f0; }
::-moz-selection { background: var(--spot); color: #fff8f0; }

/* prose link underline craft */
.article-body a,
.reading a,
.hero-lede a {
  color: var(--ink);
  background-image: linear-gradient(var(--spot), var(--spot));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1.5px;
  transition: background-size .25s ease, color .2s ease;
  padding-bottom: 1px;
}
.article-body a:hover,
.reading a:hover,
.hero-lede a:hover { color: var(--spot-deep); background-size: 100% 100%; background-image: linear-gradient(rgba(193,59,40,.14), rgba(193,59,40,.14)); }

:focus-visible {
  outline: 2px solid var(--spot);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- Crisis strip ---------- */
.crisis {
  background: var(--ink);
  color: #ece4d4;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 22px;
}
.crisis strong { color: #f0d9a0; font-weight: 700; }
.crisis .n988 { color: #f0d9a0; }
.crisis a { color: #ece4d4; text-decoration: underline; text-underline-offset: 2px; }
.crisis a:hover { color: #fff; }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 14px 30px -26px rgba(22, 35, 31, 0.55);
}
.masthead::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--ink);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
  flex-wrap: wrap;
}
.nameplate { display: flex; align-items: center; gap: 15px; color: var(--ink); }
.nameplate .mark { color: var(--spot); flex: none; display: flex; }
.nameplate-text { display: flex; flex-direction: column; }
.nameplate-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nameplate-sub {
  font-family: "Archivo", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
nav.main {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
nav.main a { color: var(--ink-soft); position: relative; padding: 3px 0; }
nav.main a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -1px;
  height: 2px; background: var(--spot); transition: right .28s ease;
}
nav.main a:hover { color: var(--ink); }
nav.main a:hover::after { right: 0; }
nav.main a[aria-current="page"] { color: var(--ink); }
nav.main a[aria-current="page"]::after { right: 0; background: var(--ink); }

/* ---------- Cover well (hero) ---------- */
.cover {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border-bottom: 3px solid var(--ink);
}
.cover-lead {
  padding: 60px 56px 62px 0;
  border-right: 1px solid var(--line);
}
.issue-line {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.issue-line::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.cover-lead h1 {
  font-size: clamp(44px, 6.6vw, 82px);
  font-weight: 470;
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin: 16px 0 26px;
}
.cover-lead h1 em { font-style: italic; color: var(--spot); font-weight: 460; }
.hero-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 0 30px;
}
.lead-cta {
  font-family: "Archivo", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--spot);
  padding-bottom: 5px;
}
.lead-cta .arw { color: var(--spot); transition: transform .28s ease; }
.lead-cta:hover .arw { transform: translateX(6px); }

/* Signature: The Index (contents) */
.index {
  padding: 60px 0 44px 44px;
  background:
    linear-gradient(var(--line), var(--line)) 0 0 / 1px 0 no-repeat;
}
.index-title {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.index-title span { color: var(--spot); }
.index-list { list-style: none; margin: 0; padding: 0; }
.index-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.index-item .folio {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--spot);
  flex: none;
  width: 2.3em;
}
.index-item .title {
  font-family: "Fraunces", serif;
  font-weight: 480;
  font-size: 17px;
  line-height: 1.18;
  color: var(--ink);
  transition: color .2s ease;
}
.index-item a { color: inherit; display: contents; }
.index-item .dots {
  flex: 1 1 auto;
  min-width: 14px;
  margin: 0 8px;
  align-self: flex-end;
  transform: translateY(-4px);
  border-bottom: 1.5px dotted var(--line);
  opacity: .8;
}
.index-item .cat {
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex: none;
}
.index-item:hover .title { color: var(--spot-deep); }
.index-item:hover .dots { border-bottom-color: var(--spot); opacity: 1; }

/* ---------- Section rule ---------- */
.section-rule {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 66px 0 30px;
}
.section-rule h2 {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.section-rule .idx {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--spot);
}
.section-rule::after { content: ""; flex: 1; height: 1px; background: var(--ink); align-self: center; }

/* ---------- Cornerstones (text-forward, asymmetric) ---------- */
.cornerstones {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0 52px;
  border-top: 2px solid var(--ink);
}
.feat-lead {
  padding: 34px 0 12px;
  grid-row: span 2;
  border-right: 1px solid var(--line);
  padding-right: 52px;
}
.feat-lead .fkick { margin-bottom: 16px; }
.feat-lead h3 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 480;
  line-height: 1.02;
  margin: 0 0 18px;
}
.feat-lead p { font-size: 18.5px; color: var(--ink-soft); margin: 0 0 20px; max-width: 40ch; }
.feat-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.feat-item:first-of-type { border-top: 0; }
.cornerstones .feat-item:last-child { border-bottom: 0; }
.feat-item .fkick { display: block; margin-bottom: 12px; }
.feat-item h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 10px;
}
.feat-item p { font-size: 16.5px; color: var(--ink-soft); margin: 0; max-width: 46ch; }
.feat-lead h3 a, .feat-item h3 a { color: var(--ink); transition: color .2s ease; }
.feat-lead h3 a:hover, .feat-item h3 a:hover { color: var(--spot-deep); }
.more {
  font-family: "Archivo", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 2px solid var(--spot);
  padding-bottom: 3px;
}
.more .arw { color: var(--spot); transition: transform .25s ease; }
.more:hover .arw { transform: translateX(5px); }
.feat-note {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 34px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
}
.feat-note span { color: var(--spot); font-size: 8px; }

/* ---------- Provider module (high-contrast panel) ---------- */
.provider {
  background: var(--ink);
  color: #e9e1d1;
  padding: 48px 52px;
  margin: 56px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.provider::before {
  content: "";
  position: absolute; top: 26px; right: 30px;
  width: 84px; height: 84px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='15' fill='none' stroke='%23c13b28' stroke-width='1'/%3E%3Cpath d='M16 3 L18.6 13.4 L29 16 L18.6 18.6 L16 29 L13.4 18.6 L3 16 L13.4 13.4 Z' fill='%23c13b28'/%3E%3C/svg%3E");
  opacity: .16;
  pointer-events: none;
}
.provider .kicker { color: var(--gold); }
.provider h3 {
  color: #f4efe4;
  font-size: 32px;
  font-weight: 500;
  margin: 14px 0 16px;
}
.provider p { color: #cfc7b4; font-size: 17px; line-height: 1.55; margin: 0 0 10px; max-width: 48ch; }
.provider-facts {
  list-style: none;
  margin: 22px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(211, 203, 184, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #a79e8a;
}
.provider-facts li { display: flex; align-items: center; gap: 10px; }
.provider-facts li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--spot);
  transform: rotate(45deg);
  flex: none;
}
.provider .disclosure {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #9a927f;
  margin-top: 18px;
  max-width: 46ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--spot);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: none;
  transition: background .22s ease, transform .22s ease;
}
.btn .arw { transition: transform .25s ease; }
.btn:hover { background: #d9482f; transform: translateY(-2px); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- Editorial closing note ---------- */
.note {
  max-width: 720px;
  margin: 0 0 12px;
}
.note p {
  font-family: "Newsreader", serif;
  font-size: 20px;
  line-height: 1.56;
  color: var(--ink-soft);
}
.note p .lead-word { font-family: "Fraunces", serif; font-weight: 500; color: var(--ink); font-style: italic; }

/* ---------- How to use this guide (two-up) ---------- */
.guide-use {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 52px;
  align-items: start;
}
.standards {
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  padding: 26px 28px 24px;
}
.standards .kicker { margin-bottom: 16px; }
.standards ul { list-style: none; margin: 0; padding: 0; }
.standards li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-family: "Newsreader", serif;
  font-size: 16px;
  line-height: 1.42;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.standards li:last-child { border-bottom: 0; }
.standards li::before {
  content: "";
  position: absolute; left: 0; top: 1.05em;
  width: 7px; height: 7px;
  background: var(--spot);
  transform: rotate(45deg);
}
.standards-foot {
  margin: 18px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===========================================================
   Article pages
   =========================================================== */
main.reading {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.article-head {
  padding: 54px 0 30px;
  margin-bottom: 34px;
  border-bottom: 2px solid var(--ink);
}
.article-head .kicker { margin-bottom: 20px; }
.article-head h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 460;
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
}
.article-head .standfirst {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0;
}
.article-head .meta {
  font-family: "Archivo", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.article-body { font-size: 19.5px; line-height: 1.64; }
.article-body p { margin: 0 0 22px; }
.article-body h2 {
  font-size: clamp(26px, 3.2vw, 33px);
  font-weight: 500;
  line-height: 1.08;
  margin: 46px 0 16px;
}
.article-body h2::before {
  content: "";
  display: block;
  width: 34px; height: 3px;
  background: var(--spot);
  margin-bottom: 18px;
}
.article-body h3 { font-size: 22px; font-weight: 600; margin: 32px 0 10px; }
.article-body strong { color: var(--ink); font-weight: 600; }

/* custom list markers */
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 0; list-style: none; }
.article-body ul li, .article-body ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
}
.article-body ul li::before {
  content: "";
  position: absolute; left: 2px; top: 0.62em;
  width: 8px; height: 8px;
  background: var(--spot);
  transform: rotate(45deg);
}
.article-body ol { counter-reset: li; }
.article-body ol li { counter-increment: li; }
.article-body ol li::before {
  content: counter(li, decimal-leading-zero);
  position: absolute; left: 0; top: 0.06em;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--spot);
  letter-spacing: 0.02em;
}

/* drop cap */
.dropcap::first-letter {
  font-family: "Fraunces", serif;
  font-weight: 500;
  float: left;
  font-size: 84px;
  line-height: 0.66;
  padding: 10px 14px 0 0;
  color: var(--spot);
}

/* pull quote */
.pull {
  font-family: "Fraunces", serif;
  font-weight: 460;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 31px);
  line-height: 1.24;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  padding: 26px 0 4px 0;
  margin: 40px 0;
  position: relative;
}
.pull::before {
  content: "";
  position: absolute; top: -2px; left: 0;
  width: 72px; height: 2px; background: var(--spot);
}

/* callout */
.callout {
  background: var(--paper-2);
  border-left: 3px solid var(--spot);
  padding: 24px 28px;
  margin: 34px 0;
  font-size: 17.5px;
  line-height: 1.55;
}
.callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Archivo", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spot-deep);
}

/* article provider spacing tweak */
.article-body .provider { margin: 48px 0; }

/* next read */
.next-read {
  border-top: 2px solid var(--ink);
  margin-top: 52px;
  padding-top: 8px;
}
.next-read .kicker { display: block; margin: 22px 0 4px; }
.next-read ul { list-style: none; padding: 0; margin: 0; }
.next-read li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 14px; }
.next-read li::before {
  content: "\2192";
  color: var(--spot);
  font-family: "Archivo", sans-serif;
  flex: none;
}
.next-read li a {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 480;
  font-size: 19px;
  transition: color .2s ease;
}
.next-read li a:hover { color: var(--spot-deep); }

/* ---------- Footer / colophon ---------- */
.colophon {
  background: var(--ink);
  color: #cfc7b4;
  margin-top: 72px;
  padding: 52px 0 46px;
}
.colophon .foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(211,203,184,.22);
}
.foot-name {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: #f4efe4;
}
.foot-name .mark { color: var(--spot); display: flex; }
.foot-blurb { font-size: 16px; line-height: 1.55; color: #b3ab98; margin: 16px 0 0; max-width: 52ch; }
.foot-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 26px;
  align-content: start;
  font-family: "Archivo", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foot-index a { color: #b3ab98; transition: color .2s ease; }
.foot-index a:hover { color: #f0d9a0; }
.disclaimer {
  margin: 28px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: #8f8672;
  max-width: 92ch;
}
.colophon-line {
  margin: 22px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6f6759;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cover { grid-template-columns: 1fr; }
  .cover-lead { padding: 46px 0 40px; border-right: 0; border-bottom: 1px solid var(--line); }
  .index { padding: 40px 0 20px; background: none; }
  .cornerstones { grid-template-columns: 1fr; }
  .feat-lead { grid-row: auto; border-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); }
  .provider { grid-template-columns: 1fr; padding: 38px 34px; gap: 26px; }
  .guide-use { grid-template-columns: 1fr; gap: 30px; }
  .colophon .foot-top { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 640px) {
  body { font-size: 18px; }
  .wrap { padding: 0 22px; }
  main.reading { padding: 0 22px; }
  .masthead-inner { padding: 16px 22px 14px; gap: 14px; flex-direction: column; align-items: flex-start; }
  nav.main { width: 100%; gap: 14px 18px; font-size: 11px; padding-top: 12px; border-top: 1px solid var(--line); }
  .nameplate-title { font-size: 21px; }
  .cover-lead { padding: 36px 0 34px; }
  .cover-lead h1 { font-size: clamp(34px, 10vw, 54px); line-height: 1.0; }
  .hero-lede { font-size: 19px; }
  .issue-line { flex-wrap: wrap; }
  .section-rule { margin: 46px 0 22px; gap: 12px; }
  .section-rule h2 { white-space: normal; font-size: 11px; letter-spacing: 0.14em; }
  .index-item .cat { display: none; }
  .index-item .dots { margin-right: 0; }
  .cornerstones .feat-lead { padding-bottom: 26px; }
  .feat-lead h3 { font-size: clamp(28px, 8vw, 38px); }
  .provider { padding: 30px 24px; }
  .provider h3 { font-size: 27px; }
  .provider::before { width: 60px; height: 60px; top: 20px; right: 20px; }
  .article-head h1 { font-size: clamp(32px, 8.5vw, 48px); }
  .article-body { font-size: 18.5px; }
  .article-body h2 { font-size: clamp(24px, 6.5vw, 30px); }
  .pull { font-size: clamp(22px, 6vw, 27px); }
  .dropcap::first-letter { font-size: 66px; }
  .foot-index { grid-template-columns: 1fr; }
  .note p { font-size: 18.5px; }
}
@media (max-width: 400px) {
  nav.main { gap: 12px 14px; }
}
