/*
Theme Name: Testorama
Theme URI: https://testorama.eu/
Author: Testorama
Author URI: https://testorama.eu/
Description: Thème sur-mesure du banc d'essai Testorama — code pur, écrit de zéro pour ce site. Tests notés, comparatifs, protocole affiché.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: testorama
*/

/* ==========================================================================
   Fonts self-hosted (P-086) — aucun appel externe
   ========================================================================== */
@font-face {
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/chivo-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/chivo-v21-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/manrope-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/manrope-v20-latin-700.woff2') format('woff2');
}

/* ==========================================================================
   Tokens — 1 fond neutre + 1 accent (P-116), clair ET sombre (P-110)
   ========================================================================== */
:root {
  --tsr-bg: #f5f7fa;          /* fond neutre gris-bleu froid */
  --tsr-surface: #ffffff;
  --tsr-ink: #10151c;         /* texte principal — 16,4:1 sur bg */
  --tsr-muted: #46525f;       /* texte secondaire — 7,1:1 sur bg */
  --tsr-accent: #155bd5;      /* bleu cobalt signal — 6,0:1 avec blanc */
  --tsr-on-accent: #ffffff;
  --tsr-line: #d8dee7;
  --tsr-chip-bg: #e6edf9;
  --tsr-foot-bg: #10151c;
  --tsr-foot-ink: #dfe6ee;    /* 13,9:1 sur foot-bg */
  --tsr-foot-muted: #9db0c4;
  --tsr-radius: 12px;
  --tsr-font-display: 'Chivo', 'Avenir Next', 'Segoe UI', sans-serif;
  --tsr-font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --tsr-wrap: 72rem;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --tsr-bg: #0c1117;
    --tsr-surface: #131a23;
    --tsr-ink: #e7edf4;        /* 15,2:1 sur bg sombre */
    --tsr-muted: #9aa7b5;      /* 7,3:1 sur bg sombre */
    --tsr-accent: #7aa9ff;     /* 8,0:1 sur bg sombre */
    --tsr-on-accent: #0c1117;  /* 8,0:1 sur accent sombre */
    --tsr-line: #26303c;
    --tsr-chip-bg: #1a2432;
    --tsr-foot-bg: #131a23;
    --tsr-foot-ink: #dfe6ee;
    --tsr-foot-muted: #9aa7b5;
  }
}

/* ==========================================================================
   Base — mobile-first (390px d'abord)
   ========================================================================== */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--tsr-bg);
  color: var(--tsr-ink);
  font-family: var(--tsr-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tsr-accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--tsr-accent); outline-offset: 2px; border-radius: 2px; }
h1, h2, h3, h4 {
  font-family: var(--tsr-font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--tsr-ink);
  margin: 0 0 .5em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(1.9rem, 5.5vw, 3rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.45rem, 3.5vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; }
.wrap { max-width: var(--tsr-wrap); margin: 0 auto; padding: 0 1.1rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--tsr-accent); color: var(--tsr-on-accent);
  padding: .7rem 1.1rem; z-index: 99; border-radius: 0 0 var(--tsr-radius) 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Header — barre unique sticky, liseré cobalt 3px, nav flex sans puces (P-004)
   ========================================================================== */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--tsr-surface);
  border-top: 3px solid var(--tsr-accent);
  border-bottom: 1px solid var(--tsr-line);
}
.site-head__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 64px;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--tsr-ink);
}
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name {
  font-family: var(--tsr-font-display); font-weight: 800;
  font-size: 1.35rem; letter-spacing: -.02em; color: var(--tsr-ink);
}
.brand__name em { font-style: normal; color: var(--tsr-accent); }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  background: none; border: 1px solid var(--tsr-line); border-radius: 8px;
  color: var(--tsr-ink); font: inherit; cursor: pointer;
}
.site-nav { display: none; }
.site-head--open .site-nav {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--tsr-surface); border-bottom: 1px solid var(--tsr-line);
  padding: .5rem 1.1rem 1rem;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .1rem;
}
.site-nav a {
  display: flex; align-items: center; min-height: 44px; padding: 0 .75rem;
  text-decoration: none; color: var(--tsr-ink);
  font-family: var(--tsr-font-display); font-weight: 500; font-size: 1rem;
  border-radius: 8px;
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a { color: var(--tsr-accent); background: var(--tsr-chip-bg); }
.head-search { position: relative; }
.head-search summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; border-radius: 8px;
  color: var(--tsr-ink); border: 1px solid var(--tsr-line);
}
.head-search summary::-webkit-details-marker { display: none; }
.head-search[open] summary { background: var(--tsr-chip-bg); color: var(--tsr-accent); }
.head-search__panel {
  position: absolute; right: 0; top: calc(100% + .5rem);
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-radius: var(--tsr-radius); padding: .8rem; width: min(20rem, 86vw);
  box-shadow: 0 10px 30px rgba(16, 21, 28, .12);
}
@media (min-width: 56rem) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .site-nav ul { flex-direction: row; align-items: center; gap: .15rem; }
}

