/* UseTheseCards — shared shell for the static pages (compliance, rankings, changelog).
 * Same palette as app/css/app.css; deliberately small and framework-free.
 * Used by: app/pages/*.html, generated app/best/*.html, generated news.html and the
 * internal app/internal/data-changelog.html.
 */

:root {
  --page:#f9f9f7; --surface:#fcfcfb; --ink:#0b0b0b; --ink-2:#52514e; --muted:#898781;
  --hairline:#e1e0d9;
  --accent:#2a78d6; --accent-deep:#1c5cab; --accent-wash:#cde2fb; --accent-wash2:#f3f8fe;
  --good-text:#006300; --warn-bg:#fdf1d4; --warn-ink:#8a5a00; --critical:#d03b3b;
  --bar-bg:#0b0b0b; --bar-ink:#cfcdc6;
}
@media (prefers-color-scheme: dark) {
  :root {
    --page:#0d0d0d; --surface:#1a1a19; --ink:#ffffff; --ink-2:#b8b6b0; --muted:#8a8880;
    --hairline:#2e2e2c;
    --accent:#5ea0ea; --accent-deep:#9cc6f4; --accent-wash:#16304d; --accent-wash2:#13212f;
    --good-text:#6fe06f; --warn-bg:#3a2d10; --warn-ink:#ffd483; --critical:#f06a6a;
    --bar-bg:#000000; --bar-ink:#b8b6b0;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--page); color: var(--ink); min-height: 100dvh;
  display: flex; flex-direction: column;
}
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
a { color: var(--accent-deep); }
[hidden] { display: none !important; }

/* ---------- chrome ---------- */
.sitebar {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: var(--bar-bg); color: var(--bar-ink); font-size: 11.5px; padding: 7px 20px;
}
.sitebar a { color: #fff; font-weight: 600; }
.sitenav {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--surface); border-bottom: 1px solid var(--hairline); padding: 13px 20px;
}
.sitenav .logo { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.sitenav .logo em { color: var(--accent); font-style: normal; }
.sitenav .links { display: flex; gap: 16px; flex-wrap: wrap; }
.sitenav .links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-2); text-decoration: none;
  padding-bottom: 3px; border-bottom: 2.5px solid transparent;
}
.sitenav .links a.on { color: var(--accent-deep); border-bottom-color: var(--accent); }

main { flex: 1; width: 100%; max-width: 760px; margin: 0 auto; padding: 26px 20px 44px; }
main.wide { max-width: 1000px; }

.bc { font-size: 11px; color: var(--muted); }
h1 { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; }
h2 { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; margin: 24px 0 7px; }
p, li { font-size: 14.5px; color: var(--ink-2); line-height: 1.62; }
p + p { margin-top: 10px; }
ul, ol { margin: 8px 0 0 20px; }
li { margin-bottom: 6px; }
strong, b { color: var(--ink); font-weight: 700; }
.lede { font-size: 15.5px; color: var(--ink); }
.stamp { font-size: 11.5px; color: var(--muted); margin-top: 6px; }

.callout {
  background: var(--accent-wash2); border: 1px solid var(--hairline); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 13px 15px; margin: 16px 0;
}
.callout p, .callout li { font-size: 13.5px; }
/* an inline "report an error" button has to read as a link, because it is one */
main button[data-report], .disclosure button[data-report] {
  color: var(--accent-deep); font-size: inherit; font-weight: inherit;
  text-decoration: underline; text-underline-offset: 2px;
}
.disclosure {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 11px 14px; font-size: 12.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 16px;
}
.disclosure b { color: var(--ink); }

/* ---------- rankings ---------- */
.cattabs { display: flex; gap: 7px; flex-wrap: wrap; margin: 14px 0 18px; }
.chip {
  font-size: 12.5px; font-weight: 600; color: var(--ink-2); background: var(--surface);
  border: 1px solid var(--hairline); border-radius: 99px; padding: 7px 13px; text-decoration: none;
}
.chip.on { background: var(--ink); color: var(--page); border-color: var(--ink); }

