/* The recap page — the day's numbers in stat cards, bars, tables and
   lists; the shapes are the site's own. */
.rc-note { color: var(--muted); margin: 8px 0 0; }
.rc-facts {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
}
.rc-facts dt { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); padding-top: 2px; }
.rc-facts dd { margin: 0; }
.rc-list { margin: 14px 0 0; padding-left: 0; list-style: none; counter-reset: rc; }
.rc-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: rc;
}
.rc-list li::before {
  content: counter(rc);
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sign-bg);
  color: var(--sign-ink);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
  align-self: center;
}
.rc-list li:last-child { border-bottom: 0; }
.rc-list .rc-name { flex: 1; min-width: 0; }
.rc-list .rc-num { color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.rc-quests { min-width: 0; }
.rc-quests .code { margin-right: 6px; }
.rc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; }
.rc-chips .code { margin: 0; }
#rc-stats .stat-value { font-size: 1.4rem; }
