@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&family=Spectral:ital,wght@0,300;0,400;0,600;1,300;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ==========================================================================
   DisclosureWhoCares.com
   Design system: "the case file, at night."
   Night-navy chrome; onionskin document panels; phosphor reserved for
   instruments; stamp red reserved for status. Nothing else gets to be bright.
   ========================================================================== */

:root {
  /* Ground + chrome */
  --night:        #0a0d12;
  --night-2:      #11151d;
  --night-3:      #1a202b;
  --hairline:     #262d3a;

  /* Document */
  --onionskin:    #ede9de;
  --onionskin-2:  #e3ded0;
  --manila:       #c9bf9e;
  --ink:          #14171d;
  --ink-soft:     #4b5262;

  /* Text on night */
  --pale:         #dfe3ea;
  --pale-soft:    #939cad;
  --pale-faint:   #616b7d;

  /* Instruments only */
  --phosphor:     #7fe3a3;
  --phosphor-dim: #3f7a58;

  /* Status only */
  --stamp:        #c2432e;
  --documented:   #4f8f6b;
  --alleged:      #b3872f;
  --contested:    #4a76a8;
  --debunked:     #9b4a4a;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Spectral', Georgia, 'Times New Roman', serif;
  --mono:    'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  /* Scale */
  --measure: 34rem;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --rule: 1px solid var(--hairline);
  --rule-doc: 1px solid rgba(20, 23, 29, 0.16);
}

/* --------------------------------------------------------------------------
   Reset + base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--night);
  color: var(--pale);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.68;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* A faint field of grain over the night, so the dark reads as a photograph
   of a dark room rather than as #000. Cheap, static, no repaint. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

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

a { color: inherit; }

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

::selection { background: var(--phosphor); color: var(--night); }

/* --------------------------------------------------------------------------
   Type primitives
   -------------------------------------------------------------------------- */

.stamp {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-label {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
}

.prose h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.125rem);
  letter-spacing: 0.005em;
  margin: 3.25rem 0 1rem;
  padding-top: 1.5rem;
  border-top: var(--rule-doc);
}

.prose h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.1875rem;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 2.25rem 0 0.5rem;
}

.prose p { margin: 0 0 1.15rem; }

.prose p + p { text-indent: 0; }

.prose a {
  color: var(--ink);
  text-decoration-color: var(--manila);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: var(--stamp); }

.prose blockquote {
  margin: 1.75rem 0;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid var(--manila);
  font-style: italic;
  color: var(--ink-soft);
}

.prose ul, .prose ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }

.lede {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.wrap--narrow { max-width: 46rem; }

.stack > * + * { margin-top: var(--stack-gap, 1.5rem); }

/* --------------------------------------------------------------------------
   Masthead nav
   -------------------------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 18, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: var(--rule);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 3.25rem;
}

.topbar__mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--pale);
  white-space: nowrap;
}
.topbar__mark span { color: var(--phosphor); }

.topbar__nav {
  display: flex;
  gap: 1.15rem;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.topbar__nav::-webkit-scrollbar { display: none; }

.topbar__nav a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale-soft);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.topbar__nav a:hover,
.topbar__nav a[aria-current='page'] {
  color: var(--phosphor);
  border-bottom-color: var(--phosphor);
}

/* --------------------------------------------------------------------------
   Hero — the theme line, performed
   -------------------------------------------------------------------------- */

.hero {
  padding: clamp(3rem, 9vw, 7rem) 0 clamp(2rem, 5vw, 3.5rem);
  border-bottom: var(--rule);
}

.hero__shout {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.75rem, 12vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  color: var(--pale);
}

.hero__shout em {
  font-style: normal;
  display: block;
  color: var(--pale-faint);
}

.hero__reply {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.375rem, 4.2vw, 2.5rem);
  line-height: 1.15;
  color: var(--phosphor);
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 0;
  padding-left: clamp(0, 12vw, 9rem);
}

.hero__sub {
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 0;
  max-width: 40rem;
  color: var(--pale-soft);
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   THE RECORD CARD — the site's structural signature.
   Modeled on the Project Blue Book record card: typed fields, and a
   CONCLUSIONS line that has to say something honest.
   -------------------------------------------------------------------------- */

.card {
  background: var(--onionskin);
  color: var(--ink);
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06),
    0 18px 40px -24px rgba(0,0,0,0.9);
  position: relative;
  overflow: hidden;
}