.ranklist { border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; background: var(--surface); }
.rank { display: flex; gap: 13px; padding: 14px 16px; border-bottom: 1px solid var(--hairline); align-items: flex-start; }
.rank:last-child { border-bottom: none; }
.rank .rk { font-size: 15px; font-weight: 800; color: var(--muted); min-width: 20px; padding-top: 1px; }
.rank .body { flex: 1; min-width: 0; }
.rank .nm { font-size: 14.5px; font-weight: 750; color: var(--ink); }
.rank .iss { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.rank .why { font-size: 12.5px; color: var(--ink-2); margin-top: 4px; line-height: 1.5; }
.rank .ctx { font-size: 11.5px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.rank .verified { font-size: 10.5px; color: var(--muted); margin-top: 6px; }
.rank .right { text-align: right; flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.rank .rate { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--good-text); white-space: nowrap; }
.rank .rate small { font-size: 11px; font-weight: 700; color: var(--muted); display: block; }
.rank .cta {
  font-size: 12px; font-weight: 700; color: var(--accent-deep); background: var(--accent-wash);
  border-radius: 9px; padding: 8px 12px; text-decoration: none; white-space: nowrap;
}
.tag {
  display: inline-block; font-size: 9.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 99px; padding: 2px 7px; margin-left: 6px; vertical-align: 1px;
  background: var(--warn-bg); color: var(--warn-ink);
}
.catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); gap: 12px; margin-top: 16px; }
.catcard {
  display: block; background: var(--surface); border: 1px solid var(--hairline); border-radius: 13px;
  padding: 13px 15px; text-decoration: none;
}
.catcard .t { font-size: 14.5px; font-weight: 750; color: var(--ink); }
.catcard .s { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.45; }
.bigcard {
  display: block; background: var(--accent-wash2); border: 1px solid var(--accent-wash);
  border-radius: 14px; padding: 16px 18px; text-decoration: none; margin-top: 16px;
}
.bigcard .t { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.bigcard .s { font-size: 13px; color: var(--ink-2); margin-top: 5px; line-height: 1.55; max-width: 74ch; }
.bigcard .go { font-size: 12.5px; font-weight: 750; color: var(--accent-deep); margin-top: 9px; }

/* ---------- signup offers (scripts/build-subs.mjs) ---------- */
.chip.alt { background: var(--accent-wash2); border-color: var(--accent-wash); color: var(--accent-deep); font-weight: 750; }
.chip.alt.on { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--page); }
.offerlist { border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; background: var(--surface); margin-top: 12px; }
.orow { display: flex; gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--hairline); align-items: flex-start; }
.orow:last-child { border-bottom: none; }
.orow .body { flex: 1; min-width: 0; }
.orow .nm { font-size: 14.5px; font-weight: 750; color: var(--ink); }
.orow .iss { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.orow .why { font-size: 12.5px; color: var(--ink-2); margin-top: 4px; line-height: 1.5; }
.orow .ctx { font-size: 11.5px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.orow .verified { font-size: 10.5px; color: var(--muted); margin-top: 6px; }
.orow .right { flex: 0 0 auto; text-align: right; width: 200px; }
.orow .bonus { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--good-text); white-space: nowrap; }
.orow .bonus.none { font-size: 13px; font-weight: 700; color: var(--muted); white-space: normal; line-height: 1.35; }
.orow .dollars { font-size: 11px; font-weight: 700; color: var(--muted); margin-top: 2px; }
.orow .dollars.none { font-weight: 600; font-style: italic; line-height: 1.35; white-space: normal; }
.orow .terms { font-size: 11px; color: var(--ink-2); margin-top: 5px; line-height: 1.4; }
.tag.hot { background: var(--accent-wash); color: var(--accent-deep); }
/* the one outbound card link on a row — deliberately quiet: it is a way to check
   the issuer's own page, not a call to apply, and today it earns us nothing */
.gocta {
  display: inline-block; margin-top: 7px; font-size: 11.5px; font-weight: 700;
  color: var(--accent-deep); background: var(--accent-wash); border-radius: 14px;
  padding: 6px 12px; text-decoration: none; max-width: 100%; line-height: 1.4;
}
.gocta:hover { text-decoration: underline; }
.gonote { font-size: 11px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
/* phone: the bonus leads, then the card — a 200px side column would crush both */
@media (max-width: 640px) {
  .orow { flex-direction: column; gap: 7px; }
  .orow .right {
    width: auto; text-align: left; order: -1;
    display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px;
  }
  .orow .bonus.none { font-size: 15px; }
  .orow .dollars, .orow .terms { margin-top: 0; }
  .orow .dollars.none { font-style: normal; }
}

/* ---------- news (scripts/build-news.mjs) ---------- */
/* One tone per tag, built from the palette above so news chips read as the same
 * system as the rankings chips. A devaluation must never look prettier than a launch. */
:root {
  --n-bad-bg:#fbe4e4; --n-bad-ink:#a12727;
  --n-new-bg:#e2f2e2; --n-new-ink:#1d6a1d;
  --n-info-bg:var(--accent-wash); --n-info-ink:var(--accent-deep);
  --n-offer-bg:#efe6fb; --n-offer-ink:#5b3ba0;
  --n-warn-bg:var(--warn-bg); --n-warn-ink:var(--warn-ink);
  --n-issuer-bg:#e6e5df; --n-issuer-ink:#4a4843;
}
@media (prefers-color-scheme: dark) {
  :root {
    --n-bad-bg:#40191a; --n-bad-ink:#f79b9b;
    --n-new-bg:#173319; --n-new-ink:#8fe08f;
    --n-offer-bg:#2a2140; --n-offer-ink:#c3aef5;
    --n-issuer-bg:#2b2b28; --n-issuer-ink:#c3c1ba;
  }
}

.nsearch {
  display: flex; align-items: center; gap: 9px; margin: 16px 0 0;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px; padding: 10px 13px;
}
.nsearch:focus-within { border-color: var(--accent); }
.nsearch .ico { font-size: 16px; color: var(--muted); line-height: 1; }
.nsearch input {
  flex: 1; min-width: 0; background: none; border: none; outline: none;
  font: inherit; font-size: 14.5px; color: var(--ink);
}
.nsearch .clear { font-size: 13px; color: var(--muted); padding: 2px 4px; }

.nfilters { margin: 12px 0 4px; }
.ntagchip { cursor: pointer; }
.ntagchip.on { background: var(--ink); color: var(--page); border-color: var(--ink); }

.nmonth { margin-top: 22px; }
.nmonth > h2 {
  font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 10px; padding-bottom: 7px; border-bottom: 1px solid var(--hairline);
}
.nentry { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.nentry:last-child { border-bottom: none; }
.nmeta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.ndate { font-size: 11.5px; font-weight: 750; color: var(--muted); letter-spacing: .03em; }
.nentry h3 { font-size: 16.5px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.3; margin: 7px 0 4px; color: var(--ink); }
.nentry p { font-size: 14px; line-height: 1.6; }
.ncards { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.ncard {
  font-size: 11.5px; font-weight: 650; text-decoration: none; border-radius: 8px; padding: 4px 9px;
  background: var(--accent-wash2); border: 1px solid var(--accent-wash); color: var(--accent-deep);
}
.ncard.off { background: var(--surface); border-color: var(--hairline); color: var(--muted); }
.nsrc { font-size: 11px; color: var(--muted); margin-top: 8px; }
.nsrc a { color: var(--muted); }
.nempty { margin-top: 20px; font-size: 14px; }

.ntag {
  font-size: 9.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 99px; padding: 3px 8px; white-space: nowrap;
  background: var(--n-issuer-bg); color: var(--n-issuer-ink);
}
.ntag.bad,    .ntagchip.bad    { background: var(--n-bad-bg);    color: var(--n-bad-ink); }
.ntag.new,    .ntagchip.new    { background: var(--n-new-bg);    color: var(--n-new-ink); }
.ntag.info,   .ntagchip.info   { background: var(--n-info-bg);   color: var(--n-info-ink); }
.ntag.offer,  .ntagchip.offer  { background: var(--n-offer-bg);  color: var(--n-offer-ink); }
.ntag.warn,   .ntagchip.warn   { background: var(--n-warn-bg);   color: var(--n-warn-ink); }
.ntag.issuer, .ntagchip.issuer { background: var(--n-issuer-bg); color: var(--n-issuer-ink); }
.ntagchip { border-color: transparent; }
.ntag.soon { background: var(--ink); color: var(--page); }

.ndata {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 12px 15px; margin: 14px 0;
}
.ndata > summary { font-size: 13.5px; font-weight: 750; color: var(--ink); cursor: pointer; }
.ndata p { font-size: 12.5px; margin-top: 9px; }
.ndata .clog { max-height: 340px; overflow-y: auto; }

/* ---------- data changelog (internal page + the news page's collapsed section) ---------- */
.clog { border-left: 2px solid var(--hairline); margin-top: 18px; }
.centry { padding: 0 0 16px 16px; position: relative; }
.centry::before {
  content: ""; position: absolute; left: -5px; top: 6px; width: 8px; height: 8px;
  border-radius: 99px; background: var(--accent);
}
.centry .d { font-size: 11.5px; font-weight: 750; color: var(--muted); letter-spacing: .03em; }
.centry .s { font-size: 14px; color: var(--ink); font-weight: 600; line-height: 1.5; margin-top: 2px; }
.centry .f { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ---------- footer ---------- */
.sitefoot {
  background: var(--surface); border-top: 1px solid var(--hairline);
  padding: 20px 20px 30px; font-size: 11.5px; color: var(--muted);
}
.sitefoot .inner { max-width: 1000px; margin: 0 auto; }
.sitefoot .links { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.sitefoot .links a, .sitefoot .links button {
  font-size: 12px; font-weight: 650; color: var(--ink-2);
  text-decoration: underline; text-underline-offset: 2px;
}
.sitefoot p { font-size: 11.5px; color: var(--muted); max-width: 900px; line-height: 1.55; }

/* ---------- report dialog ---------- */
.rp-wrap {
  position: fixed; inset: 0; z-index: 40; background: rgba(11,11,11,.45);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.rp-box {
  background: var(--page); border-radius: 16px; width: 100%; max-width: 460px;
  max-height: 92dvh; overflow-y: auto; border: 1px solid var(--hairline);
}
.rp-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px 12px;
  border-bottom: 1px solid var(--hairline); background: var(--surface); border-radius: 16px 16px 0 0;
}
.rp-head h4 { font-size: 16px; font-weight: 800; flex: 1; }
.rp-head .x { font-size: 19px; color: var(--muted); line-height: 1; padding: 2px 4px; }
.rp-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.rp-body .lab { font-size: 12.5px; font-weight: 750; color: var(--ink); }
.rp-body .help { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.rp-body textarea, .rp-body input {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 11px;
  padding: 10px 12px; font-size: 14px; font-family: inherit; color: inherit; outline: none; width: 100%;
}
.rp-body textarea { min-height: 110px; resize: vertical; }
.rp-body textarea:focus, .rp-body input:focus { border-color: var(--accent); }
.rp-body .cnt { font-size: 10.5px; color: var(--muted); text-align: right; }
.rp-body .err { font-size: 11.5px; color: var(--critical); }
.rp-body .ok {
  background: var(--accent-wash); color: var(--accent-deep); border-radius: 12px;
  padding: 14px; font-size: 13px; font-weight: 650; line-height: 1.5;
}
.rp-send {
  background: var(--accent); color: #fff; border-radius: 12px; text-align: center;
  font-size: 14.5px; font-weight: 800; padding: 12px; width: 100%; margin-top: 4px;
}
.rp-send:disabled { opacity: .5; }

/* ---------- recommender (best/recommended.html) ---------- */
.pv { font-size: 11px; color: var(--muted); margin-top: 5px; line-height: 1.5; }
.pv a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.pv b { color: var(--warn-ink); }

.rec-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 18px; margin-top: 14px; align-items: start; }
.rec-panel { min-width: 0; }
.rec-panel h2:first-child { margin-top: 4px; }
.fine { font-size: 11.5px; color: var(--muted); line-height: 1.55; }
.fine a { color: var(--muted); }

.rec-wallet {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px; padding: 13px 15px;
}
.rec-wallet .mode { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.rec-wallet .mode b { color: var(--ink); }
.rec-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.rchip {
  font-size: 11px; font-weight: 650; border-radius: 99px; padding: 4px 9px;
  background: var(--accent-wash2); border: 1px solid var(--accent-wash); color: var(--ink-2);
}
.rchip.alt { background: none; border-style: dashed; color: var(--accent-deep); cursor: pointer; }
.rec-pickwrap { margin-top: 11px; }
.rec-results { display: flex; flex-direction: column; gap: 4px; margin: 8px 0; }
.rrow {
  display: flex; align-items: center; gap: 9px; text-align: left; width: 100%;
  border: 1px solid var(--hairline); border-radius: 11px; padding: 8px 11px; background: var(--page);
}
.rrow .n { font-size: 13px; font-weight: 700; color: var(--ink); flex: 1; }
.rrow .i { font-size: 11px; color: var(--muted); }
.rrow .x { font-size: 14px; color: var(--accent-deep); font-weight: 800; width: 14px; text-align: center; }
.rrow.on { border-color: var(--accent); background: var(--accent-wash2); }

.rslides { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.rslide .lab { display: flex; justify-content: space-between; align-items: baseline; font-size: 12.5px; font-weight: 650; color: var(--ink-2); }
.rslide .lab output { font-size: 12.5px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.rslide input[type=range] { width: 100%; accent-color: var(--accent); height: 26px; }
.rtotal { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: right; }
.rtotal b { font-size: 15px; color: var(--ink); }

.rec-capture {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px; padding: 15px 16px;
}
.rec-capture .big { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--good-text); line-height: 1.05; }
.rec-capture .k { font-size: 12px; color: var(--muted); margin-top: 3px; }
.rec-base { margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.rec-base div { font-size: 12px; color: var(--ink-2); line-height: 1.5; }

.rec-answer, .rec-nothing {
  border-radius: 16px; padding: 16px 17px; margin-top: 14px; border: 1px solid var(--accent-wash);
  background: var(--accent-wash2);
}
.rec-nothing { border-color: var(--hairline); background: var(--surface); }
.crown { font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); }
.rec-nothing .crown { color: var(--good-text); }
.rec-answer h2, .rec-nothing h2 { margin: 6px 0 8px; font-size: 19px; line-height: 1.25; }
.rec-nothing h2 { color: var(--good-text); }
.rec-math { border-left: 2px solid var(--accent); padding-left: 11px; margin: 10px 0; }
.rec-math .ln { font-size: 13px; color: var(--ink-2); line-height: 1.6; font-variant-numeric: tabular-nums; }
.rec-math .fee { color: var(--muted); }
.rec-math .tot { font-size: 15px; font-weight: 800; color: var(--ink); margin-top: 2px; }
.rec-strings { font-size: 12px; color: var(--warn-ink); background: var(--warn-bg); border-radius: 10px; padding: 8px 11px; line-height: 1.5; }
.rec-strings:empty { display: none; }
.rec-sub { font-size: 12.5px; color: var(--ink-2); margin-top: 9px; line-height: 1.55; }
.rec-verified { font-size: 10.5px; color: var(--muted); margin-top: 9px; }
.rec-runners { margin-top: 14px; }
.rec-runners h2 { margin-top: 6px; }
.rrunner { border-top: 1px solid var(--hairline); padding: 9px 0; }
.rrunner .n { font-size: 13.5px; font-weight: 750; color: var(--ink); display: flex; justify-content: space-between; gap: 10px; }
.rrunner .n .f { font-size: 11px; font-weight: 650; color: var(--muted); white-space: nowrap; }
.rrunner .m { font-size: 12px; color: var(--ink-2); margin-top: 3px; line-height: 1.55; font-variant-numeric: tabular-nums; }

/* the statement-import invitation + the "these are your real numbers" chip */
.rec-import {
  display: block; margin: 8px 0 4px; font-size: 12px; font-weight: 650;
  color: var(--accent-deep); text-decoration: none; border: 1px dashed var(--hairline);
  border-radius: 11px; padding: 9px 11px; line-height: 1.45;
}
.rec-import:hover { border-color: var(--accent); }
.rec-imported {
  font-size: 11.5px; font-weight: 700; color: var(--good-text);
  background: var(--surface); border: 1px solid var(--good); border-radius: 99px;
  padding: 7px 12px; margin-bottom: 4px; line-height: 1.4;
}
.rec-imported span { font-weight: 600; color: var(--muted); }
.rec-imported button {
  font: inherit; font-weight: 700; color: var(--accent-deep); background: none; border: none;
  cursor: pointer; text-decoration: underline; padding: 0;
}

.rec-disclosure {
  margin-top: 16px; border: 1px solid var(--hairline); border-radius: 12px; padding: 12px 14px;
  background: var(--surface); font-size: 12.5px; color: var(--ink-2); line-height: 1.55;
}
.rec-disclosure b { color: var(--ink); }
.rec-disclosure .fine { margin-top: 6px; }

.rec-table { border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; background: var(--surface); margin-top: 10px; }
.rrow2 { display: grid; grid-template-columns: 1.1fr .7fr 2.2fr .8fr; gap: 10px; padding: 9px 14px; border-bottom: 1px solid var(--hairline); align-items: baseline; }
.rrow2:last-child { border-bottom: none; }
.rrow2 .c { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.rrow2 .s, .rrow2 .e { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.rrow2 .e { text-align: right; color: var(--good-text); font-weight: 700; }
.rrow2 .w { font-size: 12px; color: var(--ink-2); line-height: 1.5; }
.rrow2 .w .cap { color: var(--muted); font-size: 11px; }

@media (max-width: 860px) {
  .rec-grid { grid-template-columns: 1fr; }
  .rrow2 { grid-template-columns: 1fr auto; row-gap: 2px; }
  .rrow2 .w { grid-column: 1 / -1; }
  .rec-capture .big { font-size: 30px; }
}
