/* Mighty Andy Insights — shared stylesheet for every page generated by
   scripts/build-insights.mjs. Tokens mirror index.html's :root; keep them in
   sync if the brand palette changes.

   The product pages are loud (Bebas caps, split heroes, big illustrations).
   These pages are deliberately calmer: the words carry the experience, and
   the brand shows up in the details — Lucida Bright headlines, Courier
   labels, the red rule, the report-style finding band, and Andy himself. */

@font-face {
  font-family: 'MA Lucida Bright';
  src: url('/fonts/lucida-bright.ttf') format('truetype');
  font-display: swap;
}

:root {
  --red: #D94F3B;
  --red-dark: #B33A28;
  --red-soft: #E8705E;
  --paper: #F5F0E8;
  --paper-dark: #E8E0D0;
  --paper-mid: #EDE7D9;
  --charcoal: #2A2520;
  --charcoal-mid: #4A4540;
  --grey: #8A8480;
  --grey-light: #C8C0B8;
  --cream: #FAF7F2;
  --mark-supported: #8DC63F;
  --mark-open: #FAAA49;
  --mark-stop: #D8503A;

  --serif: 'MA Lucida Bright', 'Lucida Bright', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'Courier Prime', 'Courier New', monospace;
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;

  /* Reading measure, and the wider track tables and specimens may use. */
  --measure: 680px;
  --wide: 860px;
  --gutter: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
}

/* Same paper grain as the homepage. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

img { max-width: 100%; height: auto; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--paper);
  color: var(--charcoal);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 13px;
}
.skip-link:focus { left: 8px; }

/* ── NAV — the homepage bar, as classes ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  padding: 0 48px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-nav-brand img { width: 32px; height: 32px; display: block; flex-shrink: 0; }
.site-nav-brand span {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--paper);
}
.site-nav-links { display: flex; gap: 24px; align-items: center; }
.site-nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
}
.site-nav-links a:hover,
.site-nav-links a[aria-current] { color: var(--paper); }

/* ── SHARED PIECES ── */
.wrap {
  max-width: calc(var(--measure) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-wide {
  max-width: calc(1040px + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.crumbs li + li::before {
  content: '/';
  margin: 0 10px;
  color: var(--grey-light);
}
.crumbs a { color: var(--grey); text-decoration: none; }
.crumbs a:hover { color: var(--red); }
.crumbs [aria-current] { color: var(--charcoal-mid); }

/* The sub-hero label from the homepage: red dash, Courier caps. */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.label a { color: inherit; text-decoration: none; }
.label a:hover { text-decoration: underline; text-underline-offset: 3px; }
.label .label-muted { color: var(--grey); }

.avatar {
  display: block;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--paper-dark);
  object-fit: cover;
  flex-shrink: 0;
}

/* ── ARTICLE HEADER ── */
.article-head { padding-top: 52px; }
.article-head .crumbs { margin-bottom: 44px; }
.article-title {
  font-family: var(--serif);
  font-weight: normal;
  font-size: clamp(36px, 5.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 18px 0 22px;
  text-wrap: balance;
}
.standfirst {
  font-size: clamp(19px, 2.3vw, 22px);
  line-height: 1.5;
  font-weight: 300;
  color: var(--charcoal-mid);
  text-wrap: pretty;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--paper-dark);
  border-bottom: 1px solid var(--paper-dark);
}
.byline-name { font-size: 15px; font-weight: 500; }
.byline-name a { color: var(--charcoal); text-decoration: none; }
.byline-name a:hover { color: var(--red); }
.byline-name span { font-weight: 300; color: var(--charcoal-mid); }
.byline-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey);
  margin-top: 3px;
}

.hero-figure { margin: 36px 0 0; }

/* ── ARTICLE BODY — long-form reading ── */
.prose {
  font-size: 18px;
  line-height: 1.72;
  color: var(--charcoal);
  padding-top: 40px;
  overflow-wrap: break-word;
}
.prose > * + * { margin-top: 1.2em; }
.prose p { text-wrap: pretty; }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }

