/* ---------------------------------------------------------------
   Verdigris Register — tokens.
   Neutrals carry a slight green bias so they sit with the accent
   rather than reading as stock grey.
   --------------------------------------------------------------- */
:root {
  --paper:      #F6F7F4;
  --surface:    #FFFFFF;
  --surface-2:  #EFF1ED;
  --ink:        #101A18;
  --ink-2:      #3A4744;
  --ink-3:      #6B7873;
  --rule:       #D8DDD7;
  --rule-soft:  #E7EAE5;

  --verdigris:   #0A6B5C;
  --verdigris-2: #0E8874;

  /* Audit outcome scale. Content, not decoration, and deliberately
     separate from the accent. */
  --a-clean:   #0A6B5C;
  --a-unqual:  #5E9070;
  --a-qual:    #A87B32;
  --a-adverse: #C25E2E;
  --a-disc:    #A63D28;
  --a-none:    #C3CAC4;

  --shadow: 0 1px 2px rgba(16,26,24,.05), 0 8px 24px -12px rgba(16,26,24,.14);

  --serif: Charter, "Bitstream Charter", "Iowan Old Style", "Source Serif 4", "Palatino Linotype", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, "Liberation Mono", monospace;

  --r-sm: 2px;
  --r-md: 3px;

  --step--1: clamp(.76rem, .74rem + .1vw, .82rem);
  --step-0:  clamp(.94rem, .91rem + .14vw, 1rem);
  --step-1:  clamp(1.12rem, 1.05rem + .3vw, 1.28rem);
  --step-2:  clamp(1.4rem, 1.26rem + .6vw, 1.75rem);
  --step-3:  clamp(1.85rem, 1.6rem + 1.1vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.2vw, 3.9rem);

  --wrap: 1180px;
  /* Reading measure for prose pages and guides. At the body size this lands
     around 70 characters, which is the band running text should sit in. */
  --wrap-reading: 50rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:#0C1413; --surface:#131E1C; --surface-2:#182523;
    --ink:#E8EDE9; --ink-2:#B4C0BB; --ink-3:#7E8D87;
    --rule:#26332F; --rule-soft:#1D2A27;
    --verdigris:#35A38C; --verdigris-2:#4FBFA6;
    --a-clean:#35A38C; --a-unqual:#6FA684; --a-qual:#C9A155;
    --a-adverse:#D9825A; --a-disc:#D4674C; --a-none:#3A4744;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.7);
  }
}

/* Hello Elementor sets its own body font and resets; scope ours above it. */
body.sanatgov {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.55;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Drop UA and parent-theme heading resets to zero specificity so our
   component rules win without an arms race. */
body.sanatgov :where(h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote) {
  margin: 0;
  padding: 0;
}
body.sanatgov :where(ul, ol) { list-style: none; }

.sanatgov a { color: var(--verdigris); text-underline-offset: 2px; }
.sanatgov :focus-visible {
  outline: 2px solid var(--verdigris-2);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }

/* Reading width. Anything sharing a page with prose uses this so the left
   edges line up; a wider container sitting beside a narrower one is the most
   common cause of a page looking shifted. */
.wrap-reading { width: min(var(--wrap-reading), 100% - 2.5rem); }

/* --------------------------------------------------------------- masthead */
.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
  position: sticky; top: 0; z-index: 30;
}
.masthead-top {
  display: flex; align-items: center; gap: 1rem;
  min-height: 62px; flex-wrap: wrap;
}

/* Skip link: present for keyboard users, out of the way otherwise. */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--verdigris); color: #fff; padding: .6rem 1rem;
  border-radius: 0 0 var(--r-md) 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------
   Primary navigation. One line at desktop; on narrow screens it
   becomes a horizontally scrollable row rather than a disclosure
   menu, which keeps every destination one tap away and needs no
   JavaScript.
   --------------------------------------------------------------- */
