/* =================================================================
   Wasatch Aquaponics
   -----------------------------------------------------------------
   Palette is taken from the system itself: hard-water scale (paper),
   basalt lava rock (ink), pond water (primary), iron oxide (accent).
   Deliberately cool rather than warm — this is a cold-climate site.

   The signature device is the "waterline": a hairline with a shallow
   wash above it, standing in for the fill level of a flood-and-drain
   bed. It marks the top of every major section.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --paper:        #edf0ea;  /* mineral scale, cool off-white   */
  --paper-deep:   #e2e7de;  /* section wash                    */
  --paper-pure:   #f7f9f5;  /* cards, form fields              */
  --basalt:       #131c19;  /* ink                             */
  --basalt-soft:  #4b5854;  /* secondary text                  */
  --pond:         #12504a;  /* primary — deep pond green       */
  --pond-bright:  #1c7d6d;  /* hover, active                   */
  --pond-wash:    rgba(18, 80, 74, 0.08);
  --iron:         #bd4f0b;  /* iron oxide — used sparingly     */
  --frost:        #3a6b8a;  /* cold-weather notes              */
  --rule:         #c5cfc3;  /* hairlines                       */
  --rule-soft:    #d8dfd5;

  --display: "Bitter", Georgia, "Times New Roman", serif;
  --body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --measure: 68ch;
  --container: 74rem;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1.02rem, 0.99rem + 0.16vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.13rem + 0.35vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.32rem + 0.62vw, 1.85rem);
  --step-3:  clamp(1.8rem, 1.55rem + 1.15vw, 2.6rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.3vw, 3.7rem);

  color-scheme: light;
}

/* ---------- Dark theme ----------
   The same materials after dusk: basalt supplies the ground, mineral
   scale becomes the ink, and pond/iron brighten a step so they hold
   contrast on the dark ground. Follows the OS setting; if these page
   colors change, keep the theme-color metas in base.njk in sync.
   A couple of component fixes live near the end of the file. */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --paper:        #101714;  /* wet basalt, page ground        */
    --paper-deep:   #161f1b;  /* section wash                   */
    --paper-pure:   #1b2521;  /* cards, form fields             */
    --basalt:       #e3eae5;  /* ink — mineral scale            */
    --basalt-soft:  #9fafa7;  /* secondary text                 */
    --pond:         #55ab96;  /* pond green, moonlit            */
    --pond-bright:  #74c7b1;  /* hover, active                  */
    --pond-wash:    rgba(85, 171, 150, 0.12);
    --iron:         #e0803f;  /* iron oxide, ember-warm         */
    --frost:        #85aecd;  /* cold-weather notes             */
    --rule:         #2b3631;  /* hairlines                      */
    --rule-soft:    #222c27;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--paper);
  color: var(--basalt);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.017em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); letter-spacing: 0; }

p, ul, ol, dl, blockquote, table, figure, pre { margin-block: 0 1.1em; }
p { text-wrap: pretty; }

a { color: var(--pond); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--iron); }

:focus-visible {
  outline: 2px solid var(--iron);
  outline-offset: 3px;
  border-radius: 1px;
}

strong { font-weight: 600; }
small { font-size: var(--step--1); }

/* The utility voice: eyebrows, labels, measurements, legal citations. */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pond);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow--iron { color: var(--iron); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.prose-wrap { max-width: calc(var(--measure) + var(--gutter) * 2); }

main { flex: 1 0 auto; }

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--wash { background: var(--paper-deep); }

/* ---------- Signature: the waterline ---------- */
/* A hairline with a shallow wash above it — the fill level of a bed. */
.waterline {
  position: relative;
  height: 0;
  border-bottom: 1px solid var(--rule);
}
.waterline::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 14px;
  background: linear-gradient(to top, var(--pond-wash), transparent);
  pointer-events: none;
}
.waterline--mark { border-bottom-color: var(--pond); }

/* Section headings sit on a waterline with a short solid segment on the left,
   the way a bed's inlet side fills first. */