.prose a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.prose a:hover { color: var(--red-dark); }

.prose h2 {
  font-family: var(--serif);
  font-weight: normal;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 2.3em;
  text-wrap: balance;
}
.prose h2::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-bottom: 20px;
}
.prose h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2em;
}
.prose h4 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2em;
}
.prose h2 + *, .prose h3 + *, .prose h4 + * { margin-top: 0.8em; }
.prose :is(h2, h3, h4) { scroll-margin-top: 80px; position: relative; }

/* Section links, for anyone quoting a specific part of a piece. */
.heading-anchor {
  margin-left: 0.35em;
  color: var(--grey-light);
  text-decoration: none !important;
  font-family: var(--mono);
  font-size: 0.7em;
  opacity: 0;
  transition: opacity 0.15s;
}
.prose :is(h2, h3):hover .heading-anchor,
.heading-anchor:focus { opacity: 1; }
@media (hover: none) { .heading-anchor { display: none; } }

.prose ul,
.prose ol { padding-left: 1.6em; }
.prose li + li { margin-top: 0.5em; }
.prose ul { list-style: none; }
.prose ul > li { position: relative; }
.prose ul > li::before {
  content: '—';
  position: absolute;
  left: -1.6em;
  color: var(--red);
}
.prose ol > li::marker {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.9em;
  color: var(--red);
}
.prose ol > li { padding-left: 0.3em; }

.prose code {
  font-family: var(--mono);
  font-size: 0.92em;
  background: var(--paper-dark);
  padding: 1px 6px;
  border-radius: 2px;
}
.prose pre {
  background: var(--charcoal);
  color: var(--paper);
  padding: 20px 24px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}
.prose pre code { background: none; padding: 0; color: inherit; }

.prose blockquote {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 24px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--charcoal);
}
.prose blockquote p + p { margin-top: 0.8em; }
.prose blockquote footer {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey);
}
.prose blockquote cite { font-style: normal; }

.prose hr {
  border: 0;
  text-align: center;
  margin: 2.6em 0;
  height: auto;
}
.prose hr::after {
  content: '✦   ✦   ✦';
  white-space: pre;
  color: var(--red);
  font-size: 12px;
}

.prose figure img { display: block; width: 100%; }
.prose figcaption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: var(--grey);
}

/* Wider than the reading column where the viewport allows: tables and
   specimens need the room more than paragraphs do. */
.wide {
  width: min(var(--wide), calc(100vw - 2 * var(--gutter)));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 1.8em !important; margin-bottom: 0.6em; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  line-height: 1.5;
}
.prose th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
  color: var(--charcoal-mid);
  padding: 0 16px 10px 0;
  border-bottom: 2px solid var(--charcoal);
  vertical-align: bottom;
}
.prose td {
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid var(--paper-dark);
  vertical-align: top;
  min-width: 150px;
}
.prose td:first-child { font-weight: 500; }
.prose table caption {
  caption-side: bottom;
  text-align: left;
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--grey);
}

/* ── CALLOUTS (::: containers) ── */
.callout {
  background: var(--paper);
  border-left: 3px solid var(--red);
  padding: 22px 26px;
  font-size: 16.5px;
  line-height: 1.62;
  margin-top: 2em !important;
  margin-bottom: 0.4em;
}
.callout > * + * { margin-top: 0.8em; }
.callout-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.callout ul > li::before { left: -1.4em; }
.callout ul, .callout ol { padding-left: 1.4em; }

/* Where the product genuinely relates — set apart, not shouted. */
.callout-andy { border-left-color: var(--charcoal); }
.callout-andy .callout-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal-mid);
}
.callout-andy .callout-label img { width: 28px; height: 28px; }

/* A worked example, e.g. a better-phrased clarification question. */
.example {
  border-left: 3px solid var(--grey-light);
  padding: 2px 0 2px 24px;
}
.example + .example { margin-top: 1.4em; }
.example-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.example-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
}

