/* ============================================================
   FSA — multi-page styles (Board, Bio, Committees, Constitution,
   Meetings, Archives, Newsletter, Home additions)
   ============================================================ */

/* ---------- shared page chrome ---------- */

.const-read-link { margin-top: 40px; padding-left: 36px; }

.page-head {
  background: var(--navy);
  color: #fff;
}
.page-head .wrap { padding-top: 72px; padding-bottom: 64px; }
.page-head .kicker { color: var(--mist); }
.page-title {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  text-wrap: balance;
}
.page-sub {
  font-size: 17px;
  color: var(--mist-light);
  max-width: 62ch;
  text-wrap: pretty;
}
.page-sub a { color: var(--gold-bright); }

.nav-links a.active { color: var(--navy); background: var(--mist-light); }

.text-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.text-link .arrow { transition: transform 0.15s ease; }
.text-link:hover .arrow { transform: translateX(3px); }

.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--mist-light);
  border-radius: 4px;
  padding: 5px 11px;
}
.chip-tbd { background: var(--cream); border: 1px solid rgba(22, 69, 92, 0.22); color: var(--ink-soft); }
.chip-file, .chip-zoom { cursor: not-allowed; opacity: 0.75; }
.chip-zoom { background: var(--navy); color: #fff; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* initial-letter photo placeholder */
.initial-ph {
  background: repeating-linear-gradient(-45deg, var(--mist-light) 0 14px, #d6e1e4 14px 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.initial-ph .initial {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: var(--navy);
  opacity: 0.75;
}
.initial-ph .ph-note {
  font-family: var(--font-mono);
  font-size: 9.5px;
  line-height: 1.3;
  text-align: center;
  color: var(--ink-soft);
  background: rgba(252, 250, 242, 0.85);
  padding: 2px 7px;
  border-radius: 3px;
}

/* ---------- HOME: Meet the Presidents grid ---------- */

.presidents { padding: 96px 0 40px; background: var(--paper); }  /* bottom padding = the W1 seam gap */
.presidents-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.presidents-head p { max-width: 46ch; color: var(--ink-soft); text-wrap: pretty; }

.pres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pres-card {
  background: #fff;
  border: 1px solid rgba(22, 69, 92, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/* The card lift on hover. Qualified with .reveal.in so it outranks the
   reveal gating rule (html.js .reveal.in { transform: none }), which would
   otherwise pin the rest-state transform and kill the hover lift. */
.pres-card:hover,
html.js .pres-card.reveal.in:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(14, 52, 71, 0.14); }
.pres-photo { aspect-ratio: 4 / 4.2; position: relative; overflow: hidden; }
.pres-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.pres-photo.initial-ph { position: relative; }

/* ---------- HOME presidents grid: FSA brand overlay (homepage only) ----------
   The homepage headshots come from many sources, so at rest every photo wears an
   FSA brand overlay to make the grid read as one navy/gold composition. On
   pointer-hover and keyboard focus the overlay fades to opacity 0, revealing the
   photo's true colour, then fades back on mouse-out / blur. Only OPACITY is ever
   transitioned (compositor-friendly); the grayscale/duotone filter is applied
   statically to the overlay layer and is never animated. The base <img> is never
   touched, so its colour and onerror initials fallback stay intact. */
.pres-photo .pres-ovl {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--ovl-opacity, 0.65);
  transition: opacity var(--ovl-fade, 0.45s) ease;
}
/* A. Flat navy tint */
[data-ovl="A"] .pres-photo .pres-ovl {
  background: #16455c;
  mix-blend-mode: multiply;
}
/* B. Brand gradient (navy to navy-2) */
[data-ovl="B"] .pres-photo .pres-ovl {
  background: linear-gradient(135deg, #16455c 0%, #0e3447 100%);
  mix-blend-mode: multiply;
}
/* C. Navy-to-gold gradient, gold weighted to the bottom-right corner */
[data-ovl="C"] .pres-photo .pres-ovl {
  background: linear-gradient(135deg, #16455c 0%, #16455c 45%, #e0a92e 130%);
  mix-blend-mode: multiply;
}
/* D. Duotone (most uniform): shadows mapped to navy, highlights to cream.
   Three stacked sub-layers inside the overlay: a GRAYSCALE copy of the photo
   (the only thing the grayscale filter touches, so the tints below are never
   desaturated), then a navy "screen" fill that lifts the shadows to navy, then a
   cream "multiply" fill that brings the highlights to cream. isolation keeps all
   three blending only with each other, not with the untouched colour <img>
   beneath, which the whole overlay fades out to reveal. The sub-layers are
   inert (display:none) in styles A to C. */
.pres-ovl .duo { display: none; }
[data-ovl="D"] .pres-photo .pres-ovl { isolation: isolate; }
[data-ovl="D"] .pres-photo .pres-ovl .duo {
  display: block;
  position: absolute;
  inset: 0;
}
[data-ovl="D"] .pres-ovl .duo-base {
  background-image: var(--ph);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.03);
}
[data-ovl="D"] .pres-ovl .duo-navy  { background: #16455c; mix-blend-mode: screen; }
[data-ovl="D"] .pres-ovl .duo-cream { background: #f7f1de; mix-blend-mode: multiply; }

/* Reveal true colour on BOTH pointer-hover and keyboard focus. Gated to
   pointer-fine / hover-capable devices so touch screens keep the cohesive
   branded resting state and never get stuck half-revealed. */
@media (hover: hover) and (pointer: fine) {
  .pres-card:hover .pres-ovl,
  .pres-card:focus-visible .pres-ovl,
  .pres-card:focus-within .pres-ovl {
    opacity: 0;
  }
}
/* Reduced motion: keep the reveal, drop the animated fade (instant swap). */
@media (prefers-reduced-motion: reduce) {
  .pres-photo .pres-ovl { transition: none; }
}
.pres-meta { padding: 14px 16px 16px; }
.pres-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); }
.pres-school { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }
.pres-fsa-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
  color: var(--ink-soft);
  margin-top: 8px;
}
/* FSA officer distinction badge (Chair / Internal VC / External VC) */
.pres-office {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy);
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 10px;
}
.pres-office + .pres-fsa-title { margin-top: 6px; }
.pres-card .view-profile {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.pres-card:hover .view-profile { opacity: 1; transform: none; }
/* officer distinction now via .pres-office badge (see above) */

/* ---------- HOME: pull-quote band ---------- */

.pull-quote { background: var(--navy); color: #fff; }
.pull-quote .wrap { padding-top: 96px; padding-bottom: 96px; }
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  max-width: 28em;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.pull-quote blockquote::before { content: "\201C"; color: var(--gold); }
.pull-quote blockquote::after { content: "\201D"; color: var(--gold); }
.pull-quote .attribution {
  margin-top: 26px;
  text-align: center;
  font-size: 15.5px;
  color: var(--mist);
}
.pull-quote .attribution strong { color: var(--gold-bright); font-weight: 700; }

/* ---------- BOARD page ---------- */

.board-page { padding: 64px 32px 104px; }
.b-group-head {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 8px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
}
.board-page .b-group-head:first-child { margin-top: 0; }
.b-group-note {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
  margin: 14px 0 28px;
  text-wrap: pretty;
}
.b-group-note + .b-group-head { margin-top: 56px; }

.b-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(22, 69, 92, 0.14);
  align-items: start;
}
.b-row-photo {
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.b-row-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.b-row-name { font-size: 24px; font-weight: 800; color: var(--navy); margin: 6px 0 4px; }
.b-row-title { font-size: 15px; font-weight: 600; color: var(--ink-soft); margin-bottom: 12px; }
.b-row-bio { font-size: 15.5px; color: var(--ink-soft); max-width: 64ch; margin-bottom: 14px; text-wrap: pretty; }
.b-row-tbd .b-row-photo { aspect-ratio: 4 / 3; }
.b-row-tbd { opacity: 0.85; }

/* ---------- BIO pages ---------- */

.bio-hero { background: var(--navy); color: #fff; }
.bio-hero-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.bio-photo {
  aspect-ratio: 4 / 4.7;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.bio-name { font-size: clamp(36px, 4vw, 56px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.bio-line { font-size: 18px; color: var(--mist-light); }
.bio-hometown { font-size: 15px; color: var(--mist); margin-top: 4px; }

.bio-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 56px;
}
.bio-main p { font-size: 16.5px; color: var(--ink); margin-bottom: 18px; max-width: 66ch; text-wrap: pretty; }
.bio-sub-head { font-size: 19px; font-weight: 800; color: var(--navy); margin: 30px 0 14px; }

.bio-aside { display: flex; flex-direction: column; gap: 26px; }
.uni-wordmark {
  border: 1px solid rgba(22, 69, 92, 0.18);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.uni-wordmark span { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--navy); letter-spacing: 0.02em; }
.uni-wordmark small { font-size: 13px; color: var(--ink-soft); }
.bio-contact h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.bio-contact-note {
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
}

.bio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 88px;
  border-top: 1px solid rgba(22, 69, 92, 0.14);
}
.bio-pager { display: flex; gap: 26px; }

/* ---------- COMMITTEES (charter ledger) ---------- */

.charter-ledger { border-bottom: 1px solid rgba(22, 69, 92, 0.25); }
.ch-band { border-top: 1px solid rgba(22, 69, 92, 0.25); }
.ch-band:first-child { border-top: none; }
.ch-band-a { background: var(--paper); }
.ch-band-b { background: var(--cream); }

.ch-row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr 300px;
  gap: 44px;
  padding-top: 60px;
  padding-bottom: 60px;
  align-items: start;
}

.ch-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 86px;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.ch-num::after {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  background: var(--gold);
  margin-top: 14px;
}
.ch-name {
  font-size: 25px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 20px;
  text-wrap: balance;
}
.ch-charter {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 69, 92, 0.3);
  padding-bottom: 2px;
}
.ch-charter:hover { color: var(--navy); border-bottom-color: var(--navy); }

.ch-main { padding-top: 10px; }
.ch-mission {
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 50ch;
}
.ch-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.ch-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--navy);
  border-radius: 3px;
  padding: 5px 11px;
}

.ch-people {
  padding-top: 10px;
  padding-left: 28px;
  border-left: 1px solid rgba(22, 69, 92, 0.2);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ch-people-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 5px;
}
.ch-chair-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
}
.ch-people-note { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); margin-top: 5px; }
.ch-members-line { font-size: 14px; line-height: 1.5; color: var(--ink-soft); font-style: italic; }