.section-head {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.section-head::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 3.5rem;
  height: 3px;
  background: var(--pond);
}

/* ---------- Header ---------- */
.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.masthead__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-block: 1.15rem;
}
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--basalt);
  text-decoration: none;
}
.wordmark span {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--basalt-soft);
  margin-top: 0.25rem;
}
.wordmark:hover { color: var(--pond); }

.nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--basalt-soft);
  text-decoration: none;
  padding-block: 0.2rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--basalt); border-bottom-color: var(--iron); }
.nav a[aria-current="page"] { color: var(--basalt); border-bottom-color: var(--pond); }

/* ---------- Buttons ---------- */
.button {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.8rem 1.5rem;
  background: var(--pond);
  color: var(--paper-pure);
  border: 1px solid var(--pond);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.button:hover { background: var(--pond-bright); border-color: var(--pond-bright); color: var(--paper-pure); }
.button--ghost { background: transparent; color: var(--pond); }
.button--ghost:hover { background: var(--pond); color: var(--paper-pure); }
.button--iron { background: var(--iron); border-color: var(--iron); }
.button--iron:hover { background: #a34309; border-color: #a34309; color: var(--paper-pure); }

/* ---------- Home hero ---------- */
.hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4.5rem); position: relative; }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 60rem) {
  .hero__grid { grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.85fr); align-items: start; }
}
.hero h1 { max-width: 16ch; }
.hero__lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--basalt-soft);
  max-width: 46ch;
  margin-top: 1.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* The reading on the wall: live conditions from the system, in the
   language of the thing itself. */
.readout {
  border: 1px solid var(--rule);
  background: var(--paper-pure);
  padding: 1.4rem 1.5rem 1.5rem;
}
.readout__title {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--basalt-soft);
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule-soft);
}
.readout dl { display: grid; grid-template-columns: 1fr auto; gap: 0.7rem 1rem; margin: 0; }
.readout dt { font-size: 0.88rem; color: var(--basalt-soft); }
.readout dd {
  margin: 0;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.92rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.readout dd b { font-weight: 600; color: var(--iron); }
.readout__note {
  margin: 1.15rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--basalt-soft);
}

/* Hero fill: the wash rises once on load, like a bed filling. */
.hero__fill {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  background: var(--rule);
  overflow: hidden;
}
.hero__fill::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 100%;
  background: var(--pond);
  transform-origin: left;
  animation: fill 1.6s cubic-bezier(0.22, 0.9, 0.3, 1) both;
}
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Cards / article lists ---------- */
.grid { display: grid; gap: 1px; background: var(--rule); border-block: 1px solid var(--rule); }
@media (min-width: 44rem) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 62rem) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.grid > * { background: var(--paper); padding: 1.75rem clamp(1.1rem, 2.5vw, 1.75rem); }

.card h3 { margin-bottom: 0.5rem; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--pond); }
.card p { color: var(--basalt-soft); font-size: 0.96rem; }
.card > :last-child { margin-bottom: 0; }

.meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--basalt-soft);
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  align-items: baseline;
}
.meta a { color: inherit; }

/* Article index rows read like a bulletin index, not a blog. */
.index-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.index-list li { border-bottom: 1px solid var(--rule); }
.index-list a.index-row {
  display: grid;
  gap: 0.35rem 2rem;
  padding: 1.5rem 0;
  text-decoration: none;
  color: inherit;
  align-items: baseline;
}
@media (min-width: 52rem) {
  .index-list a.index-row { grid-template-columns: 9rem minmax(0, 1fr); }
}
.index-row__date {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--basalt-soft);
  padding-top: 0.35rem;
}
.index-row__title { font-family: var(--display); font-weight: 700; font-size: var(--step-1); line-height: 1.25; }
.index-row:hover .index-row__title { color: var(--pond); }
.index-row__dek { color: var(--basalt-soft); font-size: 0.96rem; margin-top: 0.35rem; max-width: 62ch; }