/* ── FINDING SPECIMENS — the report band from the homepage ── */
.finding {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 22px;
  align-items: center;
  background: var(--charcoal);
  padding: 24px 28px;
}
.finding-mark img { display: block; width: 40px; height: 40px; object-fit: contain; margin: 0 auto; }
.finding-mark.stop img { width: 44px; height: 44px; }
.finding-lines { font-family: var(--mono); font-size: 15px; line-height: 1.65; color: rgba(245,240,232,0.78); }
.finding-lines .finding-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 1.5px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 4px;
}
/* The unmarked version: a single confident field, the thing to be wary of. */
.finding-flat {
  display: block;
  background: #fff;
  border: 1px solid var(--grey-light);
  box-shadow: 3px 3px 0 var(--paper-dark);
  padding: 16px 20px;
}
.finding-flat .finding-lines { color: var(--charcoal); }
.finding-flat .finding-name { font-family: var(--mono); font-size: 16px; font-weight: 700; letter-spacing: 0; text-transform: none; color: var(--charcoal); margin: 0; }

/* ── ARTICLE FOOT ── */
.signoff {
  margin-top: 56px;
  font-family: var(--serif);
}
.signoff-line { font-size: 20px; color: var(--charcoal-mid); }
.signoff-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 40px;
  line-height: 1.1;
  margin-top: 4px;
  color: var(--charcoal);
}
.signoff-name img { width: 54px; height: auto; transform: translateY(4px) rotate(-4deg); }

.sources {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--paper-dark);
}
.sources-title,
.section-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.sources ol {
  padding-left: 1.6em;
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal-mid);
}
.sources li + li { margin-top: 8px; }
.sources li::marker { font-family: var(--mono); font-size: 13px; color: var(--grey); }
.sources a {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--grey-light);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.sources a:hover { text-decoration-color: var(--red); }
.sources .source-publisher { color: var(--grey); }