/* the punch-hole / filing edge */
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(
    180deg,
    var(--manila) 0 10px,
    transparent 10px 20px
  );
  opacity: 0.55;
}

.card__head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 1.35rem 0.75rem 1.6rem;
  border-bottom: var(--rule-doc);
}

.card__no {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--manila);
}

.card__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  flex: 1 1 12rem;
}

.card__body { padding: 1.15rem 1.35rem 1.35rem 1.6rem; }

.card__field + .card__field { margin-top: 0.95rem; }

.card__field p {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
}

/* the CONCLUSIONS line gets typewriter treatment, because on the real
   cards it was typed last and usually said less than you hoped */
.card__conclusion {
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: var(--rule-doc);
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Status chips — the four verdicts. Load-bearing, not decorative.
   -------------------------------------------------------------------------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  white-space: nowrap;
}
.chip::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.chip--documented { color: var(--documented); }
.chip--alleged    { color: var(--alleged); }
.chip--contested  { color: var(--contested); }
.chip--debunked   { color: var(--debunked); }

/* on the dark chrome the chips need lifting */
.on-night .chip--documented { color: #6fc493; }
.on-night .chip--alleged    { color: #d9ab55; }
.on-night .chip--contested  { color: #74a3d6; }
.on-night .chip--debunked   { color: #cc7676; }

/* --------------------------------------------------------------------------
   Document panel — long-form reading surface
   -------------------------------------------------------------------------- */

.doc {
  background: var(--onionskin);
  color: var(--ink);
  border-radius: 2px;
  padding: clamp(1.75rem, 5vw, 4rem) clamp(1.35rem, 5vw, 4.5rem);
  box-shadow: 0 24px 60px -32px rgba(0,0,0,0.95);
}

.doc__eyebrow {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stamp);
  margin: 0 0 0.75rem;
}

.doc__title {
  font-size: clamp(1.875rem, 5.5vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.doc .prose { max-width: var(--measure); }

/* --------------------------------------------------------------------------
   Section index (homepage)
   -------------------------------------------------------------------------- */

.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: var(--rule);
  margin: 0;
}

.index-item {
  background: var(--night);
  padding: 1.5rem 1.35rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.16s;
}
.index-item:hover { background: var(--night-2); }
.index-item:hover .index-item__title { color: var(--phosphor); }

.index-item__no {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--pale-faint);
}

.index-item__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--pale);
  transition: color 0.16s;
}

.index-item__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pale-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Instruments — the only place phosphor is allowed to shine
   -------------------------------------------------------------------------- */

.instruments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: var(--rule);
}

.instrument {
  background: var(--night-2);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.instrument__label {
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pale-faint);
}

.instrument__value {
  font-family: var(--mono);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--phosphor);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.instrument__note {
  font-size: 0.8125rem;
  color: var(--pale-soft);
  margin: 0;
  min-height: 2.4em;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: var(--rule);
  margin-top: clamp(3rem, 8vw, 6rem);
  padding: 2.5rem 0 3.5rem;
  color: var(--pale-faint);
  font-size: 0.8125rem;
}

.footer__line { margin: 0 0 0.75rem; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
}
.footer__nav a {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pale-soft);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--phosphor); }

/* --------------------------------------------------------------------------
   Buttons / controls
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  background: transparent;
  color: var(--phosphor);
  border: 1px solid var(--phosphor-dim);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn:hover { background: var(--phosphor); color: var(--night); border-color: var(--phosphor); }

.btn--doc { color: var(--stamp); border-color: rgba(194,67,46,0.4); }
.btn--doc:hover { background: var(--stamp); color: var(--onionskin); border-color: var(--stamp); }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.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;
}

.section { padding: clamp(2.5rem, 7vw, 5rem) 0; }
.section--tight { padding: clamp(1.5rem, 4vw, 2.5rem) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phosphor-dim);
  margin: 0 0 0.85rem;
}

.section-title {
  font-size: clamp(1.625rem, 4.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.muted { color: var(--pale-soft); }

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

@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;
  }
}

/* --------------------------------------------------------------------------
   Print — the bingo card and the record cards should print like documents
   US Letter. North America.
   -------------------------------------------------------------------------- */