.mastnav { border-top: 1px solid var(--rule-soft); background: var(--surface); }
.mastnav ul {
  display: flex; gap: .25rem; align-items: center;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mastnav ul::-webkit-scrollbar { display: none; }
.mastnav li { flex: none; }
.mastnav a {
  display: block; white-space: nowrap; text-decoration: none;
  color: var(--ink-2); font-size: var(--step--1);
  padding: .7rem .8rem; border-bottom: 2px solid transparent;
}
.mastnav a:hover { color: var(--verdigris); }
.mastnav a[aria-current="page"] {
  color: var(--verdigris); border-bottom-color: var(--verdigris);
}
@media (min-width: 561px) { .mastnav a { padding-inline: 1rem; } }
.wordmark {
  display: flex; align-items: baseline; gap: .5rem;
  font-family: var(--serif); font-size: var(--step-1);
  letter-spacing: -.015em; margin-right: auto; text-decoration: none;
  color: var(--ink);
}
.wordmark b { font-weight: 600; }
.wordmark span {
  font-family: var(--sans); font-size: var(--step--1);
  color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase;
}
.indep {
  font-size: var(--step--1); color: var(--ink-3);
  border: 1px solid var(--rule); border-radius: var(--r-sm); padding: .2rem .5rem;
}

/* On a phone the masthead is two rows. Sticking it would eat a real share
   of the viewport on a site that is mostly long tables, so it scrolls away
   and the independence badge is dropped to keep the top row on one line. */
@media (max-width: 560px) {
  .indep { display: none; }
  .masthead { position: static; }
  .masthead-top { min-height: 52px; }
}

/* --------------------------------------------------------------- hero */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 1.5rem; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: var(--step-4); line-height: 1.02; letter-spacing: -.028em;
  margin-bottom: .6rem; text-wrap: balance; max-width: 20ch;
}
.hero h1 em { font-style: normal; color: var(--verdigris); }
.hero .lede {
  color: var(--ink-2); font-size: var(--step-1);
  max-width: 58ch; margin-bottom: 2rem; text-wrap: pretty;
}

.searchbar {
  display: flex; align-items: center; gap: .75rem;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: .5rem .5rem .5rem 1rem;
  box-shadow: var(--shadow);
  transition: border-color .15s;
}
.searchbar:focus-within { border-color: var(--verdigris); }
.searchbar svg { flex: none; color: var(--ink-3); }
#gov-q {
  flex: 1; border: 0; background: none; color: var(--ink);
  font: inherit; font-size: var(--step-1); padding: .55rem 0;
}
#gov-q::placeholder { color: var(--ink-3); }
#gov-q:focus { outline: none; }
.kbd {
  font-family: var(--mono); font-size: var(--step--1); color: var(--ink-3);
  border: 1px solid var(--rule); border-bottom-width: 2px;
  border-radius: var(--r-md); padding: .15rem .4rem; background: var(--surface-2);
}

.facets { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.facet {
  font: inherit; font-size: var(--step--1);
  background: none; color: var(--ink-2); cursor: pointer;
  border: 1px solid var(--rule); border-radius: var(--r-sm); padding: .3rem .65rem;
  transition: background .12s, color .12s, border-color .12s;
  text-decoration: none;
}
.facet:hover { border-color: var(--verdigris); color: var(--verdigris); }
.facet[aria-pressed="true"] {
  background: var(--verdigris); border-color: var(--verdigris); color: #fff;
}
.facet .n { opacity: .6; }

/* --------------------------------------------------------------- figures */
.figures {
  display: grid; gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--r-md);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 2.5rem; overflow: hidden;
}
.figure { background: var(--surface); padding: 1.1rem 1.2rem; }
.figure b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: var(--step-3); line-height: 1; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.figure span {
  display: block; margin-top: .45rem;
  font-family: var(--mono); font-size: var(--step--1);
  color: var(--ink-3);
}

/* --------------------------------------------------------------- ledger */
.ledger { display: inline-flex; gap: 2px; vertical-align: middle; }
.ledger i {
  display: block; width: 9px; height: 20px; border-radius: 1px;
  background: var(--a-none);
}
.ledger i[data-o="clean"]   { background: var(--a-clean); }
.ledger i[data-o="unqual"]  { background: var(--a-unqual); }
.ledger i[data-o="qual"]    { background: var(--a-qual); }
.ledger i[data-o="adverse"] { background: var(--a-adverse); }
.ledger i[data-o="disc"]    { background: var(--a-disc); }