/* Formulaire de recherche */
.search-form { display: flex; gap: .5rem; }
.search-form input[type='search'] {
  flex: 1; min-height: 44px; padding: .4rem .7rem;
  border: 1px solid var(--tsr-line); border-radius: 8px;
  background: var(--tsr-bg); color: var(--tsr-ink); font: inherit;
}
.search-form button {
  min-height: 44px; padding: 0 1rem; border: 0; border-radius: 8px;
  background: var(--tsr-accent); color: var(--tsr-on-accent);
  font-family: var(--tsr-font-display); font-weight: 500; cursor: pointer;
}

/* ==========================================================================
   Boutons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .6rem 1.4rem; border-radius: 10px;
  background: var(--tsr-accent); color: var(--tsr-on-accent);
  font-family: var(--tsr-font-display); font-weight: 800; font-size: 1rem;
  text-decoration: none; border: 2px solid var(--tsr-accent);
}
.btn:hover { filter: brightness(1.08); }
.btn--ghost { background: transparent; color: var(--tsr-accent); }
.btn--ghost:hover { background: var(--tsr-chip-bg); filter: none; }

/* ==========================================================================
   Fil d'Ariane (P-010)
   ========================================================================== */
.crumbs { font-size: .85rem; margin: 1.1rem 0; }
.crumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .35rem; align-items: center;
}
.crumbs li { display: flex; align-items: center; gap: .35rem; color: var(--tsr-muted); }
.crumbs li + li::before { content: '›'; color: var(--tsr-muted); }
.crumbs a { color: var(--tsr-muted); }
.crumbs a:hover { color: var(--tsr-accent); }

/* ==========================================================================
   Home — hero labo
   ========================================================================== */
.hero { padding: 2.6rem 0 2.2rem; border-bottom: 1px solid var(--tsr-line); }
.hero__kicker,
.section-kicker {
  display: inline-block; font-family: var(--tsr-font-display); font-weight: 500;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--tsr-accent); background: var(--tsr-chip-bg);
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.hero p.hero__lead { font-size: 1.15rem; color: var(--tsr-muted); max-width: 42rem; }
.hero-proofs {
  list-style: none; margin: 1.4rem 0; padding: 0;
  display: grid; gap: .6rem;
}
.hero-proofs li { display: flex; gap: .6rem; align-items: baseline; color: var(--tsr-ink); }
.hero-proofs li::before {
  content: ''; flex: none; width: 1.05rem; height: .5rem; transform: translateY(-.1em);
  border-left: 3px solid var(--tsr-accent); border-bottom: 3px solid var(--tsr-accent);
  rotate: -45deg;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
@media (min-width: 56rem) {
  .hero-proofs { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
}

/* ==========================================================================
   Test vedette « Au banc en ce moment »
   ========================================================================== */
.bench-now { padding: 2.4rem 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; }
.section-head h2 { margin: 0; }
.section-head a { font-family: var(--tsr-font-display); font-weight: 500; white-space: nowrap; }
.bench-now__card {
  display: grid; gap: 1.2rem;
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-radius: var(--tsr-radius); overflow: hidden;
}
.bench-now__media img { width: 100%; height: 100%; object-fit: cover; }
.bench-now__body { padding: 0 1.3rem 1.5rem; }
.bench-now__cat { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--tsr-accent); font-weight: 700; }
.bench-now__body h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); margin: .4rem 0 .6rem; }
.bench-now__body h3 a { color: var(--tsr-ink); text-decoration: none; }
.bench-now__body h3 a:hover { color: var(--tsr-accent); }
@media (min-width: 56rem) {
  .bench-now__card { grid-template-columns: 1.15fr 1fr; }
  .bench-now__body { padding: 1.6rem 1.6rem 1.6rem 0; }
}

