/* content.css — editorial pages (guides, comparatifs).
   Self-contained like legal.css: same brand tokens, no dependency on the
   prototype styles.css (whose lines 1–843 must stay untouched). */

:root{
  --paper:#F2EEE7;
  --paper-2:#ECE7DE;
  --ink:#111111;
  --ink-soft:#2A2724;
  --muted:#6B6660;
  --muted-2:#8E8881;
  --line:#D6D3CD;
  --line-soft:#E3DFD6;
  --card:#FBF8F2;
  --ok:#2F6B4F;
  --ok-bg:#E0EBE4;
  --warn:#8A5514;
  --warn-bg:#F2E8D9;

  --serif: "Instrument Serif", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Geist", "Helvetica Neue", Helvetica, "Söhne", Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --page-pad: clamp(20px, 4vw, 56px);
  --max: 780px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--paper); color:var(--ink);
  font-family:var(--sans); font-weight:400; font-size:16px; line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto} }

a{color:var(--ink); text-decoration:underline; text-underline-offset:2px; text-decoration-color:var(--line)}
a:hover{text-decoration-color:var(--muted)}
a:focus-visible{outline:2px solid var(--ink); outline-offset:2px; border-radius:2px}

.wrap{max-width:var(--max); margin:0 auto; padding:0 var(--page-pad)}

/* ── Header ─────────────────────────────── */
header.site{border-bottom:1px solid var(--line-soft); padding:20px 0}
header.site .row{
  max-width:var(--max); margin:0 auto; padding:0 var(--page-pad);
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
header.site .logo{
  font-family:var(--serif); font-size:23px; text-decoration:none; color:var(--ink);
}
header.site .logo .dot{
  display:inline-block; width:6px; height:6px; border-radius:50%;
  background:var(--ink); margin-left:2px;
}
header.site .back{font-size:14px; color:var(--muted); text-decoration:none}
header.site .back:hover{color:var(--ink)}

/* ── Article ────────────────────────────── */
main.article{padding:clamp(40px,7vw,72px) 0 96px}
.eyebrow{
  font-size:12px; font-weight:500; letter-spacing:.13em; text-transform:uppercase;
  color:var(--muted-2); margin:0 0 14px;
}
h1.title{
  font-family:var(--serif); font-weight:400; font-size:clamp(36px,6vw,58px);
  line-height:1.05; letter-spacing:-.01em; margin:0 0 18px; text-wrap:balance;
}
.updated{font-size:14px; color:var(--muted-2); margin:0 0 6px}
.byline{font-size:14px; color:var(--muted); margin:0 0 32px}

article h2{
  font-family:var(--serif); font-weight:400; font-size:clamp(26px,3.6vw,34px);
  line-height:1.18; letter-spacing:-.005em; margin:52px 0 14px; text-wrap:balance;
}
article h3{font-size:18px; font-weight:600; margin:32px 0 8px; letter-spacing:-.005em}
article p{margin:0 0 16px}
article ul,article ol{margin:0 0 16px; padding-left:22px}
article li{margin-bottom:7px}
article strong{font-weight:600}
article em{font-style:italic}

/* ── Disclosure — mandatory on comparison pages ── */
.disclosure{
  background:var(--warn-bg); border-radius:var(--radius-sm);
  padding:14px 18px; margin:0 0 32px; font-size:14.5px; color:var(--ink-soft);
}
.disclosure strong{color:var(--ink)}

/* ── Verdict / callout ──────────────────── */
.verdict{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:22px 24px; margin:28px 0;
}
.verdict h2, .verdict h3{margin-top:0}
.verdict p:last-child{margin-bottom:0}
.verdict .lede{font-family:var(--serif); font-size:21px; line-height:1.35; margin-bottom:12px}

.choose{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:14px; margin:24px 0}
.choose > div{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-sm);
  padding:18px 20px;
}
.choose h3{margin:0 0 8px; font-size:16px}
.choose ul{margin:0; padding-left:20px; font-size:15px; color:var(--ink-soft)}

/* ── Tables ─────────────────────────────── */
.scroll{overflow-x:auto; margin:22px 0; border:1px solid var(--line); border-radius:var(--radius-sm)}
table{border-collapse:collapse; width:100%; font-size:14.5px; background:var(--card)}
th,td{padding:11px 15px; text-align:left; border-bottom:1px solid var(--line-soft); vertical-align:top}
th{
  font-size:11px; font-weight:500; letter-spacing:.09em; text-transform:uppercase;
  color:var(--muted-2); white-space:nowrap;
}
tr:last-child td{border-bottom:none}
td.num{font-variant-numeric:tabular-nums; white-space:nowrap}
caption{caption-side:bottom; font-size:13px; color:var(--muted-2); padding:10px 15px; text-align:left}

/* ── Source note ────────────────────────── */
.source{font-size:13.5px; color:var(--muted-2); margin:-8px 0 22px}

/* ── CTA ────────────────────────────────── */
.cta{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 28px; margin:44px 0 0; text-align:center;
}
.cta p{margin:0 0 16px; color:var(--ink-soft)}
.btn{
  display:inline-block; background:var(--ink); color:var(--paper);
  text-decoration:none; font-weight:500; font-size:15px;
  padding:13px 26px; border-radius:999px;
}
.btn:hover{background:var(--ink-soft)}

/* ── Footer ─────────────────────────────── */
footer.site{border-top:1px solid var(--line-soft); padding:28px 0 40px; margin-top:64px}
footer.site .row{
  max-width:var(--max); margin:0 auto; padding:0 var(--page-pad);
  display:flex; flex-wrap:wrap; gap:10px 22px; justify-content:space-between;
  font-size:13.5px; color:var(--muted-2);
}
footer.site a{color:var(--muted); text-decoration:none}
footer.site a:hover{color:var(--ink); text-decoration:underline}

@media (max-width:560px){
  .choose{grid-template-columns:1fr}
  header.site .row{gap:12px}
}
