/* The St. Charles Health Desk - digital-native local health newsroom */

:root {
  --ink: #161a1f;
  --ink-2: #4c545d;
  --ink-3: #78818a;
  --paper: #ffffff;
  --mist: #f5f7f8;
  --mist-2: #eef1f4;
  --line: #e2e7eb;
  --line-strong: #cfd6dc;
  --petrol: #0e5561;
  --petrol-deep: #0a3b45;
  --petrol-tint: #e6f0f1;
  --signal: #bf4023;
  --signal-tint: #f7ebe5;

  --sans: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1220px;
  --gutter: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

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

/* ---------- utility bar ---------- */
.utility {
  background: var(--petrol-deep);
  color: #dfeceb;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.utility .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 34px;
  flex-wrap: wrap;
}
.utility .u-crisis { display: inline-flex; align-items: center; gap: 8px; }
.utility .u-crisis strong { color: #ffffff; font-weight: 600; letter-spacing: 0.06em; }
.utility .u-dot { width: 5px; height: 5px; border-radius: 50%; background: #4fb7b0; box-shadow: 0 0 0 3px rgba(79,183,176,0.18); }
.utility .u-spacer { margin-left: auto; }
.utility .u-edition { color: #9fc4c2; text-transform: uppercase; }

/* ---------- masthead ---------- */
.masthead { border-bottom: 1px solid var(--line); background: var(--paper); }
.masthead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: clamp(20px, 3.4vw, 34px);
}
.brand { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; color: var(--ink); }
.brand .pulse-emblem { flex: none; width: 46px; height: 46px; color: var(--petrol); }
.brand .wm { display: block; }
.brand .wm-name {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(24px, 4.4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--ink);
}
.brand .wm-name .desk { color: var(--petrol); }
.brand .wm-tag {
  display: block;
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.masthead-meta { text-align: right; font-family: var(--mono); font-size: 11px; line-height: 1.7; color: var(--ink-3); letter-spacing: 0.03em; }
.masthead-meta .mm-strong { color: var(--petrol); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; display: block; }

/* ---------- desk nav ---------- */
.deskbar { border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; z-index: 30; }
.deskbar .wrap { display: flex; align-items: stretch; }
.desknav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-inline: -4px;
}
.desknav::-webkit-scrollbar { display: none; }
.desknav a {
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.005em;
  color: var(--ink-2);
  padding: 15px 14px;
  transition: color 0.18s ease;
}
.desknav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: var(--petrol);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.desknav a:hover, .desknav a:focus-visible { color: var(--petrol-deep); }
.desknav a:hover::after, .desknav a:focus-visible::after, .desknav a[aria-current="page"]::after { transform: scaleX(1); }
.desknav a[aria-current="page"] { color: var(--petrol-deep); }

/* ---------- kicker system ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--petrol);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--petrol); flex: none; }
.kicker.is-signal { color: var(--signal); }
.kicker.is-signal::before { background: var(--signal); }

/* section token */
.sect {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.sect::before { content: ""; width: 8px; height: 8px; background: var(--petrol); flex: none; }
.sect.s-depression::before { background: var(--petrol); }
.sect.s-treatment::before { background: #2f8f7e; }
.sect.s-ptsd::before { background: #7a5bb0; }
.sect.s-cost::before { background: #c98a2b; }
.sect.s-local::before { background: var(--signal); }
.sect.s-anxiety::before { background: #3a72a8; }

/* ---------- hero / lead ---------- */
.lead {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding-block: clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.lead-text { min-width: 0; }
.lead h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--ink);
}
.lead h1 em { font-style: normal; color: var(--petrol); }
.lead .dek {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 40ch;
}
.byline-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--ink-3);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.byline-row .by { color: var(--ink); font-weight: 500; }
.byline-row .sep { color: var(--line-strong); }

/* lead art panel */
.lead-art {
  position: relative;
  border-radius: 4px;
  background: linear-gradient(150deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  color: #eaf5f4;
  text-decoration: none;
  padding: clamp(26px, 3vw, 40px);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(10,59,69,0.55);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.lead-art:hover { transform: translateY(-3px); box-shadow: 0 34px 70px -30px rgba(10,59,69,0.62); }
.lead-art .art-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fc7c3;
  position: relative; z-index: 2;
}
.lead-art .art-pulse { position: absolute; left: -4%; right: -4%; bottom: 11%; z-index: 1; opacity: 0.28; height: 110px; }
.lead-art .art-pulse path { stroke: #64d6cc; stroke-width: 2; fill: none; }
.lead-art .art-figure {
  position: relative; z-index: 2;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(21px, 2.5vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.16;
  margin: 0;
  max-width: 20ch;
}
.lead-art .art-figure b {
  display: block;
  font-size: clamp(42px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 8px;
}
.lead-art .art-foot { position: relative; z-index: 2; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; color: #8fc7c3; text-transform: uppercase; }

/* ---------- main grid ---------- */
.mainrow {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(30px, 4vw, 58px);
  padding-block: clamp(36px, 4.5vw, 56px);
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 26px;
}
.section-head h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.section-head .sh-note { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }

/* story cards */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: var(--paper);
  padding: 26px 26px 30px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease, transform 0.2s ease;
}
.card:hover { background: var(--mist); }
.card .sect { margin-bottom: 15px; }
.card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 11px;
  background-image: linear-gradient(var(--petrol), var(--petrol));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.28s ease;
  padding-bottom: 1px;
}
.card:hover h3 { background-size: 100% 1.5px; }
.card p { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); margin: 0 0 16px; }
.card .card-foot { margin-top: auto; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em; color: var(--ink-3); text-transform: uppercase; }

/* rail */
.rail { min-width: 0; }
.rail .rail-block + .rail-block { margin-top: 38px; }
.rail-head {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 3px solid var(--petrol);
  padding-top: 12px;
  margin: 0 0 6px;
}
.rail-sub { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin: 0 0 16px; letter-spacing: 0.03em; }
.mostread { list-style: none; margin: 0; padding: 0; counter-reset: mr; }
.mostread li { counter-increment: mr; border-top: 1px solid var(--line); }
.mostread li:first-child { border-top: none; }
.mostread a { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; text-decoration: none; color: var(--ink); padding: 15px 0; }
.mostread a::before {
  content: counter(mr, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--petrol);
  padding-top: 2px;
}
.mostread .mr-title { font-family: var(--sans); font-weight: 600; font-size: 16px; line-height: 1.22; letter-spacing: -0.01em; }
.mostread a:hover .mr-title { color: var(--petrol-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.mostread .mr-sect { display: block; margin-top: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

.starthere { background: var(--mist); border: 1px solid var(--line); border-radius: 4px; padding: 22px 22px 24px; }
.starthere p { font-size: 15px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.5; }
.starthere .sh-link { display: block; font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--petrol-deep); text-decoration: none; padding: 11px 0; border-top: 1px solid var(--line-strong); }
.starthere .sh-link:first-of-type { border-top: none; }
.starthere .sh-link:hover { color: var(--signal); }
.starthere .sh-link span { color: var(--ink-3); font-family: var(--mono); font-size: 11px; font-weight: 400; margin-right: 9px; }

/* ---------- sponsored provider ---------- */
.provider { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--mist); }
.provider .wrap { padding-block: clamp(30px, 4vw, 48px); }
.provider-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 18px;
}
.provider-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); }
.provider-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: clamp(22px, 3vw, 32px);
}
.provider-card .pc-emblem { width: 52px; height: 52px; color: var(--petrol); align-self: start; }
.provider-card h3 { font-family: var(--sans); font-weight: 700; font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -0.02em; margin: 0 0 9px; line-height: 1.1; }
.provider-card p { font-size: 16px; line-height: 1.5; color: var(--ink-2); margin: 0; max-width: 62ch; }
.provider-card .pc-cta {
  align-self: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: var(--petrol);
  padding: 13px 22px;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.provider-card .pc-cta svg { width: 22px; height: 8px; }
.provider-card .pc-cta:hover { background: var(--petrol-deep); transform: translateX(2px); }
.provider-disclosure { margin: 16px 0 0; font-family: var(--mono); font-size: 11px; line-height: 1.6; color: var(--ink-3); letter-spacing: 0.01em; max-width: 92ch; }

/* ---------- article ---------- */
.article { padding-block: clamp(30px, 4vw, 52px); }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(30px, 4vw, 60px); }
.article-head { max-width: 760px; margin: 0 auto; }
.article-body-wrap { max-width: 760px; margin: 0 auto; }
.article h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.article .dek {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.45;
  color: var(--ink-2);
  font-weight: 400;
  margin: 0 0 26px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--ink-3);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.article-meta .by { color: var(--ink); font-weight: 500; }
.article-meta .sep { color: var(--line-strong); }

.prose { font-size: 19px; line-height: 1.72; color: #22272d; }
.prose > p { margin: 0 0 24px; }
.prose > p:first-of-type::first-letter {
  font-family: var(--sans);
  font-weight: 800;
  float: left;
  font-size: 3.55em;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--petrol);
}
.prose h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 44px 0 16px;
}
.prose h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; margin: 32px 0 12px; }
.prose ul { margin: 0 0 24px; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 12px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 0.62em; width: 9px; height: 2px; background: var(--petrol); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { color: var(--petrol-deep); text-underline-offset: 3px; }

.pullquote {
  margin: 40px 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--petrol);
}
.pullquote p {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 2.9vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--petrol-deep);
  margin: 0;
}
.pullquote .pq-attr { display: block; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); font-weight: 400; }

.callout {
  background: var(--petrol-tint);
  border-radius: 6px;
  padding: 22px 24px;
  margin: 36px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--petrol-deep);
}
.callout .co-label { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--petrol); margin-bottom: 8px; font-weight: 600; }

