:root {
  --bg: #0e1116;
  --panel: #171b22;
  --panel-2: #1d2230;
  --border: #2a313d;
  --text: #e6e9ef;
  --muted: #8b94a3;
  --accent: #4da3ff;
  --today: #ffcf5c;
  --scheduled: #6ee7a8;
  --expected: #ffb454;
  --ecocal: #b794f6;
  --anchor: #7f8da3;
  --emerging: #4da3ff;
  --active: #6ee7a8;
  --declining: #ffb454;
  --dormant: #6b7280;
  --err: #ff6b6b;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 14px/1.55 -apple-system, "Segoe UI", Roboto, sans-serif;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg); z-index: 5;
}
.topbar h1 { font-size: 18px; margin: 0; font-weight: 600; }
.topbar-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
/* Currently-selected theme echoed into the title bar. */
.topbar-theme {
  color: var(--accent); font-weight: 600; font-size: 14px;
  padding-left: 12px; border-left: 1px solid var(--border);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.topbar-theme::before { content: "▸ "; color: var(--muted); }
.topbar .meta { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.topbar button {
  background: var(--panel-2); color: var(--text); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 9px; cursor: pointer; font-size: 14px;
}
.topbar button:hover { border-color: var(--accent); }
main { max-width: 1040px; margin: 0 auto; padding: 20px; }

.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 20px;
}
.card h2 { margin: 0; font-size: 16px; }
h3.sub { font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); margin: 18px 0 8px; }