@page { size: letter portrait; margin: 0.6in; }

@media print {
  body { background: #fff; color: #000; }
  body::before { display: none; }
  .topbar, .footer, .no-print { display: none !important; }
  .doc, .card { box-shadow: none; background: #fff; }
}

/* ==========================================================================
   THE DISCLOSURE-O-METER
   Calibrated June 24, 1947. Has never once required adjustment.
   ========================================================================== */

.meter {
  display: block;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.meter svg { width: 100%; height: auto; overflow: visible; }

.meter__face { fill: none; stroke: var(--hairline); stroke-width: 1.25; }
.meter__arc  { fill: none; stroke: var(--phosphor-dim); stroke-width: 2; opacity: 0.5; }
.meter__tick { stroke: var(--pale-faint); stroke-width: 1.25; }
.meter__tick--major { stroke: var(--phosphor); stroke-width: 1.75; }

.meter__label {
  font-family: var(--mono);
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  fill: var(--pale-faint);
  text-anchor: middle;
}
.meter__label--live { fill: var(--phosphor); }

.meter__needle {
  /* Must match the hub at (150,130) in the viewBox, not the element bbox. */
  transform-box: view-box;
  transform-origin: 150px 130px;
  transform: rotate(-76deg);
  transition: transform 1400ms cubic-bezier(.34,1.56,.64,1);
}
.meter__needle line {
  stroke: var(--stamp);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.meter__hub { fill: var(--night-3); stroke: var(--phosphor-dim); stroke-width: 1.5; }

.meter__glass {
  fill: var(--phosphor);
  opacity: 0.03;
}

.meter-caption {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--pale-faint);
  text-align: center;
  margin: 0.85rem 0 0;
}

.meter-status {
  font-family: var(--body);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--phosphor);
  text-align: center;
  margin: 0.5rem auto 0;
  max-width: 30rem;
  min-height: 3em;
}

/* ==========================================================================
   Toast (tinfoil mode, game messages)
   ========================================================================== */

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 1.5rem);
  z-index: 200;
  max-width: min(32rem, calc(100vw - 2rem));
  padding: 0.85rem 1.15rem;
  background: var(--night-3);
  border: 1px solid var(--phosphor-dim);
  border-radius: 2px;
  color: var(--pale);
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.9);
}
.toast--in { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Tinfoil mode — everything goes cold and slightly wrong
   ========================================================================== */

.tinfoil {
  --phosphor: #c8d2dc;
  --phosphor-dim: #7e8b98;
  --night: #0e1013;
  --night-2: #15181c;
  --night-3: #1d2126;
  --onionskin: #d8dade;
  --onionskin-2: #cbced3;
  --manila: #a9b0b8;
  --stamp: #8f99a3;
}
.tinfoil body { filter: grayscale(0.55) contrast(1.06); }
.tinfoil .hero__reply::after {
  content: ' (they know you read this)';
  font-size: 0.4em;
  vertical-align: middle;
  opacity: 0.6;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Newsletter-free promise
   ========================================================================== */

.promise {
  border: 1px dashed var(--hairline);
  border-radius: 2px;
  padding: 1.35rem 1.5rem;
  max-width: 40rem;
}
.promise p { margin: 0 0 0.6rem; color: var(--pale-soft); font-size: 0.9375rem; }
.promise p:last-child { margin: 0; }

/* ==========================================================================
   404 — sanitized copy
   ========================================================================== */

.redact {
  background: var(--ink);
  color: transparent;
  padding: 0 0.15em;
  border-radius: 1px;
  user-select: none;
  white-space: nowrap;
}
.redact::selection { background: var(--ink); }

/* ==========================================================================
   Games — shared chrome
   ========================================================================== */

.game-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.game-controls { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }

.game-stat {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale-faint);
}
.game-stat b {
  display: block;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--phosphor);
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   THE TIMELINE
   ========================================================================== */

.tl__controls { margin: 1.75rem 0 0; display: flex; flex-direction: column; gap: 0.85rem; }

#tl-search {
  width: 100%; max-width: 26rem;
  font-family: var(--mono); font-size: 0.875rem;
  padding: 0.6rem 0.8rem;
  background: var(--night-2);
  border: var(--rule); border-radius: 2px;
  color: var(--pale);
}
#tl-search::placeholder { color: var(--pale-faint); }

