/* Mobile-first. Base rules target a phone; media queries widen from there. */

/* The `hidden` attribute must beat any class that sets `display`. Without this
   an author rule like `.gate { display: grid }` silently wins over the browser's
   `[hidden] { display: none }`, and JS setting `el.hidden = true` does nothing. */
[hidden] { display: none !important; }

:root {
  color-scheme: dark light;

  /* Dark is the default: this gets used on a platform at night far more than
     at a desk, and the frosted panels read better over a deep ground. */
  --ink:        #eef2ff;
  --ink-dim:    #9fabc9;
  --ink-faint:  #6d7899;

  --ground:     #0b1020;
  --ground-2:   #131a30;

  /* Frosted panel: a translucent fill plus a light top edge is what sells the
     glass; the blur itself does the rest. */
  --glass:      rgba(255, 255, 255, .055);
  --glass-2:    rgba(255, 255, 255, .085);
  --edge:       rgba(255, 255, 255, .14);
  --edge-soft:  rgba(255, 255, 255, .07);

  --accent:     #7aa2ff;
  --accent-dim: rgba(122, 162, 255, .18);
  --ontime:     #5fd6a4;
  --late:       #ff9a6a;
  --late-bg:    rgba(255, 154, 106, .13);

  --radius:     20px;
  --radius-sm:  13px;
  --shadow:     0 8px 32px rgba(0, 0, 0, .34);

  --tap:        46px;   /* minimum comfortable touch target */
}

@media (prefers-color-scheme: light) {
  :root {
    --ink:       #10162a;
    --ink-dim:   #4f5a76;
    --ink-faint: #7b86a3;

    --ground:    #eaf0fb;
    --ground-2:  #dde7f8;

    --glass:     rgba(255, 255, 255, .58);
    --glass-2:   rgba(255, 255, 255, .74);
    --edge:      rgba(255, 255, 255, .85);
    --edge-soft: rgba(16, 22, 42, .07);

    --accent:     #2a5fd8;
    --accent-dim: rgba(42, 95, 216, .12);
    --ontime:     #12805a;
    --late:       #c2521f;
    --late-bg:    rgba(194, 82, 31, .1);

    --shadow:    0 8px 30px rgba(24, 40, 80, .12);
  }
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--ground);
  color: var(--ink);
  font: 16px/1.5 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── backdrop ─────────────────────────────────────────────────────────── */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(170deg, var(--ground), var(--ground-2));
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}

.b1 { width: 62vmax; height: 62vmax; top: -24vmax; left: -20vmax; background: #3b6ef5; }
.b2 { width: 50vmax; height: 50vmax; top:  18vmax; right: -22vmax; background: #9b5cf0; opacity: .38; }
.b3 { width: 44vmax; height: 44vmax; bottom: -20vmax; left: 8vmax; background: #17a2a2; opacity: .32; }

@media (prefers-color-scheme: light) {
  .blob { opacity: .34; filter: blur(80px); }
  .b2 { opacity: .26; }
  .b3 { opacity: .22; }
}

/* A phone repainting three large blurred layers on scroll is wasteful; the
   backdrop is decorative, so drop it where motion is unwelcome. */
@media (prefers-reduced-motion: reduce) {
  .blob { filter: blur(50px); }
}

/* ── layout ───────────────────────────────────────────────────────────── */

.shell {
  max-width: 720px;
  margin-inline: auto;
  padding: 0 16px 40px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}

.glass {
  background: var(--glass);
  border: 1px solid var(--edge-soft);
  border-top-color: var(--edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.masthead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: calc(20px + env(safe-area-inset-top)) 16px;
}

.masthead h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 640;
  letter-spacing: -.025em;
}

.env {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--ink-dim);
  background: var(--glass-2);
  border: 1px solid var(--edge-soft);
}

/* ── picker ───────────────────────────────────────────────────────────── */

.picker .go { grid-area: go; }

.picker {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "from swap"
    "to   swap"
    "go   go";
  gap: 10px 12px;
  padding: 16px;
}

.field { min-width: 0; }
.picker .field:nth-of-type(1) { grid-area: from; }
.picker .field:nth-of-type(2) { grid-area: to; }

.field label {
  display: block;
  margin-bottom: 4px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ink-faint);
}

.field input {
  width: 100%;
  min-height: var(--tap);
  padding: 10px 13px;
  /* 16px keeps iOS Safari from zooming the viewport on focus. */
  font: 16px/1.4 inherit;
  color: var(--ink);
  background: var(--glass-2);
  border: 1px solid var(--edge-soft);
  border-radius: var(--radius-sm);
  appearance: none;
}

.field input::placeholder { color: var(--ink-faint); }

.field input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.picker .swap {
  grid-area: swap;
  align-self: center;
  width: var(--tap);
  height: var(--tap);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--edge-soft);
  background: var(--glass-2);
  color: var(--ink-dim);
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
}