.ledger-lg { display: grid; gap: 4px; }
.ledger-lg .bar {
  height: 54px; border-radius: var(--r-sm); background: var(--a-none);
}
.ledger-lg .bar[data-o="clean"]   { background: var(--a-clean); }
.ledger-lg .bar[data-o="unqual"]  { background: var(--a-unqual); }
.ledger-lg .bar[data-o="qual"]    { background: var(--a-qual); }
.ledger-lg .bar[data-o="adverse"] { background: var(--a-adverse); }
.ledger-lg .bar[data-o="disc"]    { background: var(--a-disc); }
.ledger-lg .yr {
  font-family: var(--mono); font-size: var(--step--1);
  color: var(--ink-3); margin-top: .35rem; display: block; text-align: center;
}

.legend { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; font-size: var(--step--1); color: var(--ink-3); }
.legend span { display: inline-flex; align-items: center; gap: .35rem; }
.legend i { width: 10px; height: 10px; border-radius: 1px; display: block; }

/* --------------------------------------------------------------- results */
.results-head {
  display: flex; align-items: baseline; gap: 1rem;
  margin: 2.5rem 0 .75rem; border-bottom: 1px solid var(--rule);
  padding-bottom: .6rem; flex-wrap: wrap;
}
.results-head h2 {
  font-family: var(--serif); font-weight: 500; font-size: var(--step-2);
  letter-spacing: -.02em;
}
.count { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-3); margin-right: auto; }

.tablewrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--r-md); background: var(--surface); }
table.rows { width: 100%; border-collapse: collapse; min-width: 720px; }
table.rows th {
  text-align: left; font-family: var(--mono); font-weight: 400;
  font-size: var(--step--1); color: var(--ink-3);
  letter-spacing: .04em; text-transform: uppercase;
  padding: .7rem 1rem; border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
table.rows td { padding: .7rem 1rem; border-bottom: 1px solid var(--rule-soft); vertical-align: middle; }
table.rows tr:last-child td { border-bottom: 0; }
table.rows tbody tr:hover { background: var(--surface-2); }
.ent-name { font-family: var(--serif); font-size: var(--step-1); letter-spacing: -.012em; }
.ent-name a { text-decoration: none; color: var(--ink); }
.ent-name a:hover { color: var(--verdigris); }
.ent-name mark { background: color-mix(in srgb, var(--verdigris) 22%, transparent); color: inherit; border-radius: 1px; }
.ent-meta { font-size: var(--step--1); color: var(--ink-3); margin-top: .1rem; }
.col-type { font-size: var(--step--1); color: var(--ink-2); white-space: nowrap; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: var(--step--1); color: var(--ink-2); text-align: right; }
.empty { padding: 3rem 1rem; text-align: center; color: var(--ink-3); }

/* --------------------------------------------------------------- entity */
.entity { padding: 2rem 0 4rem; display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; }
@media (max-width: 900px) { .entity { grid-template-columns: minmax(0, 1fr); } }

.crumbs { font-size: var(--step--1); color: var(--ink-3); margin-bottom: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--verdigris); }

.entity h1 {
  font-family: var(--serif); font-weight: 500; font-size: var(--step-3);
  line-height: 1.06; letter-spacing: -.025em; text-wrap: balance;
}
.entity .sub { color: var(--ink-3); font-size: var(--step--1); margin-top: .5rem; }
.entity h2 {
  font-family: var(--mono); font-weight: 400; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3);
  margin: 2.25rem 0 .75rem; padding-bottom: .4rem; border-bottom: 1px solid var(--rule);
}
.entity .body p { color: var(--ink-2); max-width: 65ch; margin-top: .9rem; }
.entity .body p:first-child { margin-top: 1.25rem; }

.card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-md); padding: 1.1rem 1.25rem; }

dl.kv { display: grid; grid-template-columns: minmax(88px, auto) 1fr; gap: .55rem 1.1rem; }
dl.kv dt { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-3); }
dl.kv dd { color: var(--ink-2); overflow-wrap: anywhere; }

.pill {
  display: inline-block; font-family: var(--mono); font-size: var(--step--1);
  padding: .18rem .5rem; border-radius: var(--r-sm); color: #fff; white-space: nowrap;
}
.pill[data-o="clean"]   { background: var(--a-clean); }
.pill[data-o="unqual"]  { background: var(--a-unqual); }
.pill[data-o="qual"]    { background: var(--a-qual); }
.pill[data-o="adverse"] { background: var(--a-adverse); }
.pill[data-o="disc"]    { background: var(--a-disc); }
.pill[data-o="none"]    { background: none; color: var(--ink-3); border: 1px solid var(--rule); }