/* Chair, filled state */
.ch-chair-card { display: flex; align-items: center; gap: 12px; }
.ch-chair-photo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}
.ch-chair-photo img { width: 100%; height: 100%; object-fit: cover; }
.ch-chair-photo.initial-ph .initial { font-size: 17px; opacity: 0.75; }
.ch-chair-uni { display: block; font-size: 12.5px; line-height: 1.4; color: var(--ink-soft); margin-top: 2px; }
.ch-chair-bio { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin-top: 10px; text-wrap: pretty; }

/* Members roster, filled state */
.ch-roster {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px 18px;
}
.ch-roster-2col { grid-template-columns: 1fr 1fr; }
.ch-roster li { font-size: 12.5px; line-height: 1.4; color: var(--ink-soft); }
.ch-roster-name { font-weight: 700; color: var(--navy); }

/* Article VII §2 navy aside, mid-ledger */
.ch-aside-band {
  background: var(--navy-2);
  color: #fff;
  border-top: 1px solid rgba(22, 69, 92, 0.25);
}
.ch-aside {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 52px;
}
.ch-aside-cite {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.ch-aside-cite a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(236, 188, 75, 0.45); padding-bottom: 1px; }
.ch-aside-cite a:hover { border-bottom-color: var(--gold-bright); }
.ch-aside-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 26ch;
}
.ch-aside-action { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.ch-aside-action .btn[aria-disabled="true"] { opacity: 0.9; cursor: default; }
.ch-aside-note { font-size: 13px; color: var(--mist); font-style: italic; }

/* ---------- HISTORY: chairs' ledger (#/history) ---------- */
.history-page { padding: 56px 32px 104px; }
.chairs-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  text-wrap: balance;
}
.chairs-list {
  list-style: none;
  margin-top: 36px;
  border-top: 1px solid rgba(22, 69, 92, 0.3);
}
.chairs-row {
  display: grid;
  grid-template-columns: 120px 1.2fr 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(22, 69, 92, 0.14);
}
.chairs-year {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.chairs-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chairs-name a {
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 69, 92, 0.3);
  padding-bottom: 1px;
}
.chairs-name a:hover { border-bottom-color: var(--navy); }
.chairs-current {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-2);
  background: var(--gold);
  border-radius: 3px;
  padding: 3px 8px;
}
.chairs-uni { font-size: 14.5px; color: var(--ink-soft); }
.chairs-note {
  margin-top: 24px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.chairs-note a { color: var(--navy); font-weight: 600; }

/* ---------- TABLES (Meetings, Archives) ---------- */

.meetings-page, .archives-page { padding: 64px 32px 104px; }
.attend-block {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 30px;
  margin-bottom: 44px;
  max-width: 820px;
}
.attend-block h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.attend-block p { font-size: 15.5px; color: var(--ink-soft); text-wrap: pretty; }
.attend-block a { color: var(--navy); font-weight: 600; }

.next-meeting {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 34px 32px;
  margin-bottom: 44px;
  max-width: 820px;
}
.next-meeting .nm-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-2);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.next-meeting h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.next-meeting .nm-where { font-size: 15px; color: var(--mist-light); margin-bottom: 16px; }
.next-meeting .nm-label { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--gold-bright); margin-bottom: 8px; }
.nm-agenda { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 7px; }
.nm-agenda li {
  font-size: 15px;
  color: var(--mist-light);
  padding-left: 18px;
  position: relative;
}
.nm-agenda li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 3px;
  background: var(--gold);
}
a.chip-zoom { text-decoration: none; cursor: pointer; opacity: 1; }
a.chip-zoom:hover { background: var(--navy-3); }
a.chip-file { text-decoration: none; cursor: pointer; opacity: 1; }
a.chip-file:hover { background: var(--gold); color: var(--navy-2); }

