@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --burn:       oklch(51% 0.22 28);
  --burn-dark:  oklch(43% 0.20 28);
  --burn-light: oklch(97% 0.02 28);
  --coal:       oklch(16% 0.00 0);
  --smoke:      oklch(96% 0.005 60);
  --border:     oklch(91% 0.005 80);
  --text:       oklch(16% 0.00 0);
  --text-2:     oklch(40% 0.00 0);
  --text-3:     oklch(58% 0.00 0);
  --green:      oklch(58% 0.16 155);
  --green-bg:   oklch(95% 0.04 155);
  --amber:      oklch(60% 0.12 72);
  --amber-bg:   oklch(97% 0.03 85);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;

  --max-w: 1140px;
  --gap:   clamp(1rem, 3vw, 2rem);
  --ease:  cubic-bezier(.22,.8,.3,1);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--smoke);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
  background: var(--coal);
  border-bottom: 3px solid var(--burn);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.logo-guides {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(65% 0 0);
  padding: 0.15rem 0.45rem;
  border: 1px solid oklch(30% 0 0);
  border-radius: 4px;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-nav a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: oklch(75% 0 0);
  transition: color 0.15s;
}
.site-nav a:hover { color: #fff; text-decoration: none; }

.search-form {
  display: flex;
  gap: 0;
}
.search-form input {
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: oklch(22% 0 0);
  border: 1px solid oklch(30% 0 0);
  border-right: none;
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  width: 200px;
  outline: none;
  transition: border-color 0.15s;
}
.search-form input::placeholder { color: var(--text-3); }
.search-form input:focus { border-color: var(--burn); }
.search-form button {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--burn);
  color: #fff;
  border: none;
  padding: 0.4rem 0.875rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: background 0.15s;
}
.search-form button:hover { background: var(--burn-dark); }

/* ── HÉROS ──────────────────────────────────────────── */
.hero {
  background: var(--coal);
  padding: 4rem 0 3.5rem;
  color: #fff;
  border-bottom: 1px solid oklch(24% 0 0);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-live {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burn);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
}
.hero-live__dot circle:last-child {
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.05rem;
  color: oklch(65% 0 0);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta-primary {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--burn);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s;
}
.hero-cta-primary:hover { background: var(--burn-dark); text-decoration: none; }
.hero-cta-primary .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.hero-cta-primary:hover .arrow { transform: translateX(4px); }

.hero-cta-secondary {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: oklch(65% 0 0);
  padding: 0.8rem 1rem;
  transition: color 0.15s;
}
.hero-cta-secondary:hover { color: #fff; text-decoration: none; }

/* Mini deal cards in hero */
.hero-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
  max-width: 260px;
}
.hero-deal-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: oklch(21% 0 0);
  border: 1px solid oklch(29% 0 0);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  transition: border-color 0.15s, transform 0.15s;
}
.hero-deal-card:hover { border-color: var(--burn); transform: translateX(3px); text-decoration: none; }
.hero-deal-card__img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: oklch(26% 0 0);
  overflow: hidden;
}
.hero-deal-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 0.25rem; }
.hero-deal-card__info { flex: 1; min-width: 0; }
.hero-deal-card__badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--burn);
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.2rem;
}
.hero-deal-card__name {
  font-size: 0.78rem;
  font-weight: 500;
  color: oklch(85% 0 0);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-deal-card__price {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-top: 0.1rem;
}

/* ── Deals section ───────────────────────────────────── */
.deals-section {
  background: var(--coal);
  padding: 2.5rem 0 3.5rem;
  color: #fff;
}
.deals-section .section-title { color: #fff; }
.deals-section .section-link  { color: oklch(60% 0.12 28); }
.deals-section .section-link:hover { color: #fff; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--coal);
}
.section-link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--burn);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s, gap 0.25s;
}
.section-link:hover { color: var(--burn-dark); text-decoration: none; gap: 0.5rem; }

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.deal-card {
  background: oklch(20% 0 0);
  border: 1px solid oklch(28% 0 0);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.15s, transform 0.15s;
}
.deal-card:hover { border-color: var(--burn); transform: translateY(-2px); text-decoration: none; }
.deal-card__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--burn);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.deal-card__name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.deal-card__ref {
  font-size: 0.8rem;
  color: var(--text-3);
  text-decoration: line-through;
}
.deal-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: oklch(25% 0 0);
  margin-bottom: 0.25rem;
}
.deal-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.deal-card__prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.deal-card__merchant {
  font-size: 0.75rem;
  color: oklch(55% 0 0);
}
.deals-unavailable {
  font-size: 0.875rem;
  color: oklch(50% 0 0);
  padding: 2rem;
  text-align: center;
}
.deals-unavailable a { color: var(--burn); text-decoration: underline; }

/* ── Guides section ──────────────────────────────────── */
.guides-section {
  padding: 3.5rem 0 4rem;
  background: var(--smoke);
}