/* Rail de note — signature Testorama (écho du logo curseurs) */
.score-rail { margin: 1rem 0 .4rem; }
.score-rail__label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--tsr-font-display); font-weight: 500; font-size: .85rem;
  color: var(--tsr-muted); margin-bottom: .4rem;
}
.score-rail__value { font-weight: 800; font-size: 1.6rem; color: var(--tsr-ink); }
.score-rail__value small { font-weight: 500; font-size: .9rem; color: var(--tsr-muted); }
.score-rail__track {
  position: relative; height: 6px; border-radius: 999px; background: var(--tsr-line);
}
.score-rail__fill {
  position: absolute; inset: 0 auto 0 0; border-radius: 999px;
  background: var(--tsr-accent);
}
.score-rail__knob {
  position: absolute; top: 50%; translate: -50% -50%;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--tsr-surface); border: 4px solid var(--tsr-accent);
}

/* ==========================================================================
   Grille de cartes tests (uniforme) + pastille de note
   ========================================================================== */
.test-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.2rem;
}
@media (min-width: 40rem) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-radius: var(--tsr-radius); overflow: hidden;
  transition: border-color .15s ease;
}
.test-card:hover { border-color: var(--tsr-accent); }
.test-card__media { aspect-ratio: 16 / 10; background: var(--tsr-chip-bg); }
.test-card__media img { width: 100%; height: 100%; object-fit: cover; }
.score-chip {
  position: absolute; top: .7rem; right: .7rem;
  background: var(--tsr-accent); color: var(--tsr-on-accent);
  font-family: var(--tsr-font-display); font-weight: 800; font-size: .95rem;
  padding: .25rem .6rem; border-radius: 8px;
}
.score-chip small { font-weight: 500; opacity: .85; }
.test-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.test-card__cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--tsr-accent); font-weight: 700; }
.test-card__body h3 { font-size: 1.08rem; margin: 0; }
.test-card__body h3 a { color: var(--tsr-ink); text-decoration: none; }
.test-card__body h3 a::after { content: ''; position: absolute; inset: 0; }
.test-card__body h3 a:hover { color: var(--tsr-accent); }
.test-card__excerpt { font-size: .92rem; color: var(--tsr-muted); margin: 0; }
.test-card__date { font-size: .8rem; color: var(--tsr-muted); margin-top: auto; padding-top: .4rem; }

/* ==========================================================================
   Bande protocole 4 étapes
   ========================================================================== */