.table-scroll { overflow-x: auto; }
.fsa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 680px;
}
.fsa-table th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  text-align: left;
  padding: 13px 18px;
}
.fsa-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(22, 69, 92, 0.14);
  color: var(--ink-soft);
  vertical-align: middle;
}
.fsa-table tbody tr:nth-child(even) { background: rgba(195, 210, 214, 0.12); }
.fsa-table tbody tr:hover { background: rgba(224, 169, 46, 0.08); }
.td-date { font-family: var(--font-display); font-weight: 700; color: var(--navy); white-space: nowrap; }
.td-meeting { color: var(--ink); font-weight: 600; }
.td-dash { color: rgba(74, 100, 115, 0.55); font-size: 13.5px; font-style: italic; }

.meetings-page .fine-print, .empty-note {
  margin-top: 22px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- NEWSLETTER ISSUE ARCHIVE (#/newsletters) ---------- */

.newsletters-page { padding-top: 56px; padding-bottom: 104px; }
.issues-list {
  list-style: none;
  border-top: 1px solid rgba(22, 69, 92, 0.3);
}
.issue-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(22, 69, 92, 0.14);
}
.issue-date {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.issue-body { display: flex; flex-direction: column; gap: 4px; }
.issue-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.issue-summary { font-size: 15px; color: var(--ink-soft); max-width: 64ch; }
.issue-link { white-space: nowrap; }
.issues-empty {
  border-top: 1px solid rgba(22, 69, 92, 0.3);
  padding: 56px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.issues-empty-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--navy);
}

/* ---------- NEWSLETTER ---------- */

.newsletter-page { background: var(--paper); }
.nl-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 32px 44px;
}
.nl-head .kicker { margin-bottom: 0; }
.nl-band {
  background: var(--navy);
  padding: 0;
}
.nl-band-inner { padding: 80px 32px 96px; text-align: center; }
.nl-seal {
  width: 140px;
  height: 140px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  outline: 1px solid rgba(224, 169, 46, 0.5);
  outline-offset: 6px;
}
.nl-title {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 900;
  color: #fff;
  margin: 22px auto 0;
  text-wrap: balance;
}
.nl-dek {
  font-size: 16.5px;
  color: var(--mist-light);
  max-width: 560px;
  margin: 12px auto 0;
  text-wrap: pretty;
}
.nl-embed {
  max-width: 560px;
  margin: 30px auto 0;
  min-height: 332px; /* measured: beehiiv v3 iframe self-sizes to 332px at 560px and 350px widths */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* the beehiiv iframe mounts at 2000px tall before its resize handshake —
     clip the transient so it never sprawls over the band */
  overflow: hidden;
  max-height: 332px;
}
.nl-embed iframe, .nl-embed > div {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.nl-privacy {
  margin-top: 18px;
  font-size: 13px;
  color: var(--mist);
  text-align: center;
}
.nl-privacy a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- NEWSLETTER POPUP (site-wide) ---------- */

.fsa-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(14, 52, 71, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.fsa-popup-backdrop.open { opacity: 1; }
.fsa-popup-panel {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  width: min(560px, 100%);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 18px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.fsa-popup-backdrop.open .fsa-popup-panel { transform: none; }
.fsa-popup-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--paper);
  font-size: 28px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  border-radius: var(--radius);
}
.fsa-popup-close:hover { background: var(--mist-light); }
.fsa-popup-content {
  padding-top: 26px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
.fsa-popup-content iframe { max-width: 100%; }
.fsa-popup-dismiss {
  flex: 0 0 auto;
  align-self: center;
  min-height: 44px;
  margin-top: 2px;
  padding: 8px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  border-radius: var(--radius);
}
.fsa-popup-dismiss:hover { color: var(--navy); background: var(--mist-light); }
.fsa-popup-fine {
  flex: 0 0 auto;
  align-self: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 2px;
}
.fsa-popup-fine a { color: var(--navy); font-weight: 600; }

/* ---------- PRIVACY POLICY (#/privacy) ---------- */

.privacy-page { padding-top: 48px; padding-bottom: 96px; }
.privacy-doc {
  max-width: 720px;
  background: #fff;
  border: 1px solid rgba(22, 69, 92, 0.16);
  border-radius: var(--radius);
  padding: 40px 44px 48px;
}
.privacy-doc h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 30px 0 10px;
}
.privacy-doc h2:first-child { margin-top: 0; }
.privacy-doc p { font-size: 15.5px; color: var(--ink); margin: 12px 0; max-width: 66ch; text-wrap: pretty; }
.privacy-doc a { color: var(--navy); font-weight: 600; }
@media (max-width: 560px) {
  .privacy-page { padding-top: 28px; padding-bottom: 64px; }
  .privacy-doc { padding: 26px 22px 32px; }
}

/* ---------- CONSTITUTION READER ---------- */

.c-head .wrap { padding-bottom: 20px; }
.c-toolbar-bar { background: var(--navy); }
.c-toolbar-bar .wrap { padding-bottom: 40px; }
.c-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.c-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(195, 210, 214, 0.4);
  border-radius: var(--radius);
  padding: 0 12px;
  flex: 1;
  min-width: 260px;
  max-width: 440px;
}
.c-search input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 0;
}
.c-search input::placeholder { color: rgba(195, 210, 214, 0.7); }
.c-search input:focus { outline: none; }
.c-search input:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 2px; }
.c-search-count { font-size: 13px; color: var(--gold-bright); white-space: nowrap; font-weight: 600; }
.c-search-clear {
  background: none;
  border: none;
  color: var(--mist);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 4px;
}
.c-search-clear:hover { color: #fff; }
.btn.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn.btn-outline-light:hover { background: #fff; color: var(--navy); }

.c-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 52px;
  padding-top: 56px;
  padding-bottom: 104px;
  align-items: start;
}

.c-sidebar { position: sticky; top: 100px; max-height: calc(100vh - 130px); overflow-y: auto; }
.c-toc-toggle { display: none; }
.c-toc-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.c-toc ul { list-style: none; }
.c-toc > ul > li { margin-bottom: 2px; }
.c-toc a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 10px;
  border-left: 3px solid transparent;
  border-radius: 0 4px 4px 0;
}
.c-toc a:hover { color: var(--navy); background: var(--mist-light); }
.c-toc a.toc-current { color: var(--navy); border-left-color: var(--gold); background: var(--cream); }
.c-toc-secs { margin-left: 12px; }
.c-toc-secs a { font-size: 12.5px; font-weight: 400; padding: 3px 10px; }

.c-preamble .c-pre-head { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.c-pre-text { font-style: italic; }

.c-article {
  border: 1px solid rgba(22, 69, 92, 0.16);
  border-radius: var(--radius);
  margin-top: 18px;
  background: #fff;
  overflow: hidden;
}
.c-article.c-no-match { display: none; }
.c-art-h { margin: 0; font-size: inherit; line-height: inherit; }
.c-art-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
}
.c-art-head:hover { background: var(--cream); }
.c-art-num {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.c-art-title { font-weight: 800; font-size: 19px; color: var(--navy); flex: 1; }
.c-art-chevron { color: var(--ink-soft); transition: transform 0.2s ease; }
.c-article[data-open="true"] .c-art-chevron { transform: rotate(180deg); }
.c-art-body { display: none; padding: 4px 28px 30px; }
.c-article[data-open="true"] .c-art-body { display: block; }

.c-para { font-size: 15.5px; color: var(--ink); margin: 12px 0; max-width: 72ch; text-wrap: pretty; }
.c-section { margin-top: 26px; }
.c-sec-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
}
.c-sec-head span { font-weight: 700; }
.c-anchor {
  background: var(--mist-light);
  border: none;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy);
  padding: 3px 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.c-anchor:hover { background: var(--gold); color: var(--navy-2); }
