/* ============================================================
   blog.css — Direction B v2 "Passion Pop équilibrée"
   Styles for /blog/*/ article pages (189 articles)
   All existing class names preserved; visual refaite
   ============================================================ */

html {
  --bg: #fdf6e8;
  --bg-alt: #f4ead0;
  --paper: #fff9e9;
  --cream: #f8e8a8;
  --ink: #1a1208;
  --ink-soft: #3d2f1a;
  --ink-muted: #6b5a42;
  --line: rgba(26, 18, 8, 0.15);
  --red: #e8242c;
  --red-dark: #b01820;
  --blue: #1b5aa8;
  --yellow: #ffc83d;
  --green: #10a36f;
  --purple: #6c3ab0;
  --font-display: 'Bungee', Impact, sans-serif;
  --font-shout: 'Bangers', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;
  --red-light: #e8242c;
  --red-bright: #e8242c;
  --dark: #fdf6e8;
  --dark2: #f4ead0;
  --dark3: #fff;
  --dark4: #fff9e9;
  --border: rgba(26, 18, 8, 0.15);
  --text: #1a1208;
  --muted: #3d2f1a;
  --subtle: #6b5a42;
  --radius: 0;
  --radius-lg: 0;
  scroll-behavior: smooth;
  background: #fdf6e8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fdf6e8;
  color: #1a1208;
  line-height: 1.65;
  overflow-x: hidden;
  font-size: clamp(15px, 1.2vw, 17px);
  -webkit-font-smoothing: antialiased;
  padding-top: 70px; /* header space */
}.article-hero-inner,
.article-header {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px clamp(16px, 3vw, 32px) 0;
}