/* Article phare */
.article-phare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
  min-height: 280px;
}
.article-phare:hover {
  box-shadow: 0 12px 40px oklch(0% 0 0 / 0.1);
  transform: translateY(-3px);
  text-decoration: none;
}
.article-phare__img {
  position: relative;
  background: #F7F6F3;
  overflow: hidden;
}
.article-phare__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.35s var(--ease);
}
.article-phare:hover .article-phare__img img { transform: scale(1.03); }
.article-phare__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, oklch(92% 0.01 28) 0%, oklch(88% 0.03 28) 100%);
  font-size: 3rem;
}
.article-phare__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.article-phare__title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--coal);
  text-wrap: balance;
}
.article-phare__excerpt {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-phare__cta {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--burn);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.article-phare__cta .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.article-phare:hover .article-phare__cta .arrow { transform: translateX(4px); }

/* Articles grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.08);
  transform: translateY(-3px);
  text-decoration: none;
}
.article-card--coming {
  pointer-events: none;
  opacity: 0.55;
}
.article-card__img {
  aspect-ratio: 16/9;
  background: #F7F6F3;
  overflow: hidden;
  position: relative;
}
.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.3s;
}
.article-card:hover .article-card__img img { transform: scale(1.03); }
.article-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--smoke) 0%, var(--border) 100%);
}
.article-card__img-placeholder span { font-size: 2rem; color: var(--text-3); }
.article-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-card__category {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--burn);
}
.article-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--coal);
  text-wrap: balance;
}
.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__meta { font-size: 0.75rem; color: var(--text-3); margin-top: 0.25rem; }

/* ── Engine section — dégradé rouge ─────────────────── */
.engine-section {
  background: linear-gradient(135deg, oklch(43% 0.22 28) 0%, oklch(33% 0.18 18) 100%);
  padding: 4rem 0;
  color: #fff;
}
.engine-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.engine-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.engine-text p {
  font-size: 0.95rem;
  color: oklch(85% 0.02 28);
  max-width: 480px;
  line-height: 1.55;
}
.engine-cta {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  background: #fff;
  color: var(--burn-dark);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s, color 0.15s;
}
.engine-cta:hover { background: var(--burn-light); text-decoration: none; }
.engine-cta .arrow { transition: transform 0.35s var(--ease); display: inline-block; }
.engine-cta:hover .arrow { transform: translateX(4px); }

/* ── Confiance — 3 piliers ───────────────────────────── */
.confiance-section {
  padding: 3.5rem 0 4rem;
  background: #fff;
  border-top: 1px solid var(--border);
}
.confiance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.confiance-item {
  text-align: center;
  padding: 0 1rem;
}
.confiance-icon {
  font-size: 1.75rem;
  color: var(--burn);
  margin-bottom: 1rem;
  line-height: 1;
}
.confiance-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--coal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.confiance-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--coal);
  color: oklch(50% 0 0);
  font-size: 0.8rem;
  padding: 2rem 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.55;
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: oklch(50% 0 0); }
.footer-links a:hover { color: #fff; text-decoration: none; }

/* ── Animations ──────────────────────────────────────── */

/* Scroll reveal */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--rd, 0s);
}
html.js [data-reveal="fade"]  { transform: none; }
html.js [data-reveal="blur"]  { transform: none; filter: blur(8px); transition: opacity .7s var(--ease), filter .7s var(--ease); }
html.js [data-reveal="scale"] { transform: scale(.94); }
html.js [data-reveal="left"]  { transform: translateX(-28px); }
html.js [data-reveal].is-in   { opacity: 1; transform: none; filter: none; }

/* Staggered card entrance */
html.js .deals-grid .deal-card,
html.js .articles-grid .article-card {
  opacity: 0;
  transform: translateY(20px) scale(.98);
  animation: card-in .55s var(--ease) both;
  animation-delay: calc(var(--stagger-i, 0) * 80ms + 200ms);
}
@keyframes card-in {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  html.js [data-reveal="fade"],
  html.js [data-reveal="blur"],
  html.js [data-reveal="scale"],
  html.js [data-reveal="left"] { opacity: 1; transform: none; filter: none; transition: none; }
  html.js .deals-grid .deal-card,
  html.js .articles-grid .article-card { animation: none; opacity: 1; transform: none; }
  .hero-cta-primary .arrow,
  .engine-cta .arrow,
  .article-phare__cta .arrow,
  .hero-deal-card { transition: none; }
  .hero-live__dot circle:last-child { animation: none; }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-preview {
    flex-direction: row;
    max-width: 100%;
    min-width: 0;
  }
  .hero-deal-card { flex: 1; }
  .article-phare {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .article-phare__img { aspect-ratio: 16/9; min-height: auto; }
  .article-phare__img-placeholder { min-height: 180px; }
  .confiance-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .search-form input { width: 140px; }
  .hero-preview { display: none; }
  .hero-title { font-size: 2rem; }
  .engine-inner { flex-direction: column; align-items: flex-start; }
  .engine-cta { width: 100%; justify-content: center; }
  .section-header { flex-direction: column; gap: 0.5rem; }
}

/* ============================================================
   STYLES ARTICLES — contenu .article-body (cartes produit, typo, tableaux)
   ============================================================ */

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.article-body p { margin: 0 0 20px; }
.article-body .lead { font-size: 20px; margin-bottom: 24px; }

.article-body h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(25px, 4vw, 32px);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 52px 0 16px;
}
.article-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -.01em;
  margin: 28px 0 10px;
}
.article-body strong { font-weight: 700; }