.c-anchor.copied { background: var(--navy); color: var(--gold); }

.c-list { margin: 10px 0 10px 26px; }
.c-list li { font-size: 15px; color: var(--ink); margin: 9px 0; padding-left: 6px; max-width: 70ch; text-wrap: pretty; }
.c-list .c-list { margin-top: 8px; }

.c-flash { animation: c-flash-bg 1.6s ease; }
@keyframes c-flash-bg {
  0%, 30% { background: rgba(224, 169, 46, 0.25); }
  100% { background: transparent; }
}

mark { background: var(--gold); color: var(--navy-2); padding: 0 2px; border-radius: 2px; }

.c-ref-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.c-ref-link:hover { color: var(--navy-3); text-decoration-color: var(--navy-3); }

.defined-term {
  border-bottom: 1.5px dotted rgba(224, 169, 46, 0.9);
  cursor: help;
  position: relative;
}
.defined-term:hover::after {
  content: attr(data-def);
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 30;
  width: 300px;
  background: var(--navy-2);
  color: var(--mist-light);
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 12px 30px rgba(14, 52, 71, 0.3);
  font-weight: 400;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.c-callout {
  background: var(--navy);
  color: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 20px 0;
  max-width: 640px;
}
.c-callout-cite {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.c-callout-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  margin: 8px 0 10px;
  text-wrap: pretty;
}
.c-callout-caption { font-size: 14px; color: var(--mist-light); }
.c-callout-caption a { color: var(--gold-bright); }

.c-controls-note {
  margin-top: 40px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 64ch;
}
.c-controls-note a { color: var(--navy); }

/* ---------- THE SYSTEM (map page) ---------- */

.sys-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 104px;
  align-items: start;
}
.sys-map { position: relative; }
.sys-map-svg { width: 100%; height: auto; display: block; }

.fl-outline {
  fill: var(--navy);
  stroke: var(--navy-2);
  stroke-width: 2;
}
.fl-keys {
  stroke: var(--navy);
  stroke-width: 6;
  stroke-linecap: round;
}
.marker-leader { stroke: var(--gold); stroke-width: 1; opacity: 0.7; }
.marker-hit { fill: transparent; pointer-events: all; }

.sys-marker { cursor: pointer; outline: none; }
.sys-marker:focus-visible .marker-dot { stroke: var(--gold-bright); stroke-width: 3px; }
.sys-marker:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 2px; }
.marker-dot {
  fill: var(--gold);
  stroke: var(--navy-2);
  stroke-width: 3;
  transition: r 0.15s ease, fill 0.15s ease;
  transform-origin: center;
  transform-box: fill-box;
}
.marker-halo { fill: none; stroke: var(--gold); stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; }
/* Looping "heartbeat": a brief compositor-only (transform + opacity) swell
   on a ~3s cycle, then resting (invisible) for most of it. Softly staggered
   per marker via an inline animation-delay. Static under reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .marker-halo { animation: marker-pulse 3s ease-out infinite; }
  @keyframes marker-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    22%  { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(2.4); opacity: 0; }
  }
}
.sys-marker:hover .marker-dot, .sys-marker:focus-visible .marker-dot { r: 12; fill: var(--gold-bright); }
.marker-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.sys-marker.selected .marker-ring { opacity: 1; }
.sys-marker:focus-visible .marker-ring { opacity: 0.6; stroke-dasharray: 4 4; }
.marker-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  fill: var(--navy);
  paint-order: stroke;
  stroke: var(--paper);
  stroke-width: 4;
  stroke-linejoin: round;
  pointer-events: none;
}

.sys-tooltip {
  position: absolute;
  transform: translate(-50%, -100%);
  background: var(--navy-2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 12px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 22px rgba(14, 52, 71, 0.3);
  z-index: 20;
}

.sys-panel {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 4px 0 0 6px;
}
.sys-panel .kicker { color: var(--navy); }
.sys-panel-title {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  text-wrap: balance;
}
.sys-panel-text { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; text-wrap: pretty; }
/* /system quick-nav: gold-rule cards (label + descriptor + arrow) */
.sys-quicknav { margin: 18px 0 20px; display: grid; gap: 12px; }
.sqn-item {
  text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  column-gap: 12px; row-gap: 2px;
  background: #fff; border: 1px solid rgba(22, 69, 92, 0.12);
  border-top: 3px solid var(--gold); border-radius: var(--radius);
  padding: 14px 16px;
  filter: drop-shadow(0 2px 5px rgba(14, 52, 71, 0.06));
}
.sqn-label { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--navy); }
.sqn-desc { grid-column: 1; font-size: 12.5px; color: var(--ink-soft); }
.sqn-arrow {
  display: inline-flex; grid-column: 2; grid-row: 1 / span 2; align-self: center;
  color: var(--gold); font-size: 18px; font-weight: 700;
}
@media (prefers-reduced-motion: no-preference) {
  .sqn-item { transition: transform 0.16s ease, filter 0.16s ease; }
}
.sqn-item:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 18px rgba(14, 52, 71, 0.14)); }
.sys-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sys-hint-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--navy-2);
}

.sys-stat-row {
  display: flex;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(22, 69, 92, 0.16);
  margin: 4px 0 22px;
}
.sys-stat {
  flex: 1;
  padding: 14px 18px 16px 0;
  border-left: 1px solid rgba(22, 69, 92, 0.16);
  padding-left: 18px;
}
.sys-stat:first-child { border-left: none; padding-left: 0; }
.sys-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.6vw, 23px);
  letter-spacing: -0.015em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sys-stat-label { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

.sys-enroll { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 22px; }
.sys-enroll-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.sys-enroll-cap { font-size: 13px; color: var(--ink-soft); }

.sys-pres {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(22, 69, 92, 0.16);
}
.sys-pres-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.sys-pres-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.sys-pres-photo.initial-ph .initial { font-size: 17px; }
.sys-pres-meta { display: flex; flex-direction: column; }
.sys-pres-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--navy); }
.sys-pres-title { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }

/* ---------- HOME: system teaser band ---------- */

.sys-teaser { background: var(--cream); }
.sys-teaser .wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 44px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}
.sys-teaser-mini { width: 110px; flex-shrink: 0; }
.sys-teaser-mini .fl-outline { stroke-width: 4; }
.sys-teaser-mini .fl-keys { stroke-width: 12; }
.sys-teaser h2 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--navy);
  flex: 1;
  min-width: 240px;
  text-wrap: balance;
}
.sys-teaser .text-link { font-size: 16px; }

/* ---------- footer university links ---------- */

