/* ybooks.app — mobile-first, text-first.
   One stylesheet, no framework, no webfonts: the first paint on a phone on a
   train is the feature, and a font request is the single easiest way to lose it. */

:root {
  --paper:      #faf7f2;
  --paper-2:    #f3eee5;
  --ink:        #1c1814;
  --ink-2:      #4a423a;
  --ink-3:      #7d7266;
  --rule:       #e2d9cb;
  --accent:     #8c3b2e;
  --accent-2:   #a8503f;
  --good:       #2f6b4f;
  --warn:       #8a6a1f;
  --fresh-new:  #2f9e5b;
  --fresh-mid:  #b58a1c;
  --fresh-old:  #a8683c;
  --shadow:     0 1px 2px rgba(28, 24, 20, .05), 0 4px 16px rgba(28, 24, 20, .04);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

  --measure: 34rem;
  --gutter: 1.25rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:    #15130f;
    --paper-2:  #1d1a15;
    --ink:      #ece5da;
    --ink-2:    #c2b8aa;
    --ink-3:    #8d8377;
    --rule:     #302b23;
    --accent:   #e09b7d;
    --accent-2: #eeb094;
    --good:     #7fc39f;
    --warn:     #d3b263;
    --shadow:   0 1px 2px rgba(0, 0, 0, .3), 0 4px 16px rgba(0, 0, 0, .25);
  }
}

* { box-sizing: border-box; }

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

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

a { color: var(--accent); text-underline-offset: .18em; text-decoration-thickness: .06em; }
a:hover { color: var(--accent-2); }

.skip {
  position: absolute; left: -9999px;
  background: var(--accent); color: #fff; padding: .6rem 1rem; border-radius: 4px;
}
.skip:focus { left: .5rem; top: .5rem; z-index: 20; }

/* ---------- chrome ---------- */

/* One line on a phone: the nav scrolls sideways rather than wrapping to three
   rows, which at 393px cost 130px of a sticky bar that never goes away. */
header.site {
  display: flex; align-items: center; gap: 1rem;
  padding: .6rem var(--gutter);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 10;
}
@supports (backdrop-filter: blur(6px)) {
  header.site { background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: saturate(1.4) blur(8px); }
}
.brand {
  font-family: var(--serif);
  font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none; flex: none;
}
.brand-y { color: var(--accent); }
header.site nav {
  display: flex; gap: 1.05rem; flex-wrap: nowrap;
  font-family: var(--sans); font-size: .8rem; letter-spacing: .01em;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: 2px; margin-left: auto;
}
header.site nav::-webkit-scrollbar { display: none; }
header.site nav a { color: var(--ink-3); text-decoration: none; white-space: nowrap; }
header.site nav a:hover { color: var(--accent); }
header.site nav a[aria-current="page"] { color: var(--ink); border-bottom: 2px solid var(--accent); }

main { display: block; }

footer.site {
  border-top: 1px solid var(--rule);
  margin-top: 3.5rem; padding: 2rem var(--gutter) 3rem;
  font-family: var(--sans); font-size: .84rem; color: var(--ink-3);
}
footer.site .foot-lead { max-width: var(--measure); margin: 0 0 1.2rem; }
.foot-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; margin-bottom: 1.2rem; }
.foot-nav a { text-decoration: none; }
.foot-nav a:hover { text-decoration: underline; }
.colophon { margin: 0; max-width: var(--measure); }

/* ---------- shared blocks ---------- */

/* The side gutter is applied ONCE, to the top-level blocks. Putting it on every
   `section` indented nested ones (an .arg inside #arguments) by a second gutter. */
main > section, main > article, main > nav, main > p {
  padding-left: var(--gutter); padding-right: var(--gutter);
}

/* The three cards jump to sections on this same page, so the landing spot must
   clear the sticky header — otherwise the heading you tapped is hidden under it. */
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 4.25rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.prose { max-width: 46rem; margin: 0 auto; padding-top: 2rem; }

h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.08; letter-spacing: -.025em; font-weight: 700;
  margin: 0 0 .7rem;
}
h2 {
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  line-height: 1.2; letter-spacing: -.018em; margin: 0 0 .5rem;
}
h3 { font-size: 1.1rem; line-height: 1.3; margin: 0 0 .4rem; letter-spacing: -.01em; }

p { max-width: var(--measure); }

.eyebrow {
  font-family: var(--sans); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .13em; color: var(--ink-3); margin: 0 0 .6rem;
}
.eyebrow a { color: var(--ink-3); }

