/* ====================================================================
   sections-article.css — Fiches Journal (article, podcast, guide)
   v1.12-journal-fiches
   Importé après theme.css (+ sections-journal.css pour les fiches article
   qui réutilisent .pub-card / .s_newsletter / .cta-cross-section).
   Sommaire :
     01 · Hero article
     02 · Corps article
     03 · CTA inline
     04 · Bloc auteur
     05 · Articles liés
     06 · Placeholder (podcast / guide)
   ==================================================================== */


/* ====================================================================
   Breadcrumb (commun à toutes les fiches)
   ==================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}
.breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--duration-fast) ease-out;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span[aria-current],
.breadcrumb > span:last-child { color: var(--text-mid); }


/* ====================================================================
   01 · HERO ARTICLE
   ==================================================================== */
.article-hero {
  background: var(--canvas);
  padding-top: var(--s-8);
  padding-bottom: 0;
}
.article-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-top: var(--s-5);
  margin-bottom: var(--s-5);
}
.article-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 840px;
  margin-bottom: var(--s-6);
}
.article-chapo {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: var(--s-5);
}
.article-details {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}
.article-details span {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-soft);
}
.article-details svg { color: var(--text-soft); }
.article-cover {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.article-cover__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 767px) {
  .article-details { gap: var(--s-4); }
  .article-cover { border-radius: 0; border-left: none; border-right: none; }
}


/* ====================================================================
   02 · CORPS ARTICLE
   ==================================================================== */
.article-body {
  background: var(--canvas);
  padding-top: var(--s-9);
  padding-bottom: var(--s-9);
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content p {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--s-5);
}
.article-content h2 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: var(--s-9);
  margin-bottom: var(--s-5);
}
.article-content h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
}
.article-content strong { font-weight: 600; color: var(--navy); }
.article-content em { font-style: italic; }

/* Blockquote / callout */
.article-content blockquote {
  border-left: 2px solid var(--orange);
  padding: var(--s-5) var(--s-6);
  margin: var(--s-7) 0;
  background: var(--peach);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content blockquote p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.6;
}
.article-content blockquote p + p { margin-top: var(--s-3); }

/* Listes */
.article-content ul,
.article-content ol {
  padding-left: var(--s-6);
  margin-bottom: var(--s-5);
}
.article-content li {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--s-3);
}
.article-content li strong { color: var(--navy); }

/* Tableaux — wrapper scrollable sur mobile */
.article-table-wrap { overflow-x: auto; margin: var(--s-7) 0; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 15px;
}
.article-table-wrap table { margin: 0; }
.article-content th {
  background: var(--navy);
  color: var(--canvas);
  font-weight: 500;
  padding: var(--s-4) var(--s-5);
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.article-content td {
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--line);
  color: var(--text-mid);
  vertical-align: top;
}
.article-content tr:last-child td { border-bottom: none; }
.article-content tr:nth-child(even) td { background: var(--canvas-warm); }

/* Liens dans le corps */
.article-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast) ease-out;
}
.article-content a:hover { color: var(--orange); }

/* Chiffres / références forcés en Geist Mono (sans fond, lecture fluide) */
.article-content .mono {
  font-family: var(--font-mono);
  font-size: 0.94em;
  color: inherit;
  letter-spacing: -0.01em;
}
.article-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--canvas-warm);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--navy);
}

/* Séparateur */
.article-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: var(--s-9) 0;
}

@media (max-width: 767px) {
  .article-content { max-width: 100%; }
  .article-content h2 { margin-top: var(--s-7); }
  .article-content table { font-size: 13px; }
  .article-content th,
  .article-content td { padding: var(--s-3) var(--s-4); }
}


/* ====================================================================
   03 · CTA INLINE (dans le corps)
   ==================================================================== */
.article-cta-inline {
  background: var(--peach);
  border: 1px solid rgba(234, 109, 63, 0.2);
  border-radius: var(--radius-sm);
  padding: var(--s-7);
  margin: var(--s-9) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.article-cta-inline p {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  flex: 1;
}
@media (max-width: 767px) {
  .article-cta-inline { flex-direction: column; align-items: flex-start; }
}


/* ====================================================================
   04 · BLOC AUTEUR
   ==================================================================== */
.article-author-section {
  background: var(--canvas);
  padding-bottom: var(--s-9);
}
.article-author {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--canvas-warm);
}
.author-monogram {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
  color: var(--canvas);
  letter-spacing: 0.02em;
  position: relative;
}
.author-monogram::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  transform: translate(3px, 3px);
}
.author-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.author-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.author-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ====================================================================
   05 · ARTICLES LIÉS
   ==================================================================== */
.related-articles {
  background: var(--canvas-warm);
  padding: var(--s-9) 0;
}
.related-eyebrow {
  color: var(--orange);
  margin-bottom: var(--s-6);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
@media (max-width: 767px) {
  .related-grid { grid-template-columns: 1fr; }
}


/* ====================================================================
   06 · PLACEHOLDER (podcast / guide)
   ==================================================================== */
.placeholder-section {
  background: var(--canvas);
  padding: var(--s-11) 0;
}
.placeholder-block {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.placeholder-block h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.placeholder-block p {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
}
.placeholder-icon { color: var(--navy); opacity: 0.2; }

/* Les fiches placeholder ferment le hero par un padding bas (pas d'image) */
.article-hero.podcast-hero,
.article-hero.guide-hero { padding-bottom: var(--s-8); }