.footer-universities .uni-strip a {
  color: rgba(195, 210, 214, 0.65);
  padding: 0 10px;
  text-decoration: none;
}
.footer-universities .uni-strip a:hover {
  color: var(--mist-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1020px) {
  .sys-layout { grid-template-columns: 1fr; }
  .sys-panel { position: static; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .pres-grid { grid-template-columns: repeat(3, 1fr); }
  .ch-row { grid-template-columns: minmax(200px, 240px) 1fr; gap: 36px; }
  .ch-people {
    grid-column: 2;
    border-left: none;
    border-top: 1px solid rgba(22, 69, 92, 0.2);
    padding-left: 0;
    padding-top: 22px;
    flex-direction: row;
    gap: 48px;
  }
  .c-layout { grid-template-columns: 1fr; gap: 0; }
  /* toolbar sticks under the nav while scrolling the document */
  .c-toolbar-bar { position: sticky; top: 76px; z-index: 50; box-shadow: 0 8px 20px rgba(14, 52, 71, 0.18); }
  .c-toolbar-bar .wrap { padding-top: 12px; padding-bottom: 12px; }
  .c-expand-all { display: none; }
  /* TOC becomes a sticky dropdown under the toolbar */
  .c-sidebar {
    position: sticky;
    top: 144px;
    z-index: 45;
    max-height: none;
    overflow: visible;
    margin-bottom: 24px;
    border: 1px solid rgba(22, 69, 92, 0.16);
    border-radius: var(--radius);
    padding: 0;
    background: var(--paper);
    box-shadow: 0 6px 18px rgba(14, 52, 71, 0.08);
  }
  .c-toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
  }
  .c-toc-label { display: none; }
  .c-sidebar .c-toc > ul { display: none; }
  .c-sidebar.open .c-toc > ul {
    display: block;
    max-height: 50vh;
    overflow-y: auto;
    padding: 0 8px 12px;
    border-top: 1px solid rgba(22, 69, 92, 0.12);
  }
  .c-toc a { min-height: 44px; display: flex; align-items: center; }
  .c-toc-secs { display: none; }
}

@media (max-width: 860px) {
  .pres-grid { grid-template-columns: repeat(2, 1fr); }
  .b-row { grid-template-columns: 130px 1fr; gap: 20px; }
  .bio-hero-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 44px; padding-bottom: 44px; }
  .bio-photo { max-width: 280px; }
  .bio-body { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .nl-band-inner { padding: 16px 20px 64px; }
  .nl-seal { width: 100px; height: 100px; }
  .fsa-popup-backdrop { padding: 14px; }
  .ch-row { grid-template-columns: 1fr; gap: 26px; padding-top: 44px; padding-bottom: 44px; }
  .ch-num { font-size: 60px; }
  .ch-name { margin-top: 14px; font-size: 22px; }
  .ch-main { padding-top: 0; }
  .ch-mission { font-size: 18px; }
  .ch-people { grid-column: auto; flex-direction: column; gap: 18px; padding-top: 20px; }
  .ch-roster-2col { grid-template-columns: 1fr; }
  .ch-aside { grid-template-columns: 1fr; gap: 30px; padding-top: 44px; padding-bottom: 44px; }
  .ch-aside-action .btn { width: 100%; justify-content: center; min-height: 50px; }
  .chairs-row { grid-template-columns: 1fr; gap: 2px; padding: 16px 0; }
  .chairs-name { font-size: 18px; }
  .issue-row { grid-template-columns: 1fr; gap: 8px; }
  .issue-link { justify-self: start; }
  .b-row { grid-template-columns: 1fr; }
  .b-row-photo { max-width: 220px; }
  .bio-footer { flex-direction: column; align-items: flex-start; }
  .pres-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .pres-meta { padding: 10px 10px 12px; }
  .pres-name { font-size: 13px; }
  .pres-school { font-size: 11px; }
  .pres-fsa-title { font-size: 11px; margin-top: 6px; }
  .pres-office { font-size: 9px; margin-top: 8px; padding: 2px 6px; }
  .pres-card .view-profile { display: none; }
  .initial-ph .initial { font-size: 22px; }
  .initial-ph .ph-note { font-size: 8px; }
}

@media (max-width: 390px) {
  .pres-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pres-name { font-size: 14px; }
  .pres-school { font-size: 12px; }
}

/* ============ dedicated mobile pass (≤700px) ============ */
@media (max-width: 700px) {
  /* page chrome */
  .page-head .wrap { padding-top: 48px; padding-bottom: 44px; }
  .text-link { min-height: 44px; align-items: center; }

  /* pull-quote steps down */
  .pull-quote blockquote { font-size: 19px; }
  .pull-quote .wrap { padding-top: 64px; padding-bottom: 64px; }

  /* system teaser: single compact row */
  .sys-teaser .wrap { flex-wrap: nowrap; gap: 14px; padding-top: 28px; padding-bottom: 28px; }
  .sys-teaser-mini { width: 46px; }
  .sys-teaser h2 { font-size: 15px; min-width: 0; }
  .sys-teaser .text-link { font-size: 14px; white-space: nowrap; flex-shrink: 0; }

  /* board rows: photo above text, full-width profile button */
  .b-row .text-link {
    width: 100%;
    justify-content: center;
    border: 2px solid var(--navy);
    border-radius: var(--radius);
    min-height: 48px;
  }

  /* bio pages: prev/next as fixed bottom bar */
  .bio-pager {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--navy-2);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 20px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(14, 52, 71, 0.25);
  }
  .bio-pager .text-link { color: #fff; width: auto; border: none; padding: 0 14px; }
  .bio-footer { padding-bottom: 96px; }

  /* meetings + archives: rows become stacked cards */
  .table-scroll { overflow: visible; }
  .fsa-table { min-width: 0; display: block; }
  .fsa-table thead { display: none; }
  .fsa-table tbody { display: block; }
  .fsa-table tbody tr {
    display: block;
    background: #fff;
    border: 1px solid rgba(22, 69, 92, 0.16);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 14px;
  }
  .fsa-table tbody tr:nth-child(even), .fsa-table tbody tr:hover { background: #fff; }
  .fsa-table td { display: flex; align-items: center; gap: 10px; border: none; padding: 4px 0; }
  .fsa-table td::before {
    content: attr(data-label);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    width: 70px;
    flex-shrink: 0;
  }
  .fsa-table td.td-date { padding-bottom: 8px; }
  .fsa-table td.td-date::before { content: none; }
  .td-date { font-size: 19px; }
  .chip { min-height: 40px; padding: 8px 16px; }
  a.chip-zoom { min-height: 44px; }
  a.chip-file { min-height: 44px; }

  /* newsletter */
  .nl-head { padding: 52px 20px 32px; }
  .nl-band { padding: 52px 20px 76px; }

  /* constitution: bigger anchors, single-column comfort */
  .c-anchor { min-height: 44px; min-width: 44px; padding: 8px 10px; }
  .c-art-head { padding: 18px 16px; gap: 10px; }
  .c-art-body { padding: 4px 16px 24px; }
  .c-list { margin-left: 18px; }
  .c-layout { padding-top: 20px; }

  /* system map: comfortable tap sizes */
  .marker-dot { r: 13; }
  .marker-label { font-size: 22px; }
  .sys-panel { padding: 4px 0 0; }
}

/* ============================================================
   COST HUB — detail-panel finance facts, per-school profile,
   stub sub-pages. Brand: navy/gold, gold only ever on navy.
   ============================================================ */

/* ---- map detail-panel finance facts + stacked actions ---- */
.sys-fin {
  display: grid;
  gap: 14px;
  margin: 20px 0 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(22, 69, 92, 0.16);
}
.sys-fin-row { display: flex; flex-direction: column; gap: 2px; }
.sys-fin-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.sys-fin-num.sys-fin-na { color: var(--ink-soft); }
.sys-fin-cap { font-size: 12.5px; color: var(--ink-soft); }
.sys-fin-forth { font-style: italic; }
.sys-cost-btn { display: flex; width: 100%; justify-content: center; margin-bottom: 10px; }
.sys-profile-btn { display: flex; width: 100%; justify-content: center; }

/* ---- per-school cost profile ---- */
.school-body { padding-top: 40px; padding-bottom: 30px; }
.school-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 26px;
  align-items: start;
}
.school-card {
  background: #fff;
  border: 1px solid rgba(22, 69, 92, 0.12);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
}
.school-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  margin: 0 0 14px;
}
.school-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.school-card-head .school-h2 { margin: 0; }