.protocol { padding: 2.6rem 0; border-top: 1px solid var(--tsr-line); }
.protocol__steps {
  list-style: none; margin: 1.4rem 0 0; padding: 0;
  display: grid; gap: 1.1rem;
  counter-reset: proto;
}
.protocol__steps li {
  counter-increment: proto;
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-radius: var(--tsr-radius); padding: 1.1rem 1.2rem;
}
.protocol__steps li::before {
  content: '0' counter(proto);
  display: block; font-family: var(--tsr-font-display); font-weight: 800;
  font-size: 1.5rem; color: var(--tsr-accent); margin-bottom: .3rem;
}
.protocol__steps h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.protocol__steps p { font-size: .92rem; color: var(--tsr-muted); margin: 0; }
@media (min-width: 56rem) { .protocol__steps { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Verdicts récents — rangées listées
   ========================================================================== */
.recent-verdicts { padding: 2.4rem 0; border-top: 1px solid var(--tsr-line); }
.verdict-rows { list-style: none; margin: 0; padding: 0; }
.verdict-rows li { border-bottom: 1px solid var(--tsr-line); }
.verdict-rows a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem .2rem; text-decoration: none; min-height: 44px;
}
.verdict-rows .t { color: var(--tsr-ink); font-family: var(--tsr-font-display); font-weight: 500; }
.verdict-rows a:hover .t { color: var(--tsr-accent); }
.verdict-rows .c { display: none; font-size: .8rem; color: var(--tsr-muted); text-transform: uppercase; letter-spacing: .1em; }
.verdict-rows .n {
  flex: none; font-family: var(--tsr-font-display); font-weight: 800;
  color: var(--tsr-accent); background: var(--tsr-chip-bg);
  padding: .2rem .6rem; border-radius: 8px;
}
@media (min-width: 40rem) { .verdict-rows .c { display: block; margin-left: auto; } }

/* ==========================================================================
   Double CTA
   ========================================================================== */
.cta-duo { padding: 2.6rem 0 3rem; }
.cta-duo__box {
  background: var(--tsr-foot-bg); color: var(--tsr-foot-ink);
  border-radius: var(--tsr-radius); padding: 2rem 1.4rem; text-align: center;
}
.cta-duo__box h2 { color: var(--tsr-foot-ink); }
.cta-duo__box p { color: var(--tsr-foot-muted); max-width: 38rem; margin: 0 auto 1.4rem; }
.cta-duo__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.cta-duo .btn--ghost { color: var(--tsr-foot-ink); border-color: var(--tsr-foot-muted); }
.cta-duo .btn--ghost:hover { background: rgba(255, 255, 255, .08); }

/* ==========================================================================
   Home — bande « Derniers passages au banc »
   ========================================================================== */
.latest-tests { padding: 2.4rem 0; }

/* ==========================================================================
   Manifeste — pourquoi Testorama existe (filet cobalt, voix de la rédaction)
   ========================================================================== */
.manifesto { padding: 2.8rem 0; border-top: 1px solid var(--tsr-line); }
.manifesto__inner {
  max-width: 50rem;
  border-left: 4px solid var(--tsr-accent);
  padding-left: 1.2rem;
}
.manifesto__text {
  font-family: var(--tsr-font-display); font-weight: 800;
  font-size: clamp(1.3rem, 3.4vw, 1.9rem); line-height: 1.32;
  letter-spacing: -.01em; color: var(--tsr-ink);
  margin: .9rem 0;
}
.manifesto__text em { font-style: normal; color: var(--tsr-accent); }
.manifesto__sign { color: var(--tsr-muted); font-size: .95rem; margin: 0; }
@media (min-width: 56rem) { .manifesto__inner { padding-left: 1.6rem; } }

/* ==========================================================================
   « Comment on note » — grille 5 critères pondérés (écho du rail de note)
   ========================================================================== */
.scoring { padding: 2.6rem 0; border-top: 1px solid var(--tsr-line); }
.scoring__intro { color: var(--tsr-muted); max-width: 44rem; margin: 0; }
.scoring__grid {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: grid; gap: .8rem;
}
.scoring__row {
  display: grid; grid-template-columns: 1fr auto; gap: .3rem .9rem;
  align-items: baseline;
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-radius: var(--tsr-radius); padding: 1rem 1.1rem 1.15rem;
}
.scoring__crit { font-family: var(--tsr-font-display); font-weight: 800; font-size: 1.02rem; }
.scoring__weight {
  font-family: var(--tsr-font-display); font-weight: 800;
  font-size: 1.02rem; color: var(--tsr-accent); white-space: nowrap;
}
.scoring__desc { grid-column: 1 / -1; font-size: .92rem; color: var(--tsr-muted); margin: 0; }
.scoring__bar {
  grid-column: 1 / -1; display: block; height: 6px; margin-top: .35rem;
  border-radius: 999px; background: var(--tsr-line); overflow: hidden;
}
.scoring__bar span { display: block; height: 100%; border-radius: 999px; background: var(--tsr-accent); }
.scoring__note { margin: 1.3rem 0 0; font-size: .95rem; color: var(--tsr-muted); max-width: 44rem; }

/* ==========================================================================
   Engagements « Ce qui nous distingue » — 3 cartes à liseré cobalt
   ========================================================================== */
.pledges { padding: 2.6rem 0; border-top: 1px solid var(--tsr-line); }
.pledges__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.1rem;
}
.pledges__grid li {
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-top: 4px solid var(--tsr-accent);
  border-radius: var(--tsr-radius); padding: 1.2rem 1.2rem 1.3rem;
}
.pledges__grid h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.pledges__grid p { font-size: .93rem; color: var(--tsr-muted); margin: 0; }
@media (min-width: 56rem) { .pledges__grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Rubriques du banc — nuage de rubriques (réutilise les puces .hub-sibs)
   ========================================================================== */
.topics { padding: 2.4rem 0 .2rem; border-top: 1px solid var(--tsr-line); }
.topics .hub-sibs { margin-top: 0; }
.hub-sibs a small { font-size: .8em; font-weight: 400; opacity: .75; }

/* ==========================================================================
   Contenu article / page — rendu Gutenberg
   ========================================================================== */
.content-main { padding-bottom: 3rem; }
.entry-header { margin: 1.2rem 0 1.6rem; }
.entry-meta { font-size: .88rem; color: var(--tsr-muted); display: flex; flex-wrap: wrap; gap: .4rem 1rem; }
.entry-meta a { color: var(--tsr-accent); }
.entry-hero { border-radius: var(--tsr-radius); overflow: hidden; margin-bottom: 1.6rem; }
.entry-content { max-width: 46rem; }
.entry-content h2 { margin-top: 1.6em; }
.entry-content h3 { margin-top: 1.3em; }
.entry-content img { border-radius: var(--tsr-radius); }
.entry-content blockquote {
  margin: 1.4em 0; padding: .2em 0 .2em 1.1em;
  border-left: 4px solid var(--tsr-accent); color: var(--tsr-muted); font-size: 1.05em;
}
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin: 0 0 1.1em; }
.entry-content li { margin-bottom: .35em; }
.entry-content table { border-collapse: collapse; width: 100%; margin: 1.4em 0; font-size: .95rem; }
.entry-content th, .entry-content td { border: 1px solid var(--tsr-line); padding: .55em .8em; text-align: left; }
.entry-content th { background: var(--tsr-chip-bg); font-family: var(--tsr-font-display); font-weight: 500; }
.entry-content pre { background: var(--tsr-chip-bg); padding: 1em; border-radius: var(--tsr-radius); overflow-x: auto; }
.entry-content .wp-block-image figcaption { font-size: .85rem; color: var(--tsr-muted); text-align: center; }
.entry-content .wp-block-button__link { background: var(--tsr-accent); color: var(--tsr-on-accent); border-radius: 10px; }
.entry-content .alignwide { max-width: var(--tsr-wrap); }
.entry-content .alignfull { width: 100%; }