/* collapsible cards */
.card-head { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
/* Chevron styled as an obvious clickable button so it reads as expand/collapse. */
.card-head .chev {
  flex: none; color: var(--text); font-size: 13px; line-height: 1;
  width: 24px; height: 24px; display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 6px; background: var(--panel-2);
  transition: transform .15s, border-color .15s, color .15s, background .15s;
}
.card-head:hover .chev { border-color: var(--accent); color: var(--accent); background: var(--panel); }
.collapsible:not(.open) .chev { transform: rotate(-90deg); }
.collapsible:not(.open) .card-body { display: none; }
.card-body { margin-top: 12px; }

.prose p { margin: 0 0 10px; }
.prose strong { color: #fff; }
.prose h1,.prose h2,.prose h3 { font-size: 14px; margin: 12px 0 6px; }
.prose ul { margin: 6px 0; padding-left: 20px; }
.prose code { background: var(--panel-2); padding: 1px 5px; border-radius: 4px; }

.board-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.board-head h2 { font-size: 16px; }
.hint { color: var(--muted); font-size: 12px; font-weight: 400; }
.show-dormant { color: var(--muted); font-size: 12px; cursor: pointer; }

/* ── Theme slider (horizontal scroll) ───────────────────────────────── */
.theme-slider {
  display: flex; gap: 12px; overflow-x: auto; padding: 2px 2px 14px;
  scroll-snap-type: x proximity;
}
.theme-slider::-webkit-scrollbar { height: 8px; }
.theme-slider::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.theme-card {
  flex: 0 0 244px; scroll-snap-align: start; cursor: pointer;
  background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; transition: border-color .12s, transform .12s;
  display: flex; flex-direction: column; gap: 8px;
}
.theme-card:hover { border-color: var(--muted); }
.theme-card.selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
/* Waning (declining): the staleness clock has demoted this theme for going quiet —
   fade it so the decay reads at a glance. Full opacity on hover/selection so it
   stays usable. */
.theme-card.waning { opacity: .58; }
.theme-card.waning:hover, .theme-card.waning.selected { opacity: 1; }
.tc-top { display: flex; align-items: center; gap: 8px; }
.tc-rank { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 13px; }
.tc-name { font-weight: 600; flex: 1; line-height: 1.25; }
.tc-thesis {
  color: var(--muted); font-size: 12px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.tc-foot { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.pill {
  font-size: 10px; padding: 2px 7px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .04em; border: 1px solid;
}
.pill.emerging { color: var(--emerging); border-color: var(--emerging); }
.pill.active   { color: var(--active);   border-color: var(--active); }
.pill.declining{ color: var(--declining);border-color: var(--declining); }
.pill.dormant  { color: var(--dormant);  border-color: var(--dormant); }
.tag {
  font-size: 11px; background: var(--panel-2); border: 1px solid var(--border);
  color: var(--muted); border-radius: 5px; padding: 1px 6px;
}
.stale { color: var(--muted); font-size: 11px; margin-left: auto; }
.tc-age { color: var(--muted); font-size: 11px; margin-left: auto; }
.next-ev { color: var(--expected); font-size: 11px; }
.pin { background: none; border: none; cursor: pointer; font-size: 15px; color: var(--muted); padding: 0; }
.pin.pinned { color: var(--today); }

/* ── Selected theme detail ──────────────────────────────────────────── */
#detail .detail-head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
#detail .detail-head h2 { font-size: 17px; }
.theme-meta { color: var(--muted); margin: 8px 0; }
.theme-meta b { color: var(--text); }
.exposed { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 8px 0; }
.exposed .lbl { color: var(--muted); font-size: 12px; }

/* Inline downward timeline */
.timeline { list-style: none; margin: 16px 0 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 4px; bottom: 4px;
  width: 2px; background: var(--border);
}
.tl-item { position: relative; padding: 7px 0 7px 30px; }
.tl-item .dot {
  position: absolute; left: 1px; top: 10px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--muted);
}
.tl-item.update .dot { background: var(--muted); border-color: var(--muted); }
/* today's marker is amber, but it no longer glows — only the single latest update
   glows (see .tl-glow), so the eye lands on the freshest line, not the whole day. */
.tl-item.today .dot { background: var(--today); border-color: var(--today); }
.tl-item.scheduled .dot { border-color: var(--scheduled); }
.tl-item.expected  .dot { border-color: var(--expected); border-style: dashed; }
/* a forward event whose date has passed — resolved point, sits in the past section */
.tl-item.event-passed .dot { background: var(--muted); border-color: var(--muted); opacity: .55; }
.tl-item.event-passed .tl-text { color: var(--muted); }
.tl-flag.passed { color: var(--muted); }
/* calendar-verified date — feed-confirmed, solid dot + green check */
.tl-item.verified .dot { background: var(--scheduled); border-color: var(--scheduled); }
.tl-flag.verified { color: var(--scheduled); font-weight: 600; }
/* calibrated date — inferred from the digest's measured systematic shift (amber) */
.tl-item.adjusted .dot { border-color: var(--expected); }
.tl-flag.adjusted { color: var(--expected); }
/* structurally-impossible weekend date — surfaced, not trusted */
.tl-flag.weekend { color: var(--err); font-weight: 600; }
/* anchor = durable historical milestone, diamond marker */
.tl-item.anchor .dot {
  border-radius: 2px; transform: rotate(45deg) scale(.82);
  border-color: var(--anchor); background: var(--anchor);
}
.tl-item.anchor .tl-text { color: var(--muted); }
.tl-date { color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.tl-item.today .tl-date { color: var(--today); font-weight: 600; }

/* Per-day card: box a single day's updates together so it's obvious which belong
   to the same day. One dot per day sits on the timeline line to its left. */
.tl-day-card { border: 1px solid var(--border); border-radius: 9px;
  background: var(--panel-2); padding: 8px 12px; margin-top: 2px; }
.tl-item.today .tl-day-card {
  border-color: rgba(255,207,92,.30); background: rgba(255,207,92,.045); }
.tl-day-head { color: var(--muted); font-size: 12px; font-weight: 600;
  font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.tl-item.today .tl-day-head { color: var(--today); }
.tl-day-entry { display: flex; gap: 10px; align-items: baseline; padding: 5px 0; }
.tl-day-entry + .tl-day-entry { border-top: 1px solid var(--border); }
.tl-day-entry .tl-time { color: var(--muted); font-size: 11px; min-width: 42px;
  flex: 0 0 auto; font-variant-numeric: tabular-nums; }
.tl-entry-body { flex: 1 1 auto; min-width: 0; }
.tl-text { margin-top: 1px; }
/* second+ note from the same run on one theme: indented under the shared date,
   with a hairline rule, so grouped intraday notes read as one entry not repeats. */
.tl-more { margin-top: 8px; padding-top: 8px; padding-left: 10px;
  border-top: 1px solid var(--border); }
.tl-flag { font-size: 11px; margin-left: 6px; }
.tl-flag.scheduled { color: var(--scheduled); }
.tl-flag.expected  { color: var(--expected); }
.tl-flag.ecocal    { color: var(--ecocal); }
.tl-flag.analyst   { color: var(--accent); }
.tl-flag.anchor    { color: var(--anchor); }
.tl-divider { color: var(--muted); font-size: 11px; text-transform: uppercase;
  letter-spacing: .08em; margin: 14px 0 4px 30px; }
/* Band labels for the most-current-first timeline. The "latest updates" boundary
   gets a full-width rule so the split between what's COMING and what's HAPPENED
   reads at a glance. */
.tl-divider.tl-upcoming { color: var(--expected); }
.tl-divider.tl-latest {
  margin-left: 0; padding-top: 12px; border-top: 1px solid var(--border);
  color: var(--today); display: flex; align-items: center; gap: 8px;
}
.tl-divider.tl-latest::after { content: ""; flex: 1; height: 1px; background: var(--border); }
/* Toggle that folds away history older than yesterday — made into an obvious,
   tappable pill so traders can see the timeline expands. */
.tl-older-toggle {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 4px 0 10px 30px; padding: 7px 14px;
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 999px;
  color: var(--text); font-size: 12px; font-weight: 600;
  transition: background .12s, border-color .12s, color .12s;
}
.tl-older-toggle::before {
  content: "▾"; display: inline-block; font-size: 13px; color: var(--accent);
  transform: rotate(-90deg); transition: transform .15s;
}
.tl-older-toggle.open::before { transform: rotate(0deg); }
.tl-older-toggle:hover {
  background: var(--panel); border-color: var(--accent); color: var(--accent);
}
.tl-src { color: var(--muted); font-size: 11px; margin-top: 2px; }

.note-box { margin-top: 16px; display: flex; gap: 8px; }
.note-box input {
  flex: 1; background: var(--panel-2); border: 1px solid var(--border);
  color: var(--text); border-radius: 6px; padding: 7px 10px;
}
.note-box button {
  background: var(--accent); border: none; color: #06121f; font-weight: 600;
  border-radius: 6px; padding: 7px 14px; cursor: pointer;
}

/* week-ahead */
.events-chart { height: 0; }
.events-chart.active { height: 150px; margin-bottom: 8px; }
.events-list { list-style: none; margin: 0; padding: 0; }
.events-list li {
  display: flex; gap: 10px; align-items: baseline;
  padding: 5px 0; border-bottom: 1px dashed var(--border);
}
.events-list .ev-date { color: var(--muted); min-width: 92px; font-variant-numeric: tabular-nums; }
.events-list .ev-name { flex: 1 1 auto; min-width: 0; }
.events-list .ev-themes { margin-left: auto; display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: flex-end; flex: 0 0 auto; }
.events-list .ev-theme { color: var(--accent); font-size: 12px; }
.events-list .ev-theme-more { color: var(--muted); font-size: 12px; }

/* catalyst tape */
.catalyst-tape { margin: 14px 0; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel-2); }
.catalyst-tape .card-body { margin-top: 4px; }
.ct-headlabel { display: flex; align-items: baseline; gap: 8px; }
.ct-grouplbl { font-size: 11px; font-weight: 700; letter-spacing: .04em; margin: 8px 0 4px; }
.ct-grouplbl.esc { color: #ff8585; }
.ct-grouplbl.desc { color: #6ee7a8; }
.ct-row { display: flex; gap: 8px; padding: 6px 0; border-top: 1px dashed var(--border); }
.ct-arrow { font-size: 12px; line-height: 1.5; }
.ct-row.escalation .ct-arrow { color: #ff8585; }
.ct-row.deescalation .ct-arrow { color: #6ee7a8; }
.ct-body { flex: 1; }
.ct-headline { font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.ct-impact { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ct-row.fired .ct-headline { text-decoration: line-through; opacity: .6; }
.ct-fired { font-size: 11px; color: var(--today); margin-top: 3px; }
.ct-fired-tag { font-weight: 700; margin-right: 5px; }

/* theme interconnection map */
.theme-graph { height: 660px; width: 100%; }
/* Map scroller: reveal the top-N connected themes, core first. */
.map-controls { display: flex; align-items: center; gap: 12px; margin: 0 0 10px; flex-wrap: wrap; }
.map-controls:empty { display: none; }
.mc-label { color: var(--muted); font-size: 12px; white-space: nowrap; }
.mc-slider { flex: 1 1 220px; max-width: 360px; accent-color: var(--accent); cursor: pointer; }
.map-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 6px; }
.lg-item { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.lg-swatch { width: 14px; height: 0; border-top: 3px solid; border-radius: 2px; }
.lg-swatch.dashed { border-top-style: dashed; }
.lg-note { color: var(--muted); font-size: 11px; font-style: italic; margin-left: auto; }

.empty, .error { padding: 16px; border-radius: 8px; text-align: center; }
.empty { color: var(--muted); border: 1px dashed var(--border); }
.error { color: var(--err); border: 1px solid var(--err); background: rgba(255,107,107,.08); }

.toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--panel-2); border: 1px solid var(--border); color: var(--text);
  padding: 10px 16px; border-radius: 8px; z-index: 20;
}
.toast.err { border-color: var(--err); color: var(--err); }

/* Today's picture — morning + intraday segments (decision #4: kept separate) */
.pic-seg { padding: 4px 0 8px; }
.pic-seg + .pic-seg { border-top: 1px dashed var(--border); margin-top: 10px; padding-top: 12px; }
.pic-seg-label {
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.pic-seg.intraday .pic-seg-label { color: var(--today); }
.pic-seg.intraday {
  border-left: 3px solid var(--today); padding-left: 12px; margin-left: 2px;
  background: linear-gradient(90deg, rgba(255,207,92,0.06), transparent 60%);
}

/* --------------------------------------------------------------------------- */
/* Mobile — reclaim text width and bump legibility. No breakpoint existed, so   */
/* the desktop 20px main + 20px card padding + 30px timeline gutter left only a */
/* narrow strip for text on a phone. Trim the chrome, enlarge the body font.    */
/* --------------------------------------------------------------------------- */
@media (max-width: 640px) {
  body { font-size: 14.5px; line-height: 1.58; }
  main { padding: 12px; }
  .topbar { padding: 11px 14px; }
  .topbar h1 { font-size: 16px; }
  /* On a phone, stack the selected theme on its own line below the title so it
     can run the full width instead of being squeezed beside it. */
  .topbar-left { flex: 1 1 auto; min-width: 0; flex-direction: column; align-items: flex-start; gap: 2px; }
  .topbar-theme { font-size: 13px; padding-left: 0; border-left: none; max-width: 100%; }
  .topbar-theme::before { content: "▸ "; }
  /* Hide the run timestamp on mobile so it can't overlap the selected theme. */
  #last-run { display: none; }

  .card { padding: 14px 12px; margin-bottom: 14px; border-radius: 9px; }
  .card h2 { font-size: 15px; }
  #detail .detail-head h2 { font-size: 16px; }

  /* Timeline: shrink the left gutter so update text gets the width back. */
  .timeline::before { left: 6px; }
  .tl-item { padding-left: 22px; }
  .tl-item .dot { left: 0; width: 12px; height: 12px; top: 9px; }
  .tl-divider, .tl-older-toggle { margin-left: 22px; }
  .tl-day-card { padding: 8px 10px; }
  .tl-day-entry { gap: 8px; }
  .tl-day-entry .tl-time { min-width: 34px; }
  .tl-more { padding-left: 8px; }

  /* Forward-event rows: let long names wrap, drop theme chips to their own line. */
  .events-list li { flex-wrap: wrap; }
  .events-list .ev-date { min-width: 64px; }
  .events-list .ev-themes { margin-left: 0; flex-basis: 100%; justify-content: flex-start; }

  /* On a phone the Escalation / De-escalation columns were far narrower than Latest,
     so their text stacked (breaking mid-word) into a tall, unreadable column. Give all
     three text columns the same width as Latest (arrows kept) — the matrix scrolls
     horizontally, so the width is fine. NOTE: #matrix prefix needed so these WIN over
     the base .col-* widths, which appear later in the file (equal specificity else). */
  #matrix { min-width: 1030px; }
  #matrix .col-theme { width: 150px; }
  #matrix .col-latest, #matrix .col-esc, #matrix .col-desc { width: 232px; }
  #matrix .col-att { width: 150px; }

  /* The theme map is very tall on desktop; give the phone a shorter canvas. */
  .theme-graph { height: 420px; }
  /* The theme map is a pan/zoom node graph — it needs canvas width a phone can't
     give, so the tree pans off-screen and reads as blank. Hide it on mobile; it's
     supporting context and stays available on desktop. */
  #map-card { display: none; }
  .events-chart.active { height: 128px; }

  /* Narrower theme cards so more of the next card peeks into the slider. */
  .theme-card { flex: 0 0 210px; }
}

/* ---------------------------------------------------------------------------
   Theme matrix embedded at the top of the deep dashboard (#matrix-card).
   Mirrors grid.css; the matrix-specific classes are unique so they don't clash.
   --------------------------------------------------------------------------- */
#matrix-card { margin-bottom: 18px; }
#matrix-card .board-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.grid-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  overflow-x: auto; }  /* on a phone the wide matrix scrolls INSIDE its panel, not the page */
.matrix { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 13px; table-layout: fixed; }
.matrix thead th {
  position: sticky; top: 0; z-index: 2; background: var(--panel-2);
  text-align: left; font-weight: 600; color: var(--muted); font-size: 11px;
  text-transform: uppercase; letter-spacing: .05em; padding: 10px 12px;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.matrix tbody td { padding: 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.matrix tbody tr:last-child td { border-bottom: none; }
.matrix tbody tr:hover { background: rgba(255,255,255,0.02); }

.col-rank  { width: 34px; }
.col-theme { width: 158px; }
.col-latest{ width: 34%; }
.col-esc, .col-desc { width: 15%; }
.col-att   { width: 150px; }
/* slug/scenario text must wrap rather than force the table wider than the page */
.m-theme-name, .m-latest, .m-scn { overflow-wrap: anywhere; }

.m-rank { color: var(--muted); font-variant-numeric: tabular-nums; font-weight: 700; }

/* Slug rendered as a deliberate identifier — monospace "ticker" token, not a title. */
.m-theme-name {
  display: block; text-decoration: none; line-height: 1.35;
  font-family: ui-monospace, SFMono-Regular, Menlo, "Cascadia Mono", monospace;
  font-size: 13px; font-weight: 600; letter-spacing: -0.2px; color: var(--text);
}
.m-theme-name:hover { color: var(--accent); }
.m-theme-meta { margin-top: 5px; display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.m-badge { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px;
  background: var(--panel-2); color: var(--muted); border: 1px solid var(--border); border-radius: 5px; padding: 1px 6px; }
.m-status { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; border-radius: 4px;
  padding: 0 5px; border: 1px solid var(--border); color: var(--muted); }
.m-status.declining { color: var(--declining); border-color: var(--declining); }
.m-status.emerging  { color: var(--emerging);  border-color: var(--emerging); }
.m-age { color: var(--muted); font-size: 10.5px; font-variant-numeric: tabular-nums; }
.m-age::before { content: "· "; }

.explore-link { color: var(--accent); text-decoration: none; font-size: 12px; white-space: nowrap; }
.explore-link:hover { text-decoration: underline; }

.m-toggle-row td { text-align: center; padding: 0; }
.m-toggle { cursor: pointer; color: var(--accent); font-size: 12.5px; padding: 12px !important;
  background: var(--panel-2); user-select: none; }
.m-toggle:hover { background: var(--panel); }

.m-latest { color: var(--text); line-height: 1.45; }
.m-when { margin-top: 5px; font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.m-when-age { color: var(--declining); }

/* scenario cells: escalation / de-escalation — same hues as the catalyst tape */
.m-scn { line-height: 1.45; padding-left: 16px; position: relative; }
.m-scn::before { position: absolute; left: 0; top: 0; font-size: 11px; }
.col-esc .m-scn { color: var(--text); }
.col-esc .m-scn::before { content: "▲"; color: #ff8585; }
.col-desc .m-scn { color: var(--text); }
.col-desc .m-scn::before { content: "▼"; color: #6ee7a8; }
.m-scn.soft { color: var(--muted); font-style: italic; }
.m-scn.empty { color: var(--border); }
.m-scn .spec { font-size: 9px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); border: 1px solid var(--border); border-radius: 3px; padding: 0 3px; margin-left: 5px; }
.matrix .empty { color: var(--muted); padding: 16px; }

/* attention column — condensed inline-SVG sparkline (narrow + tall) + current z /
   3-day change. Mirrors grid.css; tuned taller for the 1040px dashboard. */
.m-att { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.m-spark { display: block; width: 100%; height: 84px; border: 1px solid var(--border);
  border-radius: 5px; background: rgba(255,255,255,0.015); }
.m-att-row { display: flex; align-items: baseline; justify-content: space-between; width: 100%; }
.m-att-v { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 13.5px; }
.m-att-d { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 11px; }
.m-att-d .m-att-s { margin-left: 3px; }
.m-att-s { color: var(--muted); font-size: 10px; font-variant-numeric: tabular-nums; }
.m-att.blind { color: #a36; font-size: 11px; font-style: italic; gap: 1px; }
.m-att.blind .m-att-s { color: var(--muted); font-style: normal; }