/* Category badge — pop pill */
.article-cat-badge,
.category-badge {
  display: inline-block;
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 3px solid #1a1208;
  box-shadow: 3px 3px 0 #1a1208;
  background: #e8242c;
  color: #fff;
  margin-bottom: 20px;
  transform: rotate(-1deg);
}
/* Different categories = different accent colors */
.article-cat-badge.guide,
.category-badge.guide { background: #e8242c; }
.article-cat-badge.cgc,
.category-badge.cgc { background: #ffc83d; color: #1a1208; }
.article-cat-badge.key,
.category-badge.key { background: #1b5aa8; }
.article-cat-badge.valeur,
.category-badge.valeur { background: #10a36f; }
.article-cat-badge.histoire,
.category-badge.histoire { background: #6c3ab0; }
.article-cat-badge.app,
.category-badge.app { background: #e8242c; }
.article-cat-badge.collection,
.category-badge.collection { background: #e8242c; }

.article-hero h1,
.article-header h1 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  color: #1a1208;
  text-transform: uppercase;
}

.article-meta,
.meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13.5px;
  color: #6b5a42;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 2px solid #1a1208;
  font-weight: 600;
}
.article-meta strong,
.meta-info strong { color: #1a1208; font-weight: 700; }
.meta-sep { color: #6b5a42; margin: 0 6px; }/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  max-width: 860px;
  margin: 0 auto;
  padding: 16px clamp(16px, 3vw, 32px);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #6b5a42;
  font-weight: 600;
}
.breadcrumb a { color: #6b5a42; text-decoration: none; }
.breadcrumb a:hover { color: #e8242c; }
.breadcrumb span { color: #6b5a42; margin: 0 6px; }

/* ── ARTICLE BODY ───────────────────────────────────────── */
.article-layout,
.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px clamp(16px, 3vw, 32px) 64px;
}
.article-content h2,
.article-body h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 40px 0 16px;
  color: #1a1208;
  padding-top: 8px;
}
.article-content h2::before,
.article-body h2::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #e8242c;
  margin-bottom: 16px;
}
.article-content h3,
.article-body h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  margin: 24px 0 10px;
  color: #1a1208;
  line-height: 1.3;
}
.article-content p,
.article-body p {
  color: #3d2f1a;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
}
.article-content strong,
.article-body strong { color: #1a1208; font-weight: 700; }
.article-content ul,
.article-content ol,
.article-body ul,
.article-body ol {
  color: #3d2f1a;
  padding-left: 22px;
  margin-bottom: 16px;
}
.article-content li,
.article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
}
.article-content a,
.article-body a {
  color: #e8242c;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
}
.article-content a:hover,
.article-body a:hover { color: #b01820; }

/* Emphasis */
.article-content em,
.article-body em { color: #1a1208; font-style: italic; }

/* ── CALLOUT ────────────────────────────────────────────── */
.callout {
  background: #ffc83d;
  border: 3px solid #1a1208;
  box-shadow: 5px 5px 0 #1a1208;
  padding: 20px 24px;
  margin: 28px 0;
  transform: rotate(-0.4deg);
  border-radius: 0;
}
.callout p { margin-bottom: 0; color: #1a1208; font-weight: 500; }
.callout strong { color: #1a1208; font-weight: 800; }

/* ── INFO BOX ───────────────────────────────────────────── */
.info-box {
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  padding: 22px;
  margin: 28px 0;
  border-radius: 0;
}
.info-box h4 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  color: #1a1208;
  text-transform: uppercase;
}
.info-box ul {
  color: #3d2f1a;
  padding-left: 20px;
  margin-bottom: 0;
}
.info-box li { margin-bottom: 6px; font-size: 14px; font-weight: 500; }

/* ── STEPS ──────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
  border: 2px solid rgba(26, 18, 8, 0.15);
  border-radius: 0;
}
.step-num {
  width: 44px;
  height: 44px;
  background: #1a1208;
  color: #fff;
  border: 3px solid #1a1208;
  box-shadow: 3px 3px 0 #1a1208;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bungee', Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transform: rotate(-3deg);
}
.step:first-child .step-num { background: #e8242c; }
.step:last-child .step-num { background: #ffc83d; color: #1a1208; }
.step-content h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1208;
}
.step-content p {
  font-size: 14px;
  color: #3d2f1a;
  margin-bottom: 0;
  line-height: 1.65;
  font-weight: 500;
}

/* ── PROBLEM CARDS (within articles) ────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.problem-card {
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  padding: 20px;
}
.problem-card h3 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1208;
  letter-spacing: -0.2px;
  margin: 0 0 10px;
  text-transform: uppercase;
  line-height: 1.15;
}
.problem-card p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #3d2f1a;
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 500;
}
.p-icon,
.problem-card .p-icon {
  width: 40px;
  height: 40px;
  background: #e8242c;
  color: #fff;
  border: 2px solid #1a1208;
  box-shadow: 2px 2px 0 #1a1208;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  transform: rotate(-4deg);
  flex-shrink: 0;
}

/* ── METHOD CARDS (comparative cards in articles) ───────── */
.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.method-card {
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  padding: 20px;
  border-radius: 0;
}
.method-card h3 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1a1208;
  letter-spacing: -0.2px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.method-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #3d2f1a;
  margin: 0 0 10px;
  font-weight: 500;
}
.method-score {
  display: inline-block;
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 12px;
  letter-spacing: 1.3px;
  padding: 4px 10px;
  border: 2px solid #1a1208;
  margin-top: 6px;
}
.method-score.score-good { background: #10a36f; color: #fff; }
.method-score.score-ok { background: #ffc83d; color: #1a1208; }
.method-score.score-bad { background: #e8242c; color: #fff; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.faq-item {
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 280ms ease-out, background 280ms ease-out;
}
.faq-item.open {
  background: #ffc83d;
  box-shadow: 5px 5px 0 #1a1208;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  color: #1a1208;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q::after {
  content: '+';
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 20px;
  color: #fff;
  background: #e8242c;
  border: 2px solid #1a1208;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms ease-out;
}
.faq-item.open .faq-q::after {
  content: '+';
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14.5px;
  color: #1a1208;
  line-height: 1.7;
  font-weight: 500;
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: #b01820; font-weight: 700; }

/* ── CTA BLOCK ──────────────────────────────────────────── */
.cta-block {
  background: #e8242c;
  color: #fff;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.5px);
  background-size: 6px 6px;
  border: 3px solid #1a1208;
  box-shadow: 6px 6px 0 #1a1208;
  border-radius: 0;
  padding: clamp(28px, 4vw, 44px) clamp(16px, 3vw, 28px);
  text-align: center;
  margin: 40px 0;
}
.cta-block h2 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  color: #fff;
  margin-bottom: 12px;
  margin-top: 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 3px 3px 0 #1a1208;
  padding-top: 0;
}
.cta-block h2::before { display: none; }
.cta-block p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: #ffc83d;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  border-radius: 0;
  color: #1a1208 !important;
  text-decoration: none;
  font-family: 'Bangers', Impact, sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1.8px;
  transition: transform 140ms ease-out, box-shadow 140ms ease-out;
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #1a1208;
  text-decoration: none;
  color: #1a1208 !important;
}
.cta-note {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
  font-weight: 600;
}

/* ── INTERNAL LINKS ─────────────────────────────────────── */
.internal-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}
.internal-links h3 {
  grid-column: 1 / -1;
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8242c;
  margin-bottom: 6px;
}
.int-link {
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 3px 3px 0 #1a1208;
  border-radius: 0;
  padding: 16px 18px;
  text-decoration: none;
  display: block;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  border-bottom: 3px solid #1a1208;
}
.int-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #1a1208;
  background: #f8e8a8;
  color: inherit;
}
.int-link .il-label {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 11px;
  color: #e8242c;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 4px;
}
.int-link .il-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1208;
}/* ── PILLAR INTERNAL LINKS (aside in articles) ─────────── */
.pillar-internal-links {
  background: #f8e8a8;
  border: 3px solid #1a1208;
  box-shadow: 5px 5px 0 #1a1208;
  border-radius: 0;
  padding: 22px 24px;
  margin: 32px 0;
  transform: rotate(-0.3deg);
}
.pillar-internal-links h3 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1a1208;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.pillar-internal-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pillar-internal-links li {
  color: #1a1208;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
}
.pillar-internal-links li::before {
  content: '→ ';
  color: #e8242c;
  font-weight: 800;
  margin-right: 4px;
}
.pillar-internal-links a {
  color: #b01820;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  font-weight: 700;
}
.pillar-internal-links a:hover {
  color: #e8242c;
  text-decoration: underline;
}

/* ── SHORT ANSWER block in articles ─────────────────────── */
.short-answer {
  background: #10a36f;
  color: #fff;
  border: 3px solid #1a1208;
  box-shadow: 5px 5px 0 #1a1208;
  border-radius: 0;
  padding: 22px 26px;
  margin: 24px 0 32px;
  transform: rotate(-0.4deg);
}
.short-answer-label {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ffc83d;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.short-answer p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(15px, 1.5vw, 16.5px);
  color: #fff;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.short-answer p strong { color: #ffc83d; font-weight: 800; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .method-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .link-grid { grid-template-columns: 1fr; }
  .internal-links { grid-template-columns: 1fr; }
  .breadcrumb { padding: 12px 16px; }
  .article-layout,
  .article-body { padding: 24px 16px 48px; }
  .article-hero { padding: 24px 0 0; }
  .article-header { padding: 20px 16px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .method-cards { grid-template-columns: 1fr; }
  body { padding-top: 64px; }
}

/* ── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .callout, .short-answer, .author-byline,
  .pillar-internal-links, .article-cat-badge, .category-badge,
  .step-num, .p-icon { transform: none !important; }
  * { transition: none !important; animation: none !important; }
}

:focus-visible {
  outline: 3px solid #ffc83d;
  outline-offset: 3px;
}

/* ============================================================
   BLOG LISTING (/blog/ and /blog/page/N/)
   ============================================================ */

.blog-hero {
  padding: clamp(40px, 5vw, 60px) 0 clamp(30px, 4vw, 50px);
  background: #fdf6e8;
  background-image: radial-gradient(rgba(232, 36, 44, 0.1) 1px, transparent 1.5px);
  background-size: 6px 6px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #1a1208;
}
.blog-hero::before { display: none; }
.blog-hero .section-label {
  display: inline-block;
  padding: 5px 12px;
  background: #e8242c !important;
  color: #fff !important;
  border: 3px solid #1a1208;
  box-shadow: 3px 3px 0 #1a1208;
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transform: rotate(-1deg);
  margin-bottom: 18px;
  border-radius: 0;
}
.blog-hero h1 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto 14px;
  color: #1a1208;
  padding-top: 0;
}
.blog-hero h1::before { display: none; }
.blog-hero p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #3d2f1a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 500;
}
.blog-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 20px);
  margin-top: 20px;
  flex-wrap: wrap;
}
.blog-hero-stat {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #1a1208;
  font-weight: 600;
  padding: 8px 14px;
  background: #fff;
  border: 2px solid #1a1208;
  box-shadow: 3px 3px 0 #1a1208;
}
.blog-hero-stat strong {
  color: #e8242c;
  font-weight: 800;
  font-family: 'Bangers', Impact, sans-serif;
  letter-spacing: 1px;
}
.blog-hero-sep { display: none; }

.blog-section { padding: clamp(40px, 5vw, 60px) clamp(16px, 3vw, 48px); }
.blog-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 1023px) {
  .blog-inner { grid-template-columns: 1fr; }
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1279px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .articles-grid { grid-template-columns: 1fr; } }

.article-card {
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  border-radius: 0;
  overflow: hidden;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.article-card::before { display: none; }
.article-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #1a1208;
}
.article-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 767px) { .article-card.featured { flex-direction: column; } }
.article-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card.featured .article-card-body { padding: 28px 32px; flex: 1; }