.tl__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tl__chip {
  font-family: var(--mono); font-size: 0.5625rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  background: transparent; color: var(--pale-faint);
  border: 1px solid var(--hairline); border-radius: 2px;
  cursor: pointer; transition: all 0.12s;
}
.tl__chip:hover { color: var(--pale); border-color: var(--pale-faint); }
.tl__chip.is-on { color: var(--night); background: var(--phosphor); border-color: var(--phosphor); }

.tl__count { font-family: var(--mono); font-size: 0.6875rem; color: var(--pale-faint); margin: 0; }
.tl__reset {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--phosphor); font-family: var(--mono); font-size: 0.6875rem;
  text-decoration: underline; text-underline-offset: 2px;
}

.tl { list-style: none; margin: 1.5rem 0 0; padding: 0; position: relative; }
.tl::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--hairline);
}
@media (min-width: 48rem) { .tl::before { left: 9.5rem; } }

.tl__item {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.35rem;
  border-bottom: var(--rule);
  display: grid; gap: 0.15rem;
}
@media (min-width: 48rem) {
  .tl__item { grid-template-columns: 9.5rem 1fr; gap: 0 2rem; padding-left: 0; }
  .tl__body { padding-left: 2rem; }
}
.tl__item::before {
  content: ''; position: absolute; left: -3px; top: 1.65rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--night); border: 1px solid var(--phosphor-dim);
}
@media (min-width: 48rem) { .tl__item::before { left: calc(9.5rem - 3px); } }

.tl__date {
  font-family: var(--mono); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--phosphor); padding-top: 0.15rem;
}
.tl__title { font-size: 1.0625rem; letter-spacing: -0.005em; color: var(--pale); margin: 0 0 0.2rem; }
.tl__meta {
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pale-faint); margin: 0 0 0.45rem;
}
.tl__cat { color: var(--manila); }
.tl__blurb { margin: 0 0 0.6rem; font-size: 0.9375rem; line-height: 1.6; color: var(--pale-soft); }
.tl__foot { margin: 0; display: flex; align-items: center; gap: 0.6rem; }
.tl__foot a { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.1em; color: var(--phosphor-dim); }
.tl__foot a:hover { color: var(--phosphor); }
.tl__empty { margin-top: 2rem; }

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.gallery-grid .card__conclusion a {
  color: var(--stamp); font-family: var(--mono); font-size: 0.6875rem;
  text-decoration: none; margin-right: 0.15rem;
}

/* ==========================================================================
   BIBLIOGRAPHY / LINK LIBRARY
   ========================================================================== */

.biblio { margin-top: 2.25rem; }
.biblio__head {
  font-size: 1.25rem; letter-spacing: -0.01em; color: var(--phosphor);
  padding-bottom: 0.5rem; border-bottom: var(--rule); margin-bottom: 0.75rem;
}
.biblio__blurb { color: var(--pale-soft); font-size: 0.9375rem; max-width: 44rem; margin: 0 0 1rem; }
.biblio__list { list-style: none; margin: 0; padding: 0; }
.biblio__list > li { padding: 0.9rem 0; border-top: var(--rule); }
.biblio__list > li:first-child { border-top: 0; }
.biblio__cite {
  display: block; color: var(--pale); font-size: 0.9375rem;
  line-height: 1.45; text-decoration: none;
}
a.biblio__cite { color: var(--pale); text-decoration: underline; text-decoration-color: var(--hairline); text-underline-offset: 3px; }
a.biblio__cite:hover { color: var(--phosphor); text-decoration-color: var(--phosphor); }
.biblio__stand {
  display: inline-block; margin-top: 0.3rem;
  font-family: var(--mono); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--manila);
}
.biblio__list p { margin: 0.4rem 0 0; font-size: 0.875rem; line-height: 1.55; color: var(--pale-soft); }
.biblio__list > li > a[href] {
  font-family: var(--mono); font-size: 0.625rem; color: var(--phosphor-dim);
  word-break: break-all;
}