.article-body ul { list-style: none; margin: 0 0 22px; padding: 0; }
.article-body ul li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.article-body ul li::before {
  content: ""; position: absolute; left: 2px; top: 10px;
  width: 9px; height: 9px; border-radius: 2px;
  background: #E8320A; transform: rotate(45deg);
}

.article-body a { color: #C22507; text-decoration: underline; text-underline-offset: 2px; }

/* ---- Carte produit ---- */
.article-body .pick {
  border: 1px solid #E4E4E0;
  border-radius: 16px;
  background: #fff;
  padding: 22px 24px;
  margin: 18px 0;
  box-shadow: 0 1px 2px rgba(20,20,20,.04), 0 8px 24px rgba(20,20,20,.06);
}
.article-body .pick .rank {
  display: block;
  font-family: 'Syne', sans-serif; font-style: italic; font-weight: 600;
  font-size: 14px; color: #8A8A84; margin-bottom: 6px;
}
.article-body .pick h3 { margin: 0 0 4px; font-size: 22px; }
.article-body .pick .merch { font-size: 14px; color: #8A8A84; margin-bottom: 14px; }

.article-body .pricerow {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.article-body .price-now {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 30px;
  color: #141414; line-height: 1;
}
.article-body .price-was {
  font-size: 16px; color: #8A8A84; text-decoration: line-through;
}
.article-body .badge-disc {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 13px; color: #fff; background: #E8320A;
  padding: 4px 10px; border-radius: 7px; letter-spacing: .02em;
}
.article-body .pick p { font-size: 16px; margin-bottom: 0; color: #39413b; }

/* ---- Encadrés ---- */
.article-body .tldr {
  background: #141414; color: #eef1ee; border-radius: 16px; padding: 26px 28px; margin: 30px 0;
}
.article-body .tldr h4 {
  font-family: 'Syne', sans-serif; font-size: 14px; letter-spacing: .1em;
  text-transform: uppercase; color: #9fd9bf; margin-bottom: 14px; font-weight: 600;
}
.article-body .tldr ul { margin: 0; }
.article-body .tldr li { padding-left: 26px; color: #dfe5e0; }
.article-body .tldr li::before {
  content: "→"; background: none; transform: none;
  color: #E8320A; font-weight: 700; top: 0; width: auto; height: auto;
}

.article-body .crit {
  border: 1px solid #E4E4E0; border-radius: 14px;
  background: #F7F6F3; padding: 22px 24px; margin: 16px 0;
}
.article-body .crit .tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #C22507; background: #FFF1EE; padding: 4px 10px;
  border-radius: 6px; margin-bottom: 10px;
}
.article-body .crit h3 { margin-top: 0; }

.article-body .note {
  border-left: 3px solid #E8320A; background: #F7F6F3;
  padding: 14px 18px; border-radius: 0 10px 10px 0;
  margin: 20px 0; font-size: 16px; color: #39413b;
}
.article-body .note strong { color: #141414; }

/* ---- Tableaux ---- */
.article-body .tablewrap {
  overflow-x: auto; margin: 18px 0;
  border: 1px solid #E4E4E0; border-radius: 14px;
}
.article-body table { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 420px; }
.article-body th, .article-body td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid #E4E4E0;
}
.article-body th {
  background: #F7F6F3; font-weight: 700; font-size: 13px;
  letter-spacing: .03em; text-transform: uppercase; color: #8A8A84;
}
.article-body tr:last-child td { border-bottom: none; }
.article-body td.num {
  font-family: 'Syne', sans-serif; font-weight: 600; white-space: nowrap;
}

/* ---- CTA final ---- */
.article-body .cta-final {
  background: linear-gradient(135deg, #C22507, #E8320A);
  border-radius: 18px; padding: 38px 32px; margin: 46px 0 30px;
  text-align: center; color: #fff;
}
.article-body .cta-final h2 { color: #fff; margin: 0 0 10px; }
.article-body .cta-final p { color: #ffe3db; max-width: 48ch; margin: 0 auto 22px; }
.article-body .cta-final .btn {
  display: inline-block; background: #fff; color: #C22507;
  text-decoration: none; font-weight: 700;
  font-size: 15px; padding: 13px 24px; border-radius: 10px;
}

.article-body .disclaimer {
  font-size: 13px; color: #8A8A84; font-style: italic; margin-top: 8px;
}

/* ---- Image d'en-tête article (contain, fond neutre) ---- */
.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #F7F6F3;
  border-radius: 16px;
  margin: 18px 0 28px;
  padding: 18px;
}