.article-cat {
  display: inline-block;
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 2px solid #1a1208;
  background: #e8242c;
  color: #fff;
  align-self: flex-start;
  margin-bottom: 12px;
}
.cat-guide { background: #e8242c; color: #fff; }
.cat-cgc { background: #ffc83d; color: #1a1208; }
.cat-valeur { background: #10a36f; color: #fff; }
.cat-key { background: #1b5aa8; color: #fff; }
.cat-histoire { background: #6c3ab0; color: #fff; }.article-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1a1208;
  padding-top: 0;
  letter-spacing: -0.2px;
  text-transform: none;
}
.article-card h2::before { display: none; }
.article-card.featured h2 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  margin-bottom: 12px;
}
.article-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #3d2f1a;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
  font-weight: 500;
}
.article-card.featured p { font-size: 15px; max-width: 65ch; }
.article-card .article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6b5a42;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: none;
  font-weight: 600;
}
.article-link {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #e8242c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  letter-spacing: 1.2px;
}
.article-link::after {
  position: absolute;
  inset: 0;
  content: '';
}

/* Sidebar */
.blog-sidebar { position: sticky; top: 90px; }
@media (max-width: 1023px) { .blog-sidebar { position: static; } }
.sidebar-block {
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 18px;
}
.sidebar-block h3 {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #e8242c;
  margin-bottom: 14px;
}
.cat-filter { display: flex; flex-direction: column; gap: 6px; }
.cat-filter a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 2px solid #1a1208;
  background: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1208;
  transition: all 140ms;
  font-weight: 600;
}
.cat-filter a:hover {
  background: #f8e8a8;
  box-shadow: 2px 2px 0 #1a1208;
}
.cat-filter a.active {
  background: #1a1208;
  color: #ffc83d;
  box-shadow: 3px 3px 0 #e8242c;
}
.cat-count {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 11px;
  background: #ffc83d;
  color: #1a1208;
  padding: 2px 8px;
  letter-spacing: 1px;
  border: 1px solid #1a1208;
}
.sidebar-cta {
  background: #e8242c;
  color: #fff;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.5px);
  background-size: 6px 6px;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
  border-radius: 0;
  padding: 22px;
  text-align: center;
}
.sidebar-cta h3 {
  font-family: 'Bungee', Impact, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.sidebar-cta .sidebar-title {
  color: #fff;
}
.sidebar-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.btn-cta-sm {
  display: block;
  background: #ffc83d;
  color: #1a1208 !important;
  text-align: center;
  padding: 10px 14px;
  border: 3px solid #1a1208;
  box-shadow: 3px 3px 0 #1a1208;
  border-radius: 0;
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 140ms;
}
.btn-cta-sm:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #1a1208;
  text-decoration: none;
  color: #1a1208 !important;
}/* Search */
.search-bar { position: relative; margin-bottom: 18px; }
.search-bar input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  background: #fff;
  border: 2px solid #1a1208;
  border-radius: 0;
  color: #1a1208;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  outline: none;
}
.search-bar input:focus { box-shadow: 3px 3px 0 #e8242c; }
.search-bar input::placeholder { color: #6b5a42; }
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b5a42;
  font-size: 16px;
  pointer-events: none;
}

.no-results {
  display: none;
  text-align: center;
  padding: 48px 16px;
  color: #3d2f1a;
  font-size: 15px;
  grid-column: 1 / -1;
  background: #fff9e9;
  border: 3px solid #1a1208;
  font-weight: 500;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 3px solid #1a1208;
  background: #fff;
  color: #1a1208;
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 140ms;
  text-decoration: none;
  box-shadow: 2px 2px 0 #1a1208;
}
.page-btn:hover:not(:disabled) {
  background: #f8e8a8;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #1a1208;
  color: #1a1208;
}
.page-btn.active {
  background: #e8242c;
  border-color: #1a1208;
  color: #fff;
  box-shadow: 3px 3px 0 #1a1208;
}
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.page-info {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6b5a42;
  padding: 0 8px;
  font-weight: 600;
}

/* ── Hub banner (blog index) ────────────────────────────────────────────── */
.hub-banner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 8px;
}
.hub-banner-inner {
  border: 3px solid #1a1208;
  background: #fff;
  box-shadow: 4px 4px 0 #1a1208;
  padding: 20px 24px;
}
.hub-banner-title {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8242c;
  margin-bottom: 14px;
}
.hub-banner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hub-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border: 2px solid #1a1208;
  background: #fdf6e3;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1208;
  text-decoration: none;
  transition: all 140ms;
  box-shadow: 2px 2px 0 #1a1208;
}
.hub-chip:hover {
  background: #ffc83d;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #1a1208;
}
.hub-chip-emoji { font-size: 15px; }
@media (max-width: 600px) {
  .hub-banner { padding: 0 12px 8px; }
  .hub-banner-inner { padding: 16px; }
  .hub-chip { padding: 6px 10px; font-size: 12px; }
}.article-card h2 a {
  color: inherit;
  text-decoration: none;
}
.article-card h2 a:hover { color: #e8242c; }

/* ── Article bottom hub CTA ─────────────────────────────── */
.article-hubs-cta {
  margin: 3rem auto 0;
  max-width: 800px;
  padding: 1.5rem;
  background: #fffdf5;
  border: 3px solid #1a1208;
  box-shadow: 5px 5px 0 #1a1208;
}
.article-hubs-cta h3 {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #1a1208;
  text-align: center;
  margin: 0 0 1rem;
}
.article-hubs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.article-hubs-grid a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #fff;
  border: 2px solid #1a1208;
  box-shadow: 2px 2px 0 #1a1208;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #1a1208;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.article-hubs-grid a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #1a1208;
  color: #e8242c;
}.hub-index-stats .stat { text-align: center; }
.hub-index-stats .stat-num { font-family: 'Bangers', Impact, sans-serif; font-size: 2rem; color: #e8242c; display: block; }
.hub-index-stats .stat-label { font-size: .8rem; color: #6b5a42; font-weight: 600; }
@media (max-width: 560px) { .hub-cards-grid { grid-template-columns: 1fr; } .hub-index-hero h1 { font-size: 1.6rem; } }

/* ── AUTHOR HUBS ──────────────────────────────────────────── */

/* Author CTA block at bottom of articles (parallel to .article-hubs-cta) */
.article-authors-cta {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.75rem;
  background: #fffdf5;
  border: 3px solid #1a1208;
  box-shadow: 5px 5px 0 #1a1208;
}
.article-authors-cta h3 {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #1a1208;
  margin-bottom: .75rem;
  text-align: center;
}
.article-authors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.article-authors-grid a {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 2px solid #1a1208;
  box-shadow: 2px 2px 0 #1a1208;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: #1a1208;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s, color .12s;
}
.article-authors-grid a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #1a1208;
  color: #e8242c;
}/* Author dropdown filter on blog index */
.author-filter-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.5rem;
  padding: .75rem 1rem;
  background: #fff;
  border: 3px solid #1a1208;
  box-shadow: 4px 4px 0 #1a1208;
}
.author-filter-label {
  font-family: 'Bangers', Impact, sans-serif;
  font-size: .95rem;
  letter-spacing: .5px;
  color: #1a1208;
  white-space: nowrap;
}
.author-filter-select {
  flex: 1;
  max-width: 340px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: #1a1208;
  background: #fffdf5;
  border: 2px solid #1a1208;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1208' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.author-filter-select:focus {
  outline: 2px solid #e8242c;
  outline-offset: 1px;
}
@media (max-width: 600px) {
  .author-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .author-filter-select {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .char-grid { grid-template-columns: 1fr; }
}