.swap svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.swap:active { transform: scale(.92); }
.swap:hover { color: var(--accent); }

.go {
  min-height: var(--tap);
  margin-top: 2px;
  font: 600 1rem/1 inherit;
  color: #fff;
  background: linear-gradient(135deg, #5b86f7, #7a5cf0);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(72, 105, 235, .34);
}

.go:active { transform: translateY(1px); }

/* ── status and alerts ────────────────────────────────────────────────── */

.status {
  min-height: 1.3em;
  margin: 14px 4px 0;
  font-size: .82rem;
  color: var(--ink-dim);
}

.status.error { color: var(--late); }

.alerts:not(:empty) { margin-top: 12px; display: grid; gap: 8px; }

.alert {
  padding: 11px 14px;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  background: var(--late-bg);
  border: 1px solid var(--edge-soft);
  border-left: 3px solid var(--late);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── train cards ──────────────────────────────────────────────────────── */

main { display: grid; gap: 12px; margin-top: 14px; }

.train {
  background: var(--glass);
  border: 1px solid var(--edge-soft);
  border-top-color: var(--edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  overflow: hidden;
}

.train-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  width: 100%;
  padding: 15px;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.train-head:active { background: var(--glass-2); }

.depart { display: flex; flex-direction: column; gap: 1px; min-width: 76px; }

.clock {
  font-size: 1.5rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.clock.struck {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.revised {
  font-size: 1.5rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--late);
}

.countdown { font-size: .74rem; color: var(--ink-faint); }

.mid { min-width: 0; }

.line-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swatch { width: 8px; height: 8px; border-radius: 50%; flex: none; }

.arrive { margin-top: 3px; font-size: .95rem; }
.arrive strong { font-variant-numeric: tabular-nums; font-weight: 640; }

.history {
  margin-top: 4px;
  font-size: .75rem;
  color: var(--ink-dim);
  font-variant-numeric: tabular-nums;
}

/* A handful of days is still worth showing, but should not read with the same
   authority as a month of them. */
.history.thin { color: var(--ink-faint); font-style: italic; }

.tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.track {
  font-size: .76rem;
  font-weight: 650;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--glass-2);
  border: 1px solid var(--edge-soft);
}

.badge {
  font-size: .76rem;
  font-weight: 640;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.badge.ontime { color: var(--ontime); background: rgba(95, 214, 164, .12); }
.badge.late { color: var(--late); background: var(--late-bg); }
.badge.unknown { color: var(--ink-faint); background: var(--glass-2); border-color: var(--edge-soft); }
.badge.scheduled { color: var(--ink-faint); background: var(--glass-2); border-color: var(--edge-soft); }

/* A timetable entry is real information but not live; mute it slightly so the
   eye lands on the trains that have confirmed status. */
.train:has(.badge.scheduled) .clock { color: var(--ink-dim); }

.chev {
  grid-column: 2;
  justify-self: end;
  align-self: center;
  width: 18px; height: 18px;
  fill: none; stroke: var(--ink-faint); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .22s ease;
}

.train-head[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* ── expanded detail ──────────────────────────────────────────────────── */

.detail { border-top: 1px solid var(--edge-soft); }

.routemap {
  display: block;
  width: 100%;
  height: auto;
  padding: 14px 14px 0;
}

.routemap .rail-bg { fill: none; stroke: var(--ink-faint); stroke-width: 2; opacity: .35; stroke-linecap: round; stroke-linejoin: round; }
.routemap .rail-seg { fill: none; stroke: var(--accent); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.routemap .dot { fill: var(--ground); stroke: var(--ink-faint); stroke-width: 1.6; }
.routemap .dot.on-seg { stroke: var(--accent); }
.routemap .dot.end { fill: var(--accent); stroke: var(--accent); }
.routemap .dot.passed { opacity: .4; }
.routemap .live-train { fill: var(--late); stroke: var(--ground); stroke-width: 2.5; }
.routemap .maplabel { fill: var(--ink-dim); font-size: 9px; font-weight: 600; }
.map-location-legend { display: flex; align-items: center; gap: 7px; padding: 2px 16px 8px; color: var(--ink-dim); font-size: .72rem; }
.map-location-key { width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: var(--late); border: 1px solid var(--ground); }

.stops { padding: 8px 15px 15px; }

.stop {
  display: grid;
  /* Wide enough for "10:15 AM" on one line; wrapping it reads as two stops. */
  grid-template-columns: 4.9rem 1fr;
  gap: 2px 12px;
  align-items: baseline;
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--edge-soft);
  margin-left: 3px;
  font-size: .9rem;
}

.stop.departed { color: var(--ink-faint); }
.stop.segment { border-left-color: var(--accent); }

.stop.endpoint {
  border-left-color: var(--accent);
  font-weight: 640;
}

.stop time {
  font-variant-numeric: tabular-nums;
  font-size: .84rem;
  color: var(--ink-faint);
  white-space: nowrap;
}

.stop.endpoint time { color: var(--ink-dim); }
.stop .note {
  grid-column: 2;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--accent);
}

.stop.departed .note { color: var(--ink-faint); }

.empty {
  padding: 34px 18px;
  text-align: center;
  color: var(--ink-dim);
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px dashed var(--edge-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.foot {
  margin-top: 22px;
  font-size: .72rem;
  color: var(--ink-faint);
  text-align: center;
}

/* A second line inside the footer: the quota is the point, the size of the
   archive is an aside, so it sits below and a shade quieter. */
.foot-data {
  display: block;
  margin-top: 3px;
  opacity: .8;
}

/* ── wider screens ────────────────────────────────────────────────────── */

@media (min-width: 560px) {
  .picker {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "from swap to"
      "go   go   go";
    align-items: end;
  }
  .swap { align-self: end; margin-bottom: 1px; }

  /* The chevron gets its own column; sharing one with the tags stacked the
     two on top of each other. */
  .train-head { grid-template-columns: auto 1fr auto auto; }
  .tags {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
  .chev { grid-column: 4; grid-row: 1; align-self: center; margin-left: 12px; }
  .stop { grid-template-columns: 5.2rem 1fr auto; }
  .stop .note { grid-column: 3; }
}

/* ── tabs ─────────────────────────────────────────────────────────────── */

.tabs {
  display: flex;
  gap: 4px;
  margin-top: 14px;
  padding: 4px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--edge-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.tab {
  flex: 1;
  min-height: 38px;
  font: 600 .88rem/1 inherit;
  color: var(--ink-dim);
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.tab.active {
  color: var(--ink);
  background: var(--glass-2);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .18);
}

.range { display: flex; gap: 6px; margin-top: 14px; }

.chip {
  min-height: 34px;
  padding: 0 13px;
  font: 600 .78rem/1 inherit;
  color: var(--ink-dim);
  background: var(--glass);
  border: 1px solid var(--edge-soft);
  border-radius: 999px;
  cursor: pointer;
}

.chip.active { color: #fff; background: var(--accent); border-color: transparent; }

/* ── stat tiles ───────────────────────────────────────────────────────── */

.kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.kpi {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--edge-soft);
  border-top-color: var(--edge);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.kpi .label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.kpi .value {
  margin-top: 5px;
  font-size: 1.7rem;
  font-weight: 650;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums;
}

.kpi .sub { font-size: .72rem; color: var(--ink-faint); }

/* The journey tile carries a sample count that needs a few words rather than a
   number, so it takes the whole row instead of a quarter of one. */
.kpis .kpi.wide { grid-column: 1 / -1; }

/* Where a figure came from, set under the tiles it qualifies. Same voice as a
   card caption, but this one sits outside a card. */

/* ── chart ────────────────────────────────────────────────────────────── */

.card {
  margin-top: 12px;
  padding: 15px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--edge-soft);
  border-top-color: var(--edge);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.card h2 {
  margin: 0 0 2px;
  font-size: .95rem;
  font-weight: 640;
  letter-spacing: -.01em;
}

.card .caption { margin: 0 0 12px; font-size: .74rem; color: var(--ink-faint); }

/* Validated single-series hue (dataviz reference palette, slot 1). */
.chart { --series-1: #3987e5; display: block; width: 100%; height: auto; }
@media (prefers-color-scheme: light) { .chart { --series-1: #2a78d6; } }

.chart .bar { fill: var(--series-1); }
.chart .bar-hit { fill: transparent; cursor: pointer; }
.chart .bar-hit:hover + .bar, .chart .bar-hit:focus-visible + .bar { filter: brightness(1.18); }
.chart .axis { stroke: var(--edge-soft); stroke-width: 1; }
.chart .tick { fill: var(--ink-faint); font-size: 8px; }
.chart .vlabel { fill: var(--ink-dim); font-size: 8px; font-weight: 600; }

.tip {
  position: fixed;
  z-index: 20;
  padding: 7px 10px;
  font-size: .76rem;
  line-height: 1.35;
  color: var(--ink);
  background: var(--ground-2);
  border: 1px solid var(--edge-soft);
  border-radius: 9px;
  box-shadow: var(--shadow);
  pointer-events: none;
  white-space: nowrap;
}

/* ── history table ────────────────────────────────────────────────────── */

table.hist {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
}

table.hist th {
  text-align: left;
  padding: 7px 10px 7px 0;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--edge-soft);
  white-space: nowrap;
}

table.hist td {
  padding: 9px 10px 9px 0;
  border-bottom: 1px solid var(--edge-soft);
  white-space: nowrap;
}

table.hist td.trainno { font-weight: 640; }
table.hist td.thin { color: var(--ink-faint); font-style: italic; }
table.hist tr:last-child td { border-bottom: none; }

/* Mobile: a wide table can only scroll sideways, which hides the very
   columns worth comparing. Each train becomes its own block instead, with the
   column name carried in by data-label. */
@media (max-width: 559px) {
  table.hist thead { display: none; }
  table.hist, table.hist tbody, table.hist tr, table.hist td { display: block; width: 100%; }

  table.hist tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--edge-soft);
  }
  table.hist tr:last-child { border-bottom: none; }

  table.hist td {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 2px 0;
    border: none;
  }

  table.hist td::before {
    content: attr(data-label);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }

  /* The train number heads its own block rather than reading as a field. */
  table.hist td.trainno {
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 6px;
  }
  table.hist td.trainno::before { content: none; }

  /* Departure time sits beside the train number. */
  table.hist td:nth-child(2) {
    margin-top: -26px;
    justify-content: flex-end;
  }
  table.hist td:nth-child(2)::before { content: none; }
}

@media (min-width: 560px) {
  .kpis { grid-template-columns: repeat(4, 1fr); }
}

/* ── connecting journeys ──────────────────────────────────────────────── */

.transfer {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
  font-size: .78rem;
  color: var(--ink-dim);
}

.transfer .xicon { font-size: .85rem; line-height: 1; }

.transfer.tight { color: var(--late); }
.transfer.broken { color: var(--late); font-weight: 640; }

.badge.change {
  color: var(--accent);
  background: var(--accent-dim);
}

.leghead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding: 12px 15px 4px;
  font-size: .82rem;
}

.leghead .legseg {
  color: var(--ink-faint);
  font-size: .76rem;
}

.leghead .track { margin-left: auto; font-size: .72rem; padding: 2px 8px; }

/* The change itself, drawn as a break between the two legs rather than as
   another stop — it is the part of the journey that can fail. */
.changerow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin: 4px 15px 0;
  padding: 9px 12px;
  font-size: .8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  color: var(--ink);
}

.changerow .wait { font-size: .76rem; font-weight: 600; color: var(--ink-dim); }
.changerow.tight { background: var(--late-bg); }
.changerow.tight .wait { color: var(--late); }
.changerow.broken { background: var(--late-bg); }
.changerow.broken .wait { color: var(--late); font-weight: 700; }

.stops.thinnote { color: var(--ink-faint); font-size: .82rem; font-style: italic; }

/* The change stands out from ordinary stops without competing with the two
   endpoints, which stay filled. */
.routemap .dot.xfer { fill: var(--ground); stroke: var(--accent); stroke-width: 2.6; }

/* ── sign in ──────────────────────────────────────────────────────────── */

.gate {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 24px max(16px, env(safe-area-inset-left));
}

.login {
  width: 100%;
  max-width: 380px;
  padding: 26px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.login h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 640;
  letter-spacing: -.02em;
}

.login .lead {
  margin: -4px 0 6px;
  font-size: .84rem;
  color: var(--ink-dim);
}

.login .go { margin-top: 4px; }

.loginerr {
  min-height: 1.2em;
  margin: 0;
  font-size: .82rem;
  color: var(--late);
}

.signout {
  margin-left: auto;
  padding: 6px 12px;
  font: 600 .74rem/1 inherit;
  color: var(--ink-dim);
  background: var(--glass);
  border: 1px solid var(--edge-soft);
  border-radius: 999px;
  cursor: pointer;
}

.signout:hover { color: var(--accent); border-color: var(--accent); }

/* Train make-up and occupancy. Sits with the history line: both are context
   about the train rather than the times a rider acts on. */
.consist {
  margin-top: 3px;
  font-size: .78rem;
  color: var(--ink-dim);
}

/* The duration explainer: a quiet toggle, not a paragraph competing with the
   number above it. */
.explain { margin-top: 8px; }

.explain-toggle {
  padding: 0;
  font: inherit;
  font-size: .72rem;
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: 0;
  cursor: pointer;
}
.explain-toggle:hover { color: var(--accent); }

.explain-body {
  margin: 6px 0 0;
  font-size: .74rem;
  line-height: 1.45;
  color: var(--ink-dim);
}