/* ==========================================================================
   Bloc verdict / note — composant signature
   ========================================================================== */
.verdict {
  max-width: 46rem; margin: 2.2rem 0;
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-top: 4px solid var(--tsr-accent);
  border-radius: var(--tsr-radius); padding: 1.4rem 1.4rem 1.6rem;
}
.verdict__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.verdict__title {
  font-family: var(--tsr-font-display); font-weight: 800; font-size: 1.15rem; margin: 0;
  text-transform: uppercase; letter-spacing: .08em;
}
.verdict__text { color: var(--tsr-ink); }
.verdict__cols { display: grid; gap: 1.1rem; margin-top: 1.1rem; }
.verdict__cols h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; color: var(--tsr-muted); }
.verdict__cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; font-size: .95rem; }
.verdict__cols li { padding-left: 1.4em; position: relative; }
.verdict__plus li::before { content: '+'; position: absolute; left: 0; font-weight: 800; color: var(--tsr-accent); }
.verdict__minus li::before { content: '–'; position: absolute; left: 0; font-weight: 800; color: var(--tsr-muted); }
@media (min-width: 40rem) { .verdict__cols { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Archives / hubs de catégorie
   ========================================================================== */
.hub-head { padding: 2rem 0 1.6rem; border-bottom: 1px solid var(--tsr-line); margin-bottom: 1.8rem; }
.hub-head p { color: var(--tsr-muted); max-width: 44rem; margin: 0; }
.hub-head .count { display: inline-block; margin-top: .7rem; font-size: .85rem; color: var(--tsr-muted); }
.hub-sibs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.hub-sibs a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 .9rem;
  background: var(--tsr-chip-bg); color: var(--tsr-accent); border-radius: 999px;
  text-decoration: none; font-family: var(--tsr-font-display); font-weight: 500; font-size: .9rem;
}
.hub-sibs a:hover { background: var(--tsr-accent); color: var(--tsr-on-accent); }

/* Pagination */
.pagination { margin: 2.2rem 0; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 0 .6rem;
  border: 1px solid var(--tsr-line); border-radius: 8px;
  text-decoration: none; color: var(--tsr-ink);
}
.pagination .page-numbers.current { background: var(--tsr-accent); color: var(--tsr-on-accent); border-color: var(--tsr-accent); }
.pagination a.page-numbers:hover { border-color: var(--tsr-accent); color: var(--tsr-accent); }

/* Navigation article précédent/suivant */
.post-nav { display: grid; gap: 1rem; margin: 2.4rem 0; max-width: 46rem; }
.post-nav a {
  display: block; padding: 1rem 1.1rem;
  background: var(--tsr-surface); border: 1px solid var(--tsr-line);
  border-radius: var(--tsr-radius); text-decoration: none; color: var(--tsr-ink);
}
.post-nav a:hover { border-color: var(--tsr-accent); }
.post-nav .dir { display: block; font-size: .8rem; color: var(--tsr-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
@media (min-width: 40rem) { .post-nav { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   404 + résultats de recherche
   ========================================================================== */
.big-404 { text-align: center; padding: 3.5rem 0; }
.big-404 .code {
  font-family: var(--tsr-font-display); font-weight: 800;
  font-size: clamp(4rem, 16vw, 8rem); color: var(--tsr-accent); line-height: 1;
}
.big-404 form { max-width: 24rem; margin: 1.6rem auto 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-foot { background: var(--tsr-foot-bg); color: var(--tsr-foot-ink); margin-top: 2rem; }
.site-foot__grid { display: grid; gap: 1.8rem; padding: 2.6rem 0 1.6rem; }
.site-foot h2 { color: var(--tsr-foot-ink); font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.site-foot p { color: var(--tsr-foot-muted); font-size: .93rem; }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.site-foot a { color: var(--tsr-foot-ink); text-decoration: none; }
.site-foot a:hover { color: var(--tsr-accent); text-decoration: underline; }
.site-foot .brand__name { color: var(--tsr-foot-ink); }
.site-foot__legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.1rem 0 1.6rem; font-size: .84rem; color: var(--tsr-foot-muted);
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
}
@media (min-width: 56rem) { .site-foot__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* Divers WordPress */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
}
.sticky { display: block; }
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.2em .8em 0; }
.alignright { float: right; margin: 0 0 .8em 1.2em; }
.aligncenter { margin-left: auto; margin-right: auto; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