.trend {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: var(--step--1);
  padding: .2rem .55rem; border-radius: var(--r-sm); border: 1px solid var(--rule);
}
.trend[data-t="improving"] { color: var(--a-clean); border-color: color-mix(in srgb, var(--a-clean) 45%, transparent); }
.trend[data-t="declining"] { color: var(--a-disc); border-color: color-mix(in srgb, var(--a-disc) 45%, transparent); }
.trend[data-t="stable"]    { color: var(--ink-3); }

.audit-meta { margin-top: .9rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.note { font-size: var(--step--1); color: var(--ink-3); max-width: 65ch; }

.hl { display: grid; gap: 1px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r-md); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.hl > div { background: var(--surface); padding: .9rem 1rem; outline: 1px solid var(--rule); }
.hl dt { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-3); }
.hl dd {
  margin-top: .3rem; font-family: var(--serif); font-size: var(--step-2);
  letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.hl .neg { color: var(--a-disc); }
.spark { display: block; margin-top: .4rem; }

.roster { display: grid; }
.role { display: grid; grid-template-columns: minmax(150px, 30%) 1fr; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--rule-soft); }
.role:last-child { border-bottom: 0; }
.role dt { font-family: var(--mono); font-size: var(--step--1); color: var(--ink-3); }
.role dd span { display: block; }
@media (max-width: 640px) { .role { grid-template-columns: 1fr; gap: .15rem; } }

.linkrow { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.linkrow a {
  font-size: var(--step--1); text-decoration: none;
  border: 1px solid var(--rule); border-radius: var(--r-sm); padding: .35rem .7rem;
  color: var(--ink-2);
}
.linkrow a:hover { border-color: var(--verdigris); color: var(--verdigris); }

/* The logo sits on its own panel: many marks are white-on-transparent,
   built for dark site headers, and vanish on a white card. */
.logo-panel {
  background: var(--surface-2); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: 1.25rem;
  display: grid; place-items: center; min-height: 120px;
}
.logo-panel img { max-width: 100%; height: auto; display: block; }
.aside { display: grid; gap: 1.25rem; position: sticky; top: 78px; }
@media (max-width: 900px) { .aside { position: static; } }

/* ---------------------------------------------------------------
   Prose pages. The directory is dense by design; policy and
   methodology pages are read rather than scanned, so the measure
   opens up and the leading goes with it.
   --------------------------------------------------------------- */
/* A reading page is narrower than the directory. Constraining the container
   and letting the content fill it keeps the measure right without leaving a
   column of text stranded against the left of a 1180px page. */
.prose-page {
  width: min(var(--wrap-reading), 100% - 2.5rem);
  padding: 2rem 0 4rem;
}
.prose-page h1 {
  font-family: var(--serif); font-weight: 500; font-size: var(--step-3);
  line-height: 1.06; letter-spacing: -.025em; text-wrap: balance;
}
.prose-page .sub { color: var(--ink-3); font-size: var(--step--1); margin-top: .5rem; }

/* Reading text is set a step larger than the directory's interface type,
   and capped at a real measure. The cap is on the running text only, so
   headings, tables and figures still fill the container and the page keeps
   its presence. `ch` is used rather than pixels because it tracks the font
   size: change the size and the measure stays correct. */
.prose { margin-top: 2rem; font-size: 1.0625rem; }
.prose > * + * { margin-top: 1.1rem; }
.prose p, .prose li { color: var(--ink-2); line-height: 1.65; }
.prose p, .prose ul, .prose ol, .prose blockquote { max-width: 68ch; }
.prose h2 {
  font-family: var(--serif); font-weight: 500; font-size: var(--step-2);
  color: var(--ink); letter-spacing: -.02em; line-height: 1.15;
  margin-top: 2.5rem; padding-bottom: .4rem; border-bottom: 1px solid var(--rule);
}
.prose h3 {
  font-family: var(--sans); font-weight: 600; font-size: var(--step-1);
  color: var(--ink); margin-top: 1.75rem;
}
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .4rem; }
.prose a { text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.prose th, .prose td { text-align: left; padding: .55rem .75rem; border-bottom: 1px solid var(--rule-soft); }
.prose th { font-family: var(--mono); font-weight: 400; color: var(--ink-3); }
.prose blockquote {
  border-left: 2px solid var(--verdigris); padding-left: 1rem;
  margin: 0; color: var(--ink-2);
}

/* ---------------------------------------------------------------
   Guides. Cards earn their elevation here: each is a discrete
   destination, unlike the directory rows which are one continuous
   scannable list.
   --------------------------------------------------------------- */
.guide-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 2rem;
}
.guide-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .15s;
}
.guide-card:hover { border-color: var(--verdigris); }
.guide-thumb { display: block; background: var(--surface-2); line-height: 0; }
.guide-thumb img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.guide-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.guide-kicker {
  font-family: var(--mono); font-size: var(--step--1); color: var(--ink-3);
  text-transform: uppercase; letter-spacing: .06em;
}
.guide-card h2 {
  font-family: var(--serif); font-weight: 500; font-size: var(--step-1);
  line-height: 1.2; letter-spacing: -.015em; text-wrap: balance;
}
.guide-card h2 a { color: var(--ink); text-decoration: none; }
.guide-card:hover h2 a { color: var(--verdigris); }
.guide-card p { color: var(--ink-2); font-size: var(--step--1); line-height: 1.55; }
.guide-meta {
  font-family: var(--mono); font-size: var(--step--1); color: var(--ink-3);
  margin-top: auto; padding-top: .5rem;
}

