/* Additive reference pages. Layers on top of site.css and reuses its tokens.
   Generated pages come from _build/build-additives.mjs — edit content there. */

:root {
    --tone-ok: #099250;
    --tone-low: #6a9c2f;
    --tone-mid: #c8781a;
    --tone-high: #c0392b;
}
@media (prefers-color-scheme: dark) {
    :root {
        --tone-ok: #3DCC75;
        --tone-low: #9ed155;
        --tone-mid: #f0a94d;
        --tone-high: #ef7566;
    }
}

.wrap.narrow { max-width: 720px; }

/* ---------- breadcrumbs ---------- */
.crumbs {
    font-size: .85rem; color: var(--ink-soft);
    padding: 1.75rem 0 0; display: flex; gap: .4rem; flex-wrap: wrap;
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--brand); }

/* ---------- article head ---------- */
article { padding-bottom: 3rem; }
.art-head { padding: .75rem 0 2rem; }
.art-head h1 {
    font-size: clamp(2rem, 4.4vw, 2.85rem);
    line-height: 1.08; margin: .5rem 0 .4rem;
}
.art-head .aka { color: var(--ink-soft); font-size: .93rem; margin-bottom: 1.4rem; }

/* ---------- verdict card ---------- */
.verdict {
    background: var(--card); border: 1px solid var(--line);
    border-left: 5px solid var(--tone); border-radius: 16px;
    padding: 1.3rem 1.4rem; box-shadow: var(--shadow);
}
.verdict.tone-ok { --tone: var(--tone-ok); }
.verdict.tone-low { --tone: var(--tone-low); }
.verdict.tone-mid { --tone: var(--tone-mid); }
.verdict.tone-high { --tone: var(--tone-high); }
.verdict .badge {
    display: inline-block; font-size: .78rem; font-weight: 800;
    letter-spacing: .03em; text-transform: uppercase;
    color: var(--tone); margin-bottom: .5rem;
}
.verdict p { font-size: 1.05rem; }

/* ---------- at a glance ---------- */
.facts { margin: 2.5rem 0; }
.facts h2 { font-size: 1.15rem; margin-bottom: .9rem; }
.facts dl {
    display: grid; gap: 0;
    background: var(--card); border: 1px solid var(--line);
    border-radius: 16px; overflow: hidden;
}
.facts dl > div {
    display: grid; grid-template-columns: 12.5rem 1fr; gap: 1rem;
    padding: .8rem 1.2rem; border-bottom: 1px solid var(--line);
}
.facts dl > div:last-child { border-bottom: none; }
.facts dt { font-weight: 700; font-size: .9rem; color: var(--ink-soft); }
.facts dd { font-size: .95rem; }
@media (max-width: 640px) {
    .facts dl > div { grid-template-columns: 1fr; gap: .15rem; }
}

/* ---------- prose ---------- */
.prose { margin: 2.5rem 0; }
.prose h2 {
    font-size: clamp(1.35rem, 2.6vw, 1.6rem);
    margin-bottom: .8rem; letter-spacing: -.02em;
}
.prose p { margin-bottom: 1rem; font-size: 1.03rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 750; }
.prose em { font-style: italic; }

.prose.scoring {
    background: var(--bg-2); border: 1px solid var(--line);
    border-radius: 18px; padding: 1.5rem 1.6rem;
}
.prose.scoring h2 { font-size: 1.25rem; }

.prose .faq { max-width: none; margin: 0; }

/* ---------- sources ---------- */
.sources { margin: 2.5rem 0 1.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.sources h2 { font-size: 1.1rem; margin-bottom: .7rem; }
.sources ol { padding-left: 1.2rem; display: grid; gap: .45rem; }
.sources li { font-size: .92rem; color: var(--ink-soft); }
.sources a { color: var(--brand); text-decoration: none; }
.sources a:hover { text-decoration: underline; }
.reviewed { margin-top: 1rem; font-size: .85rem; color: var(--ink-soft); }

.backlink { margin-top: 2rem; font-weight: 700; }
.backlink a { color: var(--brand); text-decoration: none; }

/* ---------- hub ---------- */
header.hero.compact { padding: 3rem 0 2rem; }
/* site.css makes the hero a two-column grid for the landing page; these pages
   are single-column, so the heading must not be pushed into a second track. */
header.hero.compact .wrap { display: block; }
header.hero.compact h1 { max-width: 18ch; }
header.hero.compact .lede { max-width: none; margin-bottom: 0; }

.addlist { list-style: none; display: grid; gap: .9rem; }
.addlist li {
    background: var(--card); border: 1px solid var(--line);
    border-left: 5px solid var(--tone); border-radius: 16px;
    padding: 1.1rem 1.3rem;
}
.addlist li.tone-ok { --tone: var(--tone-ok); }
.addlist li.tone-low { --tone: var(--tone-low); }
.addlist li.tone-mid { --tone: var(--tone-mid); }
.addlist li.tone-high { --tone: var(--tone-high); }
.addlist a {
    display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap;
    text-decoration: none; margin-bottom: .35rem;
}
.addlist .e { font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; }
.addlist .n { font-weight: 600; }
.addlist .r {
    margin-left: auto; font-size: .78rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .03em; color: var(--tone);
}
.addlist a:hover .e, .addlist a:hover .n { color: var(--brand); }
.addlist p { color: var(--ink-soft); font-size: .94rem; }