/* article side rail (related in-line + provider mini not needed) */
.aside-sticky { position: sticky; top: 74px; align-self: start; }
.aside-card { border-top: 3px solid var(--petrol); padding-top: 14px; }
.aside-card h4 { font-family: var(--sans); font-weight: 700; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 4px; }
.aside-card .ac-sub { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); margin: 0 0 14px; letter-spacing: 0.03em; }
.aside-card ul { list-style: none; margin: 0; padding: 0; }
.aside-card li { border-top: 1px solid var(--line); }
.aside-card li:first-child { border-top: none; }
.aside-card a { display: block; padding: 13px 0; text-decoration: none; color: var(--ink); font-family: var(--sans); font-weight: 500; font-size: 15px; line-height: 1.25; }
.aside-card a:hover { color: var(--petrol-deep); }
.aside-card a .ac-sect { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }

/* related coverage rail (bottom) */
.related { border-top: 1px solid var(--line); padding-block: clamp(32px, 4vw, 50px); }
.related .rel-head { border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 22px; }
.related .rel-head h2 { font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; text-transform: uppercase; margin: 0; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }

/* crisis inline note */
.crisis-note {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--signal);
  border-radius: 4px;
  background: var(--paper);
  padding: 18px 20px;
  margin: 40px 0 8px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.crisis-note strong { color: var(--ink); }