/* ---------- Article page ---------- */
.article__header { padding-block: clamp(2.5rem, 6vw, 4rem) 0; }
.article__header h1 { max-width: 22ch; }
.article__dek {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--basalt-soft);
  max-width: 52ch;
  margin-top: 1.2rem;
}
.article__meta { margin-top: 1.75rem; padding-top: 1.1rem; border-top: 1px solid var(--rule); }

.prose { max-width: var(--measure); padding-block: 2.5rem; }
.prose h2 { margin-block: 2.4em 0.6em; font-size: var(--step-2); }
.prose h3 { margin-block: 1.9em 0.5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose > p:first-child { font-size: 1.08em; }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose li { margin-bottom: 0.45em; }
.prose li::marker { color: var(--pond); }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin-block: 2.5rem; }

.prose blockquote {
  border-left: 3px solid var(--pond);
  padding: 0.2rem 0 0.2rem 1.35rem;
  margin-left: 0;
  color: var(--basalt-soft);
  font-size: 1.04em;
}

.prose code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--paper-deep);
  padding: 0.12em 0.36em;
  border-radius: 2px;
}
.prose pre {
  background: var(--basalt);
  color: #dfe7e3;
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  border-radius: 2px;
  font-size: 0.86rem;
  line-height: 1.6;
}
.prose pre code { background: none; padding: 0; font-size: inherit; color: inherit; }

/* Tables get real treatment — this site will have a lot of them. */
.prose table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.prose thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--basalt-soft);
  border-bottom: 2px solid var(--pond);
  padding: 0 0.85rem 0.6rem 0;
}
.prose tbody td { border-bottom: 1px solid var(--rule-soft); padding: 0.7rem 0.85rem 0.7rem 0; vertical-align: top; }
.prose tbody tr:last-child td { border-bottom: 1px solid var(--rule); }
.table-scroll { overflow-x: auto; margin-bottom: 1.1em; }

.figure { margin-block: 2rem; }
.figure img { width: 100%; border: 1px solid var(--rule); }
.figure figcaption {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--basalt-soft);
  margin-top: 0.6rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--rule);
}

/* Measurements, inline. Reads as instrument output. */
.spec {
  font-family: var(--mono);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--basalt-soft);
  background: var(--paper-deep);
  border-left: 3px solid var(--pond);
  padding: 0.7rem 1rem;
  font-variant-numeric: tabular-nums;
}

/* ---------- Callouts ---------- */
.callout {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--basalt-soft);
  background: var(--paper-pure);
  padding: 1.15rem 1.35rem;
  margin-block: 1.9rem;
  font-size: 0.97rem;
}
.callout > .callout__body > :last-child { margin-bottom: 0; }
.callout__title {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.callout--note { border-left-color: var(--pond); }
.callout--note .callout__title { color: var(--pond); }
.callout--utah { border-left-color: var(--iron); }
.callout--utah .callout__title { color: var(--iron); }
.callout--warning { border-left-color: var(--frost); }
.callout--warning .callout__title { color: var(--frost); }
.callout--legal { border-left-color: var(--basalt); background: var(--paper-deep); }
.callout--legal .callout__title { color: var(--basalt); }

/* ---------- Inline CTA ---------- */
.inline-cta {
  border-top: 2px solid var(--pond);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-deep);
  padding: 1.6rem 1.5rem;
  margin-block: 2.5rem;
}
.inline-cta__lede { font-family: var(--display); font-weight: 700; font-size: var(--step-1); margin-bottom: 0.5rem; }
.inline-cta p { font-size: 0.96rem; color: var(--basalt-soft); }
.inline-cta .button { margin-top: 0.5rem; }

/* ---------- Forms ---------- */
.form { max-width: 38rem; }
.field { margin-bottom: 1.35rem; }
.field > label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.field__hint { display: block; font-weight: 400; font-size: 0.84rem; color: var(--basalt-soft); margin-top: 0.15rem; }
.req { color: var(--iron); font-weight: 500; }
.opt { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--basalt-soft); font-weight: 500; }