.lede { font-size: 1.13rem; color: var(--ink-2); line-height: 1.55; }
.section-lede { color: var(--ink-2); font-size: .98rem; }

.page-head { margin-bottom: 2.5rem; }

.btn {
  display: inline-block; font-family: var(--sans); font-size: .88rem; font-weight: 600;
  padding: .7rem 1.15rem; border-radius: 999px;
  background: var(--accent); color: var(--paper); text-decoration: none;
  border: 1px solid var(--accent);
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--rule); }
.btn-ghost:hover { background: transparent; border-color: var(--accent); color: var(--accent-2); }
.btn-small { font-size: .78rem; padding: .45rem .85rem; }

.cta, .next { display: flex; flex-wrap: wrap; gap: .6rem; max-width: none; margin: 1.5rem 0 0; }
.controls { margin-top: 1.2rem; }

.more { font-family: var(--sans); font-size: .88rem; margin-top: 1.6rem; }

/* ---------- home ---------- */

.hero { padding-top: 1.75rem; padding-bottom: 1.25rem; max-width: 46rem; margin: 0 auto; }
.hero h1 { font-size: clamp(2.5rem, 12vw, 4.25rem); letter-spacing: -.04em; }
.hero .lede { font-size: clamp(1.08rem, 4.1vw, 1.3rem); color: var(--ink); margin-top: .9rem; }
.hero-kicker {
  font-family: var(--sans); font-size: .8rem; color: var(--ink-3);
  margin: 1.4rem 0 0; letter-spacing: .01em;
}

/* ---------- the three-section table of contents ---------- */

.toc {
  max-width: 46rem; margin: .9rem auto 0;
  display: grid; gap: .6rem;
}
.toc-card {
  display: grid; grid-template-columns: auto 1fr; gap: 0 .75rem; align-items: baseline;
  padding: .95rem 1.05rem;
  border: 1px solid var(--rule); border-radius: 10px;
  background: var(--paper-2); color: var(--ink); text-decoration: none;
  transition: border-color .12s ease, background-color .12s ease;
}
.toc-card:hover, .toc-card:focus-visible { border-color: var(--accent); background: var(--paper); color: var(--ink); }
.toc-n {
  grid-row: 1 / span 3;
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  color: var(--accent); letter-spacing: .06em; font-variant-numeric: tabular-nums;
}
.toc-title { font-size: 1.08rem; font-weight: 700; letter-spacing: -.015em; line-height: 1.25; }
.toc-blurb { color: var(--ink-2); font-size: .9rem; line-height: 1.45; margin-top: .2rem; }
.toc-meta {
  font-family: var(--sans); font-size: .7rem; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .45rem;
}
/* The arrow is decoration, so it is drawn rather than written into the markup. */
.toc-title::after { content: " ↓"; color: var(--accent); font-weight: 400; }