.crisis-note .cn-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); display: block; margin-bottom: 7px; font-weight: 600; }

/* about page */
.about-hero { padding-block: clamp(40px, 5vw, 68px); border-bottom: 1px solid var(--line); }
.about-hero h1 { font-family: var(--sans); font-weight: 800; font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.03; margin: 0 0 18px; max-width: 20ch; }
.about-hero .dek { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); max-width: 54ch; margin: 0; line-height: 1.5; }
.standards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); margin: 40px 0; }
.standards .std { background: var(--paper); padding: 28px; }
.standards .std .kicker { margin-bottom: 12px; }
.standards .std h3 { font-family: var(--sans); font-weight: 700; font-size: 19px; letter-spacing: -0.015em; margin: 0 0 9px; }
.standards .std p { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* ---------- footer ---------- */
.footer { background: var(--petrol-deep); color: #cfe2e0; margin-top: 8px; }
.footer .wrap { padding-block: clamp(40px, 5vw, 60px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .f-brand .wm-name { font-family: var(--sans); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: #fff; display: flex; align-items: center; gap: 12px; }
.footer .f-brand .wm-name .pulse-emblem { width: 32px; height: 32px; color: #64d6cc; }
.footer .f-brand p { font-size: 14.5px; line-height: 1.55; color: #9fc4c2; margin: 16px 0 0; max-width: 40ch; }
.footer .f-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #64d6cc; margin: 0 0 14px; font-weight: 600; }
.footer .f-col a { display: block; text-decoration: none; color: #cfe2e0; font-family: var(--sans); font-weight: 500; font-size: 14.5px; padding: 6px 0; transition: color 0.18s ease; }
.footer .f-col a:hover { color: #fff; }
.footer-base { border-top: 1px solid rgba(255,255,255,0.13); margin-top: 36px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-base p { font-family: var(--mono); font-size: 11px; line-height: 1.7; color: #82a9a6; margin: 0; letter-spacing: 0.01em; max-width: 80ch; }
.footer-base .fb-crisis strong { color: #fff; }

/* ---------- focus + motion ---------- */
a:focus-visible, .pc-cta:focus-visible { outline: 2.5px solid var(--petrol); outline-offset: 3px; border-radius: 2px; }
.deskbar a:focus-visible { outline-offset: -2px; }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise 0.7s cubic-bezier(0.2,0.7,0.2,1) forwards; }
  .reveal.d1 { animation-delay: 0.06s; }
  .reveal.d2 { animation-delay: 0.14s; }
  .reveal.d3 { animation-delay: 0.22s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
  .art-pulse path { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: draw 2.2s ease forwards 0.2s; }
  @keyframes draw { to { stroke-dashoffset: 0; } }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .lead { grid-template-columns: 1fr; }
  .lead-art { min-height: 240px; order: -1; }
  .mainrow { grid-template-columns: 1fr; }
  .rail { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .rail .rail-block + .rail-block { margin-top: 0; }
  .article-grid { grid-template-columns: 1fr; }
  .aside-sticky { position: static; }
  .article-side { max-width: 760px; margin: 0 auto; width: 100%; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .provider-card { grid-template-columns: 1fr; gap: 18px; }
  .provider-card .pc-emblem { width: 44px; height: 44px; }
  .provider-card .pc-cta { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .rel-grid { grid-template-columns: 1fr; }
  .standards { grid-template-columns: 1fr; }
  .masthead-meta { display: none; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .rail { grid-template-columns: 1fr; }
  .prose { font-size: 17.5px; }
  .prose > p:first-of-type::first-letter { font-size: 3em; }
  .lead h1 { font-size: clamp(30px, 8.5vw, 40px); }
}