.input, .textarea, .select {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.68rem 0.8rem;
  background: var(--paper-pure);
  color: var(--basalt);
  border: 1px solid var(--rule);
  border-radius: 2px;
  appearance: none;
}
.input:hover, .textarea:hover, .select:hover { border-color: var(--basalt-soft); }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--pond);
  outline: 2px solid var(--pond-wash);
  outline-offset: 0;
}
.textarea { min-height: 9rem; resize: vertical; }
.select {
  background-image: linear-gradient(45deg, transparent 50%, var(--basalt-soft) 50%),
                    linear-gradient(135deg, var(--basalt-soft) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) 55%, calc(100% - 0.8rem) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}
.field-row { display: grid; gap: 0 1.1rem; }
@media (min-width: 34rem) { .field-row { grid-template-columns: 1fr 1fr; } }

/* Honeypot — must stay reachable to bots but invisible and out of tab order. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__footnote { font-size: 0.84rem; color: var(--basalt-soft); margin-top: 1rem; }

/* ---------- Email capture ---------- */
.signup {
  border-top: 2px solid var(--pond);
  background: var(--paper-deep);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.signup__grid { display: grid; gap: 1.5rem clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 54rem) { .signup__grid { grid-template-columns: minmax(0, 1fr) minmax(19rem, 24rem); align-items: start; } }
.signup h2 { font-size: var(--step-2); margin-bottom: 0.65rem; }
.signup p { color: var(--basalt-soft); font-size: 0.97rem; max-width: 48ch; }
.signup .field { margin-bottom: 0.85rem; }
.signup__micro { font-size: 0.8rem; color: var(--basalt-soft); margin-top: 0.75rem; }

/* ---------- Footer ---------- */
.colophon {
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding-block: 2.5rem 3rem;
  font-size: 0.9rem;
  margin-top: auto;
}
.colophon__grid { display: grid; gap: 2rem clamp(2rem, 5vw, 4rem); }
@media (min-width: 48rem) { .colophon__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.colophon h2 {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--basalt-soft);
  margin-bottom: 0.85rem;
}
.colophon ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.colophon a { color: var(--basalt); text-decoration-color: var(--rule); }
.colophon a:hover { color: var(--pond); text-decoration-color: currentColor; }
.colophon__legal { color: var(--basalt-soft); font-size: 0.82rem; line-height: 1.6; }
.colophon__bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--rule-soft); }

/* ---------- Topic chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--rule);
  background: var(--paper-pure);
  color: var(--basalt-soft);
  text-decoration: none;
  border-radius: 2px;
}
.chip:hover { border-color: var(--pond); color: var(--pond); }

/* ---------- Utilities ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--basalt);
  color: var(--paper);
  padding: 0.7rem 1.1rem;
  z-index: 10;
}
.skip-link:focus { left: 0; }
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--basalt-soft); max-width: 52ch; }
.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 2.5rem; }
.center-note { text-align: center; color: var(--basalt-soft); padding-block: 3rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Dark-theme component fixes ----------
   The tokens up top handle nearly everything; these are the few spots
   where a hard-coded color doesn't survive the palette inversion.
   Placed after the components they override so they win the cascade. */
@media (prefers-color-scheme: dark) {
  /* Light mode paints code blocks with the ink color. In dark mode the
     ink token is light, so pin them to a near-black basalt instead,
     with a hairline so they read against the page ground. */
  .prose pre {
    background: #0a100d;
    border: 1px solid var(--rule);
  }
  /* Light mode darkens the iron button on hover; on a dark ground
     hover should brighten instead. */
  .button--iron:hover { background: #e9955c; border-color: #e9955c; }
}

/* ---------- Print ---------- */
@media print {
  .masthead, .colophon, .signup, .inline-cta, .hero__fill { display: none; }
  /* Pin ink explicitly so printing from a dark-mode browser doesn't
     produce light-on-white text. */
  body { background: #fff; color: #131c19; font-size: 11pt; }
  .prose { max-width: none; }
  a::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