.related-head {
  font-family: var(--mono); font-weight: 400; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3);
  margin: 2.5rem 0 .75rem; padding-bottom: .4rem; border-bottom: 1px solid var(--rule);
}

/* A guide's own figures, reusing the directory's tabular treatment. */
.prose .stat-row {
  display: grid; gap: 1px; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--r-md); overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 1.5rem;
}
.prose .stat-row > div { background: var(--surface); padding: .9rem 1rem; outline: 1px solid var(--rule); }
.prose .stat-row b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: var(--step-2); line-height: 1; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; color: var(--ink);
}
.prose .stat-row span {
  display: block; margin-top: .4rem; font-family: var(--mono);
  font-size: var(--step--1); color: var(--ink-3);
}

/* --------------------------------------------------------------- footer */
.site-foot {
  margin-top: 3rem; border-top: 1px solid var(--rule);
  background: var(--surface); padding: 2rem 0 3rem;
}
.site-foot p { color: var(--ink-3); font-size: var(--step--1); max-width: 72ch; }
.site-foot p + p { margin-top: .75rem; }

.foot-cols {
  display: grid; gap: 2rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  padding-bottom: 2rem; margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule);
}
.foot-cols h2 {
  font-family: var(--mono); font-weight: 400; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3);
  padding-bottom: .5rem; margin-bottom: .75rem;
  border-bottom: 1px solid var(--rule-soft);
}
.foot-cols ul { display: grid; gap: .4rem; }
.foot-cols a {
  font-size: var(--step--1); color: var(--ink-2); text-decoration: none;
  line-height: 1.4;
}
.foot-cols a:hover { color: var(--verdigris); text-decoration: underline; }
.foot-cols .n {
  font-family: var(--mono); color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

/* The closing note is centred. The paragraphs keep their 72ch measure, so
   margin-inline centres the block itself and text-align centres within it;
   text-align alone would leave a left-aligned block of centred lines. */
.foot-note { text-align: center; }
.foot-note p { margin-inline: auto; }

.foot-meta { margin-top: 1.25rem; font-family: var(--mono); }

.pager { display: flex; gap: .5rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.pager .page-numbers {
  border: 1px solid var(--rule); border-radius: var(--r-sm);
  padding: .35rem .7rem; text-decoration: none; color: var(--ink-2);
  font-size: var(--step--1);
}
.pager .page-numbers.current { background: var(--verdigris); border-color: var(--verdigris); color: #fff; }
.pager .page-numbers:hover { border-color: var(--verdigris); }

/* Search is progressive: the table renders server-side, and JS only
   filters it. Without JS everything still works via links. */
.js-only { display: none; }
.has-js .js-only { display: revert; }
.has-js .no-js-only { display: none; }