/* The columnist box: photo in a circle, name, role, bio. */
.author-card {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 26px;
  align-items: start;
  padding: 30px 0;
  border-top: 2px solid var(--charcoal);
  border-bottom: 1px solid var(--paper-dark);
}
.author-card .avatar { width: 104px; height: 104px; }
.author-card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}
.author-card-name {
  font-family: var(--serif);
  font-weight: normal;
  font-size: 30px;
  line-height: 1.1;
  margin-top: 6px;
}
.author-card-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey);
  margin-top: 4px;
}
.author-card-bio {
  font-size: 16px;
  line-height: 1.62;
  font-weight: 300;
  color: var(--charcoal-mid);
  margin-top: 14px;
  max-width: 56ch;
}
.author-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
}
.author-card-links a { color: var(--red); text-decoration: none; }
.author-card-links a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* The quiet product note. Paper, a red rule, one link. */
.cta {
  margin-top: 48px;
  background: var(--paper);
  border-top: 2px solid var(--red);
  padding: 28px 30px 30px;
}
.cta-heading {
  font-family: var(--display);
  font-weight: normal;
  font-size: 26px;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-body {
  font-size: 16px;
  line-height: 1.62;
  font-weight: 300;
  color: var(--charcoal-mid);
  max-width: 58ch;
}
.cta-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.cta-link:hover { color: var(--red-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ── LISTS OF PIECES (related, hub, topic) ── */
.related { margin-top: 72px; padding-bottom: 24px; }
.piece-list { list-style: none; border-top: 1px solid var(--grey-light); }
.piece {
  padding: 26px 0;
  border-bottom: 1px solid var(--paper-dark);
}
.piece .label { font-size: 10px; letter-spacing: 2.5px; }
.piece-title {
  font-family: var(--serif);
  font-weight: normal;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.18;
  margin-top: 10px;
  text-wrap: balance;
}
.piece-title a { color: var(--charcoal); text-decoration: none; }
.piece-title a:hover { color: var(--red-dark); }
.piece-dek {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--charcoal-mid);
  margin-top: 8px;
  max-width: 62ch;
}
.piece-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey);
  margin-top: 10px;
}
.more-links { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 24px; }
.more-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.more-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── HUB & TOPIC PAGES ── */
.hub-head { padding-top: 52px; padding-bottom: 8px; }
.hub-head .crumbs { margin-bottom: 44px; }
.hub-title {
  font-family: var(--serif);
  font-weight: normal;
  font-size: clamp(38px, 5.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
.hub-intro {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 300;
  color: var(--charcoal-mid);
  max-width: 60ch;
}

.hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  margin-top: 56px;
  padding-bottom: 96px;
}
.hub-aside > section + section { margin-top: 48px; }

.plain-list { list-style: none; }
.plain-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--paper-dark);
  font-size: 15px;
  line-height: 1.5;
}
.plain-list li:first-child { border-top: 1px solid var(--grey-light); }
.plain-list a { color: var(--charcoal); text-decoration: none; }
.plain-list a:hover { color: var(--red-dark); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.plain-list .count { font-family: var(--mono); font-size: 12px; color: var(--grey); margin-left: 6px; }
.desk-list li { color: var(--charcoal-mid); font-weight: 300; }
.aside-note { font-size: 13px; line-height: 1.55; color: var(--grey); margin-top: 12px; }
.aside-note a { color: var(--red); text-underline-offset: 3px; }

.questions-block { margin-top: 64px; }
.questions-list li { font-size: 16px; }

.about-andy {
  background: var(--charcoal);
  color: var(--paper);
  padding: 72px 0;
}
.about-andy-inner {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 44px;
  align-items: center;
}
.about-andy .avatar { width: 168px; height: 168px; box-shadow: 0 0 0 6px rgba(245,240,232,0.08); }
.about-andy .label { color: var(--red-soft); }
.about-andy .label::before { background: var(--red-soft); }
.about-andy h2 {
  font-family: var(--serif);
  font-weight: normal;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  margin: 14px 0 16px;
}
.about-andy p {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(245,240,232,0.74);
  max-width: 62ch;
}
.about-andy a { color: var(--paper); text-decoration-color: var(--red-soft); text-underline-offset: 3px; }

/* ── FOOTER — the homepage footer, plus the Insights link ── */
.site-footer {
  background: var(--charcoal);
  padding: 48px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.site-footer-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--paper);
}
.site-footer-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(245,240,232,0.4);
  line-height: 1.8;
}
.site-footer-mono a { color: inherit; text-decoration: none; }
.site-footer-mono a:hover { color: var(--paper); }
.site-footer-right { text-align: right; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hub-grid { grid-template-columns: 1fr; gap: 56px; }
  .site-footer { flex-direction: column; text-align: center; padding: 40px 24px; }
  .site-footer-right { text-align: center; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .site-nav { padding: 0 16px; }
  .site-nav-brand { gap: 10px; }
  .site-nav-brand span { font-size: 17px; letter-spacing: 2px; }
  .site-nav-links { gap: 14px; }
  .site-nav-links .nav-optional { display: none; }
  .article-head, .hub-head { padding-top: 32px; }
  .about-andy { padding: 56px 0; }
  .article-head .crumbs, .hub-head .crumbs { margin-bottom: 32px; }
  .prose { font-size: 17.5px; line-height: 1.68; }
  .callout { padding: 20px 20px; }
  .finding { grid-template-columns: 34px 1fr; gap: 0 16px; padding: 20px; }
  .finding-mark img { width: 32px; height: 32px; }
  .author-card { grid-template-columns: 1fr; gap: 18px; }
  .author-card .avatar { width: 88px; height: 88px; }
  .cta { padding: 24px 22px; }
  .about-andy-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-andy .avatar { width: 120px; height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Bid teams print things. Give them the article and its sources. */
@media print {
  body { background: #fff; }
  body::before, .site-nav, .site-footer, .cta, .related, .heading-anchor, .skip-link { display: none !important; }
  .prose { font-size: 11.5pt; }
  .prose a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 9pt; color: #555; overflow-wrap: anywhere; }
  .wide { width: 100%; left: 0; transform: none; }
  .finding { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