/* residency segmented toggle */
.res-toggle {
  display: inline-flex;
  border: 1px solid var(--navy);
  border-radius: 999px;
  overflow: hidden;
}
.res-toggle button {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  min-height: 38px;
  background: transparent;
  color: var(--navy);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease;
}
.res-toggle button + button { border-left: 1px solid rgba(22, 69, 92, 0.25); }
.res-toggle button.on { background: var(--navy); color: #fff; }

/* fee breakdown table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.fee-table thead th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  text-align: left;
  padding: 11px 12px;
}
.fee-table thead th:first-child { border-radius: 4px 0 0 0; }
.fee-table thead th:last-child { border-radius: 0 4px 0 0; }
.fee-table thead th.fee-num-col { text-align: right; }
.fee-table tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  text-align: left;
  padding: 9px 12px;
}
.fee-table tbody td {
  text-align: right;
  font-size: 14.5px;
  color: var(--ink);
  padding: 9px 12px;
}
/* same static wave-line row divider as the ranking tables */
.fee-table tbody tr {
  background-image: var(--wave-divider);
  background-repeat: repeat-x;
  background-position: left bottom;
}
.fee-table tbody tr:nth-child(even) { background-color: rgba(247, 241, 222, 0.55); }
.fee-table tbody tr.fee-null th,
.fee-table tbody tr.fee-null td { color: var(--ink-soft); }
.fee-table tfoot th,
.fee-table tfoot td {
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--navy);
  color: #fff;
  padding: 13px 14px;
  border: none;
}
.fee-table tfoot td { text-align: right; color: var(--gold-bright); font-size: 16px; }
.fee-table tfoot tr.fee-total th { font-size: 15px; }
.fee-table tfoot tr.fee-total:first-child th { border-radius: 8px 0 0 0; }
.fee-table tfoot tr.fee-total:first-child td { border-radius: 0 8px 0 0; }
.fee-table tfoot tr.fee-total-alt th,
.fee-table tfoot tr.fee-total-alt td { background: var(--navy-3); }
.fee-table tfoot tr.fee-total-alt th { border-radius: 0 0 0 8px; }
.fee-table tfoot tr.fee-total-alt td { border-radius: 0 0 8px 0; }

/* hand-rolled SVG trend chart */
.trend-wrap { width: 100%; margin-top: 4px; }
.trend-svg { width: 100%; height: auto; display: block; overflow: visible; }
.trend-grid { stroke: rgba(22, 69, 92, 0.12); stroke-width: 1; }
.trend-ylab,
.trend-xlab { font-family: var(--font-body); font-size: 13px; font-weight: 500; fill: var(--ink-soft); }
.trend-avg { stroke: var(--mist); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.trend-school { stroke: var(--gold); stroke-width: 3.5; stroke-linejoin: round; stroke-linecap: round; }
.trend-dot { fill: var(--gold); }
@media (prefers-reduced-motion: no-preference) {
  .trend-avg,
  .trend-school {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: trendDraw 0.9s linear forwards;
  }
  .trend-school { animation-delay: 0.14s; }
  .trend-dot { opacity: 0; animation: trendDotIn 0.01s linear forwards; animation-delay: 1.05s; }
}
@keyframes trendDraw { to { stroke-dashoffset: 0; } }
@keyframes trendDotIn { to { opacity: 1; } }

.trend-legend { display: flex; gap: 22px; margin-top: 16px; }
.tl-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.tl-swatch { width: 22px; height: 4px; border-radius: 2px; flex-shrink: 0; }
.tl-swatch.tl-school { background: var(--gold); }
.tl-swatch.tl-avg { background: var(--mist); }

/* Unified attribution / source caption (source + year), site-wide.
   Public Sans, caption-sized, brand slate on cream. Mirrored to a light tint
   for captions that sit on navy (see .calc-out-cap / .calc-disclaimer). */
.fig-cap {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--ink-soft);
  margin-top: 14px;
  text-wrap: pretty;
}

/* "How it compares" navy callout */
.compare-card {
  margin-top: 26px;
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.compare-card .school-h2 { color: #fff; }
.compare-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 4px;
}
.cmp { display: flex; flex-direction: column; gap: 6px; }
.cmp-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.cmp-cap { font-size: 14px; color: var(--mist); max-width: 26ch; text-wrap: pretty; }
.compare-card .fig-cap { color: var(--mist); }

.school-pager { margin-top: 8px; }

/* ---- stub sub-pages (cost / fees / aid) ---- */
.sys-stub { padding-top: 48px; padding-bottom: 72px; }
.sys-stub-card {
  background: #fff;
  border: 1px solid rgba(22, 69, 92, 0.12);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 640px;
}
.sys-stub-tag {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--mist-light);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 18px;
}
.sys-stub-text {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 26px;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .school-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .compare-stats { grid-template-columns: 1fr; gap: 18px; }
  .school-card { padding: 20px 16px 16px; }
  .sys-stub-card { padding: 28px 20px; }
  .trend-ylab, .trend-xlab { font-size: 15px; }
}

/* =====================================================================
   THE SYSTEM — comparison hub (cost / fees / aid)
   ===================================================================== */
.hub-subnav { background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,0.08); }
.hub-subnav .wrap {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding-top: 14px; padding-bottom: 14px;
}
.hub-subnav-map {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--mist); text-decoration: none; white-space: nowrap;
}
.hub-subnav-map:hover { color: #fff; }
.hub-subnav-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-left: auto; }
.hub-subnav-tabs a {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.01em; color: var(--mist); text-decoration: none;
  padding: 8px 14px; border-radius: 999px; min-height: 38px;
  display: inline-flex; align-items: center;
  transition: background 0.14s ease, color 0.14s ease;
}
.hub-subnav-tabs a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.hub-subnav-tabs a.on { color: var(--navy); background: var(--gold-bright); }