.hero-stat {
  font-family: var(--sans); font-size: .78rem; color: var(--ink-3);
  max-width: 46rem; margin: 1.5rem auto 0; padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

.sub-head {
  font-size: 1.2rem; margin: 2.5rem 0 .4rem;
  padding-top: 1.4rem; border-top: 1px solid var(--rule);
}
.band > .answer-list + .sub-head { margin-top: 2.25rem; }

.answer-list { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 1rem; }
.answer-list li {
  border-left: 3px solid var(--rule); padding-left: 1rem;
  max-width: var(--measure);
}
.answer-list strong { display: block; letter-spacing: -.012em; }
.answer-list span { color: var(--ink-2); font-size: .95rem; }

.band { padding-top: 2.75rem; padding-bottom: 2.75rem; max-width: 46rem; margin: 0 auto; }
.band-quiet { background: var(--paper-2); max-width: none; }
.band-quiet > * { max-width: 46rem; margin-left: auto; margin-right: auto; }
.band-quiet > h2, .band-quiet > p { max-width: 46rem; }
.band-quiet .section-lede { max-width: var(--measure); }
.closing { border-top: 1px solid var(--rule); }

.cards { display: grid; gap: 1rem; margin-top: 1.75rem; }
/* Flex column so the citation sits on the baseline of the tallest card in the
   row instead of dangling wherever that card's prose happened to end. */
.card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 10px;
  padding: 1.25rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card .cite { margin-top: auto; padding-top: .4rem; }
.card p { max-width: none; }
.stat { font-family: var(--sans); font-size: 2rem; font-weight: 700; letter-spacing: -.03em; color: var(--accent); margin: 0; line-height: 1; }
.stat-label { font-family: var(--sans); font-size: .78rem; color: var(--ink-3); margin: .35rem 0 1rem; text-transform: uppercase; letter-spacing: .07em; }
.stat-card h3 { margin-bottom: .5rem; }
.stat-card > p:not(.stat):not(.stat-label):not(.caveat):not(.cite) { font-size: .95rem; color: var(--ink-2); }

.caveat {
  font-size: .87rem; color: var(--ink-2); background: var(--paper-2);
  border-left: 3px solid var(--warn); padding: .7rem .9rem; border-radius: 0 6px 6px 0;
  margin: 1rem 0 .8rem;
}
.band-quiet .caveat { background: var(--paper); }
.caveat strong { color: var(--ink); }
.cite { font-family: var(--sans); font-size: .76rem; line-height: 1.45; color: var(--ink-3); margin: 0; }
.cite a { color: var(--ink-3); }
.cite a:hover { color: var(--accent); }

.toplist { list-style: none; counter-reset: t; margin: 1.5rem 0 0; padding: 0; }
.toplist li {
  counter-increment: t; display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .55rem;
  padding: .7rem 0 .7rem 2.2rem; border-bottom: 1px solid var(--rule); position: relative;
}
.toplist li::before {
  content: counter(t); position: absolute; left: 0; top: .75rem;
  font-family: var(--sans); font-size: .78rem; color: var(--ink-3); font-variant-numeric: tabular-nums;
}
.toplist .t { font-weight: 600; text-decoration: none; letter-spacing: -.012em; }
.toplist .t:hover { text-decoration: underline; }
.toplist .by { color: var(--ink-3); font-size: .92rem; }
.toplist .n { font-family: var(--sans); font-size: .74rem; color: var(--ink-3); margin-left: auto; white-space: nowrap; }

.starts { padding-left: 1.1rem; max-width: var(--measure); }
.starts li { margin-bottom: .5rem; }
.permission { font-size: .95rem; color: var(--ink-2); border-top: 1px solid var(--rule); padding-top: 1.1rem; margin-top: 1.4rem; }

/* ---------- quotes ---------- */

.quotes, .quote-grid { display: grid; gap: 1.4rem; margin-top: 1.75rem; }
.quote { margin: 0; }
.quote blockquote {
  margin: 0; font-size: 1.08rem; line-height: 1.5; letter-spacing: -.008em;
  border-left: 3px solid var(--accent); padding-left: 1rem;
}
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after { content: "\201D"; }
.quote figcaption {
  font-family: var(--sans); margin-top: .7rem; padding-left: calc(1rem + 3px);
  display: flex; flex-direction: column; gap: .12rem;
}
.quote .who { font-size: .92rem; font-weight: 600; color: var(--ink); }
.quote .role { font-size: .78rem; color: var(--ink-3); }
.quote .cite { margin-top: .25rem; }
.qnote { font-family: var(--sans); font-size: .78rem; color: var(--ink-3); padding-left: calc(1rem + 3px); margin: .4rem 0 0; }
.quote-full blockquote { font-size: 1.12rem; }
.theme { padding-top: 2.5rem; }
.theme h2 { padding-bottom: .5rem; border-bottom: 1px solid var(--rule); }

.misattributed { margin-top: 1rem; }
.wrong-list { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.wrong { border: 1px dashed var(--rule); border-radius: 10px; padding: 1.1rem 1.2rem; }
.wrong blockquote { margin: 0 0 .6rem; font-size: 1.02rem; color: var(--ink-2); text-decoration: line-through; text-decoration-color: var(--ink-3); text-decoration-thickness: 1px; }
.wrong-attrib { font-family: var(--sans); font-size: .82rem; color: var(--ink-3); margin: 0 0 .6rem; }
.wrong-truth { font-size: .93rem; color: var(--ink-2); margin: 0 0 .6rem; max-width: none; }

/* ---------- why ---------- */

.arg-list { display: grid; gap: 1.6rem; margin-top: 1.75rem; }
.arg h3 { color: var(--ink); }
.arg p { color: var(--ink-2); font-size: .98rem; }

.evidence-list { display: grid; gap: 2.25rem; margin-top: 1.75rem; }
.evidence { display: grid; gap: .9rem; }
.ev-stat { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.ev-stat .stat-label { margin: 0; }
.ev-body h3 { font-size: 1.2rem; }
.ev-body > p:first-of-type + p { max-width: none; }
.evidence .ev-body p:not(.caveat):not(.cite) { color: var(--ink-2); }

.leftout-list { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.leftout { border-left: 3px solid var(--rule); padding-left: 1rem; }
.leftout h3 { font-style: italic; color: var(--ink-2); font-weight: 500; }
.leftout p { font-size: .93rem; color: var(--ink-2); }

/* ---------- recommendation cards ---------- */

.recs { display: grid; gap: 1rem; margin-top: 1.75rem; }
.rec {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 10px;
  padding: 1.05rem 1.15rem; box-shadow: var(--shadow);
}
.band-quiet .rec { background: var(--paper); }
.rec-head { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.rec-person { font-family: var(--sans); font-size: .86rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.rec-person:hover { color: var(--accent); }
.rec-book { margin: 0 0 .6rem; font-size: 1.05rem; letter-spacing: -.012em; max-width: none; }
.rec-book a { font-weight: 600; text-decoration: none; }
.rec-book a:hover { text-decoration: underline; }
.rec-book .by { color: var(--ink-3); font-weight: 400; font-size: .95rem; }
.rec-quote {
  margin: 0; font-size: .98rem; line-height: 1.5; color: var(--ink-2);
  border-left: 2px solid var(--rule); padding-left: .8rem;
}
.rec-quote::before { content: "\201C"; }
.rec-quote::after { content: "\201D"; }
.rec-src { font-family: var(--sans); font-size: .74rem; color: var(--ink-3); margin: .7rem 0 0; }
.rec-src a { color: var(--ink-3); }
.rec-src a:hover { color: var(--accent); }

.tag {
  font-family: var(--sans); font-size: .66rem; text-transform: uppercase;
  letter-spacing: .07em; padding: .16rem .45rem; border-radius: 4px;
  background: var(--paper-2); color: var(--ink-3); border: 1px solid var(--rule);
  white-space: nowrap;
}
.tag-loved, .tag-recommended { color: var(--good); border-color: color-mix(in srgb, var(--good) 40%, transparent); }
.tag-mixed, .tag-disliked { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 40%, transparent); }
.tag-disclosure, .tag-secondhand { color: var(--warn); border-style: dashed; }
.tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .8rem; }

.person-meta { font-family: var(--sans); font-size: .82rem; color: var(--ink-3); }
.book-sub { font-size: 1.05rem; color: var(--ink-2); margin: -.2rem 0 .5rem; font-style: italic; }

.people-grid { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .1rem; }
.people-grid a {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .3rem .8rem;
  padding: .65rem 0; border-bottom: 1px solid var(--rule); text-decoration: none;
}
.people-grid .pname { font-weight: 600; color: var(--ink); letter-spacing: -.012em; }
.people-grid a:hover .pname { color: var(--accent); }
.people-grid .pmeta { font-family: var(--sans); font-size: .74rem; color: var(--ink-3); white-space: nowrap; }

.list-links { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.list-links li { padding: .55rem 0; border-bottom: 1px solid var(--rule); }
.list-links a { font-weight: 600; text-decoration: none; }
.list-links a:hover { text-decoration: underline; }
.ldesc { display: block; font-family: var(--sans); font-size: .78rem; color: var(--ink-3); }

/* ---------- wider screens ---------- */

@media (min-width: 40rem) {
  :root { --gutter: 2rem; }
  body { font-size: 1.09rem; }
  .toc { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .toc-card { grid-template-columns: 1fr; align-content: start; }
  .toc-n { grid-row: auto; margin-bottom: .5rem; }
  .toc-meta { margin-top: auto; padding-top: .7rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 2rem; }
  .recs { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); gap: 0 2rem; }
  .evidence { grid-template-columns: 9rem 1fr; gap: 1.5rem; }
  .ev-stat { flex-direction: column; gap: .2rem; align-items: flex-start; }
  .ev-stat .stat { font-size: 2.4rem; }
}

@media (min-width: 62rem) {
  /* 50rem for the blocks against a 36rem measure keeps headings and the card
     grids from overhanging the paragraph column by an awkward amount. */
  :root { --gutter: 2.5rem; --measure: 36rem; }
  .hero, .toc, .hero-stat, .band, .band-quiet > *, .prose { max-width: 50rem; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .recs-feed { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
  header.site { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- emphasis ---------- */

/* Bold in body prose is a skim aid, so it must be findable at a glance without
   turning the paragraph into a ransom note: one weight step up, and full ink
   against the slightly lighter colour the surrounding prose is set in. */
strong { font-weight: 650; color: var(--ink); }
.quote blockquote strong,
.rec-quote strong { font-weight: 650; color: var(--ink); }
.caveat strong,
.answer-list span strong,
.wrong-truth strong,
.section-lede strong,
.lede strong { color: var(--ink); }

/* Emphasis added to someone else's words is disclosed, not assumed. */
.disclosure {
  font-family: var(--sans); font-size: .8rem; line-height: 1.5; color: var(--ink-3);
  border-left: 3px solid var(--rule); padding-left: .9rem; margin-top: 1.4rem;
}
.disclosure strong { color: var(--ink-2); font-weight: 600; }
.disclosure-inline { color: var(--ink-3); font-style: italic; }

/* ---------- freshbar ---------- */

/* A draining bar that answers "how long ago was this said?" without the reader
   doing date arithmetic. Full and green = recent, empty and grey = old; the
   horizon lives in src/lib/freshbar.js. The numeric label sits beside it because
   colour alone is not an accessible signal, and because "3yr" is often the
   answer someone actually wanted. */
.freshbar {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-left: .5rem; vertical-align: middle; cursor: help;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  color: var(--ink-3);
}
.freshbar-track {
  display: inline-block; width: 30px; height: 4px; border-radius: 2px;
  background: var(--rule); overflow: hidden;
}
.freshbar-fill { display: block; height: 100%; border-radius: 2px; background: currentColor; }
.freshbar-label { font-size: .68rem; letter-spacing: .02em; }

.freshbar-fresh { color: var(--fresh-new); }
.freshbar-aging { color: var(--fresh-mid); }
.freshbar-old   { color: var(--fresh-old); }
.freshbar-stale { color: var(--ink-3); }

/* Striped fill = the date itself is an estimate. A bar that looked equally
   confident either way would claim a precision the record does not have. */
.is-estimated .freshbar-fill {
  background-image: repeating-linear-gradient(-45deg, transparent 0 2px, var(--paper) 2px 4px);
}

/* The freshbar as a tap target: it opens the shared explainer popover. Reset the
   button chrome so it still reads as a quiet inline mark, not a control. */
button.freshbar {
  font: inherit; background: none; border: 0; padding: 0 .1rem; margin-left: .4rem;
  border-radius: 3px;
}
button.freshbar:hover .freshbar-track,
button.freshbar:focus-visible .freshbar-track { outline: 1px solid currentColor; outline-offset: 2px; }
button.freshbar:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* One line of teaching above any list that shows bars, so the element explains
   itself without the reader having to discover that it can be tapped. */
.freshbar-legend {
  font-family: var(--sans); font-size: .76rem; line-height: 2; color: var(--ink-3);
  margin: 1.1rem 0 0; padding: .5rem .75rem;
  background: var(--paper-2); border-radius: 8px; max-width: none;
}
.freshbar-legend .freshbar { margin: 0 .1rem; }
.freshbar-more {
  font: inherit; background: none; border: 0; padding: 0; margin-left: .25rem;
  color: var(--accent); text-decoration: underline; text-underline-offset: .18em; cursor: pointer;
}
.freshbar-more:hover { color: var(--accent-2); }

.freshbar-popover {
  max-width: min(30rem, calc(100vw - 2rem));
  margin: auto;
  border: 1px solid var(--rule); border-radius: 12px;
  background: var(--paper); color: var(--ink);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .22);
}
.freshbar-popover::backdrop { background: rgba(20, 16, 12, .45); }
.freshbar-popover h2 { font-size: 1.25rem; margin-bottom: .6rem; }
.freshbar-popover p { font-size: .95rem; color: var(--ink-2); max-width: none; }
.freshbar-scale { list-style: none; margin: 1.1rem 0; padding: 0; display: grid; gap: .45rem; }
.freshbar-scale li { display: flex; align-items: center; gap: .6rem; }
.freshbar-scale .freshbar { margin-left: 0; }
.fh-when { font-family: var(--sans); font-size: .8rem; color: var(--ink-2); }
.fh-note {
  font-size: .84rem !important; color: var(--ink-3) !important;
  border-top: 1px solid var(--rule); padding-top: .8rem; margin-bottom: 1.1rem;
}

/* A shelf listing: no quote, so no quote marks. The page's own description of
   the entry sits where the quote would be, set apart from real speech by being
   unquoted and italic — a reader must never mistake it for something the person
   said. */
.rec-context {
  margin: 0; font-size: .93rem; line-height: 1.5; color: var(--ink-3);
  font-style: italic; border-left: 2px dashed var(--rule); padding-left: .8rem;
  max-width: none;
}
.rec-seen { font-style: italic; }