.hub-body { padding-top: 40px; padding-bottom: 56px; display: flex; flex-direction: column; gap: 28px; }
.hub-card {
  background: #fff; border: 1px solid rgba(22,69,92,0.12);
  border-radius: 14px; padding: 26px 26px 24px;
}
.hub-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 2.1vw, 26px); color: var(--navy); margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.hub-lead-sm { font-size: 15px; color: var(--ink-soft); margin: 0 0 18px; max-width: 70ch; text-wrap: pretty; }
.hub-lead-sm a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.hub-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-bottom: 16px;
}
.hub-card-head .hub-h2 { margin-bottom: 4px; }
.hub-card-head .hub-lead-sm { margin-bottom: 0; }

/* segmented toggle (residency / living) — same vocabulary as .res-toggle */
.seg-toggle {
  display: inline-flex; border: 1px solid var(--navy);
  border-radius: 999px; overflow: hidden; flex-shrink: 0; align-self: flex-start;
}
.seg-toggle button {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  color: var(--navy); background: #fff; border: none; cursor: pointer;
  padding: 9px 16px; min-height: 40px; letter-spacing: 0.01em; white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease;
}
.seg-toggle button + button { border-left: 1px solid rgba(22,69,92,0.25); }
.seg-toggle button.on { background: var(--navy); color: #fff; }

/* ---- sortable ranking tables — baked "Docket" look (V1) with wave-line
   row dividers (V3). The divider is a STATIC, seamless 96px tile: a stroke-only
   (transparent-background) wave, navy at low opacity, riding the very bottom
   edge of each row so the two adjacent row colors meet cleanly AT the line with
   no backing strip / band. ---- */
:root { --wave-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='6' viewBox='0 0 96 6'%3E%3Cpath d='M0 5.2 Q6 4.5 12 5.2 T24 5.2 T36 5.2 T48 5.2 T60 5.2 T72 5.2 T84 5.2 T96 5.2' fill='none' stroke='%2316455c' stroke-width='1' stroke-opacity='0.4'/%3E%3C/svg%3E"); }
/* gold top rule frames every System data-table card */
.hub-card:has(.rank-table), .school-table-card { border-top: 3px solid var(--gold); }
.rank-wrap { width: 100%; overflow-x: auto; }
.rank-table {
  width: 100%; border-collapse: collapse;
  font-variant-numeric: tabular-nums; font-family: var(--font-body);
}
.rank-table thead th {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em; color: #fff;
  background: var(--navy);
  text-align: left; padding: 11px 12px;
  cursor: pointer; user-select: none; white-space: nowrap; position: relative;
}
.rank-table thead th:first-child { border-radius: 4px 0 0 0; }
.rank-table thead th:last-child { border-radius: 0 4px 0 0; }
.rank-table thead th.rt-num { text-align: right; }
.rank-table thead th[data-key]::after {
  content: "\2195"; font-size: 10px; opacity: 0.55; margin-left: 5px;
  font-family: var(--font-mono);
}
.rank-table thead th.sorted-asc::after { content: "\2191"; opacity: 1; }
.rank-table thead th.sorted-desc::after { content: "\2193"; opacity: 1; }
/* gold sort-active indicator (gold text only ever on navy) */
.rank-table thead th.sorted-asc, .rank-table thead th.sorted-desc { color: var(--gold-bright); }
.rank-table thead th:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.rank-table tbody td {
  padding: 11px 12px;
  font-size: 14.5px; color: var(--ink); text-align: left; white-space: nowrap;
}
/* static wave-line divider rides the bottom of each row, seamless across cells */
.rank-table tbody tr {
  background-image: var(--wave-divider);
  background-repeat: repeat-x;
  background-position: left bottom;
}
.rank-table tbody tr:nth-child(even) { background-color: rgba(247, 241, 222, 0.55); }
.rank-table tbody td.rt-num { text-align: right; }
.rank-table tbody tr:hover { background-color: var(--mist-light); }
.rt-strong { font-family: var(--font-display); font-weight: 800; color: var(--navy); }
.rt-gap { color: #1f7a52; font-weight: 700; }
.rt-yr {
  display: inline-block; font-family: var(--font-body); font-size: 10.5px;
  color: var(--ink-soft); margin-left: 5px; font-weight: 500;
}
.rank-table thead th .rt-yr { color: var(--ink-soft); }
.rt-school { color: var(--navy); font-weight: 700; text-decoration: none; display: inline-flex; flex-direction: column; }
.rt-school:hover { color: var(--navy-3); }
.rt-school:hover .rt-school-full { text-decoration: underline; }
.rt-school-full { font-family: var(--font-body); font-weight: 400; font-size: 11px; color: var(--ink-soft); }
.fee-all-table tbody td, .fee-all-table thead th { padding-left: 9px; padding-right: 9px; }

/* ---- cost calculator ---- */
.calc-card { background: var(--navy); border-color: var(--navy); color: #fff; }
.calc-head { margin-bottom: 20px; }
.calc-card .hub-h2 { color: #fff; }
.calc-head .hub-lead-sm { color: var(--mist); margin-bottom: 0; }
.calc-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 26px; align-items: start; }
.calc-inputs { display: flex; flex-direction: column; gap: 18px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-label {
  font-family: var(--font-display); font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--mist);
}
.calc-select, .calc-num {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid rgba(255,255,255,0.3); border-radius: 9px;
  padding: 11px 13px; min-height: 44px; width: 100%;
}
.calc-num { max-width: 130px; }
.calc-hours-hint { font-size: 12.5px; color: var(--mist); }
.calc-card .seg-toggle { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.calc-card .seg-toggle button { background: transparent; color: var(--mist); }
.calc-card .seg-toggle button + button { border-left-color: rgba(255,255,255,0.2); }
.calc-card .seg-toggle button.on { background: var(--gold-bright); color: var(--navy); }
.calc-card .seg-3 { display: inline-flex; flex-wrap: wrap; }

.calc-output {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 20px 20px 18px;
}
.calc-out-head { display: flex; flex-direction: column; gap: 3px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.calc-out-uni { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #fff; }
.calc-out-tags { font-family: var(--font-body); font-size: 12px; color: var(--mist); }
.calc-lines { display: flex; flex-direction: column; }
.calc-line {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14.5px; color: var(--mist-light); font-variant-numeric: tabular-nums;
}
.calc-line-label .calc-sub { font-family: var(--font-body); font-size: 11px; color: var(--mist); display: block; margin-top: 2px; }
.calc-line-val { font-weight: 600; white-space: nowrap; }
.calc-line-muted { color: var(--mist); opacity: 0.7; }
.calc-line-total {
  margin-top: 8px; border-bottom: none; padding-top: 14px;
  font-family: var(--font-display); font-weight: 900; font-size: 16px; color: #fff;
}
.calc-line-total .calc-line-val { color: var(--gold-bright); font-size: 24px; }
.calc-disclaimer { margin-top: 18px; font-family: var(--font-body); font-size: 11.5px; line-height: 1.5; letter-spacing: 0.005em; color: var(--mist-light); max-width: 76ch; text-wrap: pretty; }
.calc-disclaimer .src { color: var(--mist-light); font-style: italic; }

/* ---- fees explained ---- */
.fee-def-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.fee-def { padding: 22px 22px 20px; }
.fee-def-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 10px; }
.fee-def-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); margin: 0; }
.fee-def-amt { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.fee-def-num { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--navy); font-variant-numeric: tabular-nums; }
.fee-def-unit { font-family: var(--font-body); font-size: 10.5px; color: var(--ink-soft); }
.fee-def-text { font-size: 14.5px; color: var(--ink-soft); margin: 0; text-wrap: pretty; }

/* W1 component-edge wave as the static bottom edge of the fee-definition cards
   (and the Financial-Aid net-price explainer below). These cards drop the
   hub-card box border entirely and instead take the advocacy priority-card
   treatment so the torn edge FLOWS the same way: gold top accent, soft
   drop-shadow for elevation, no side/bottom borders to clip the wave. Reuses
   the canonical advocacy-card (.pc-wave) tile EXACTLY — same path, gold #e0a92e
   stroke, 16px height — with a white fill to match the #fff card surface.
   background repeat-x tiles the 96px tile seamlessly across these wider cards;
   never stretched. Static by design (W1 never moves); like .pc-wave it stays a
   structural card edge under data-waves="off". */
.fee-def, .aid-intro {
  position: relative;
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
  filter: drop-shadow(0 2px 5px rgba(14, 52, 71, 0.08));
}
.fee-def::after, .aid-intro::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='16' viewBox='0 0 96 16'%3E%3Cpath d='M0 9 Q 12 3 24 9 T 48 9 T 72 9 T 96 9 L 96 0 L 0 0 Z' fill='%23ffffff'/%3E%3Cpath d='M0 9 Q 12 3 24 9 T 48 9 T 72 9 T 96 9' fill='none' stroke='%23e0a92e' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left top;
}
/* Only the bottom row of fee cards (the last two) tears with the W1 wave; the
   upper rows close with a straight hairline \u2014 still no side walls \u2014 so the grid
   breathes instead of every card carrying a wave. The aid-intro is a single
   card and keeps its wave. */
.fee-def:not(:nth-last-child(-n+2)) {
  border-bottom: 1px solid rgba(22, 69, 92, 0.14);
}
.fee-def:not(:nth-last-child(-n+2))::after { content: none; }

/* ---- financial aid ---- */
.aid-intro-lead {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(19px, 2.2vw, 24px);
  color: var(--navy); margin: 0 0 12px; letter-spacing: -0.01em;
}
.aid-intro .hub-lead-sm { margin-bottom: 0; }
.aid-explorer-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px 28px; flex-wrap: wrap; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid rgba(22,69,92,0.12); }
.aid-explorer-head .hub-h2 { margin: 0 0 10px; }
.aid-explorer-id { display: flex; flex-direction: column; min-width: 0; }
.aid-figure { display: flex; flex-direction: column; gap: 4px; }
.aid-pick { display: flex; flex-direction: column; gap: 6px; min-width: 240px; }
.aid-pick .calc-label { color: var(--ink-soft); }
.aid-pick .calc-select { color: var(--ink); border-color: rgba(22,69,92,0.25); }
.aid-explorer-grid { display: grid; grid-template-columns: minmax(0,0.92fr) minmax(0,1.08fr); gap: 30px; align-items: start; }
.aid-snapshot { display: flex; flex-direction: column; }
.aid-snap-head { display: flex; flex-direction: column; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid rgba(22,69,92,0.12); margin-bottom: 16px; }
.aid-snap-uni { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--navy); }
.aid-snap-np { font-family: var(--font-display); font-weight: 900; font-size: 38px; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; display: flex; flex-direction: column; gap: 4px; }
.aid-snap-np-cap { font-family: var(--font-body); font-size: 11.5px; font-weight: 400; color: var(--ink-soft); }
.aid-tiles { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-bottom: 18px; }
.aid-tile { display: flex; flex-direction: column; gap: 4px; background: var(--paper); border: 1px solid rgba(22,69,92,0.1); border-radius: 10px; padding: 13px 12px; }
.aid-tile-num { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--navy); font-variant-numeric: tabular-nums; }
.aid-tile-cap { font-size: 11.5px; color: var(--ink-soft); line-height: 1.25; }
.aid-tile-yr { margin-top: auto; padding-top: 6px; font-family: var(--font-body); font-size: 10.5px; font-weight: 500; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.aid-bars-wrap { margin-bottom: 4px; }
.aid-bars-title, .aid-chart-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--navy); margin: 0 0 10px; }
.aid-bars-yr { font-family: var(--font-body); font-weight: 500; font-size: 11px; color: var(--ink-soft); }
.aid-bars { width: 100%; height: auto; display: block; overflow: visible; }
.aid-bar-track { fill: rgba(22,69,92,0.08); }
.aid-bar-fill { fill: var(--navy-3); }
.aid-bar-lab { font-family: var(--font-body); font-size: 12px; font-weight: 500; fill: var(--ink-soft); }
.aid-bar-val { font-family: var(--font-body); font-size: 13px; font-weight: 700; fill: var(--navy); font-variant-numeric: tabular-nums; dominant-baseline: middle; }
.aid-bar-val-in { fill: #fff; }
.aid-bar-null { fill: var(--ink-soft); font-weight: 400; }
.trend-school-pt { fill: var(--gold); }
.trend-avg-pt { fill: var(--mist); }
@media (prefers-reduced-motion: no-preference) {
  .aid-bar-fill { transform-box: fill-box; transform-origin: left center; animation: aidBarIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards; }
}
@keyframes aidBarIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; }
  .aid-explorer-grid { grid-template-columns: 1fr; gap: 24px; }
  .fee-def-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hub-card { padding: 20px 16px 18px; }
  .hub-subnav-tabs { margin-left: 0; width: 100%; }
  .aid-tiles { grid-template-columns: 1fr; }
  .aid-snap-np { font-size: 32px; }
  .rank-table tbody td, .rank-table thead th { font-size: 13.5px; }
}
@media (max-width: 480px) {
  /* match the advocacy-card edge at phone widths: 12px tall, 72px tile */
  .fee-def::after, .aid-intro::after { height: 12px; bottom: -12px; background-size: 72px 12px; }
}

/* ---- source citations -> styled hyperlinks (site-wide) ----
   A footnote/source line treatment: Public Sans, caption-sized, brand slate at
   rest with a thin gold decorative underline; on hover/focus the text deepens
   to navy (#16455C) and the underline goes solid navy. Gold is used only as the
   thin underline rule (never as citation text — these sit on cream). */
.cite-link {
  font-family: var(--font-body);
  font-size: inherit;
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.cite-link:hover,
.cite-link:focus-visible {
  color: #16455C;
  text-decoration-color: #16455C;
  text-decoration-thickness: 1.5px;
}
.cite-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
@media (prefers-reduced-motion: no-preference) {
  .cite-link { transition: color 0.14s ease, text-decoration-color 0.14s ease, text-decoration-thickness 0.14s ease; }
}

/* calculator output source caption (sits on navy) */
.calc-out-cap {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: var(--mist-light);
}
/* citations on the navy calculator card read light, deepen to white on hover */
.calc-card .cite-link { color: var(--mist-light); text-decoration-color: var(--gold); }
.calc-card .cite-link:hover,
.calc-card .cite-link:focus-visible { color: #fff; text-decoration-color: #fff; }
.calc-card .cite-link:focus-visible { outline-color: var(--gold-bright); }
