/* ═════════════════════════════════════════════════════════════════
   plateformes_editoriales.css — composants visuels uniques
   Thème : MAGAZINE IMPRIMÉ / REVUE D'EXPERTISE
   ─────────────────────────────────────────────────────────────────
   Sensation : papier glacé, salon littéraire, Long Cours / XXI /
   The New Yorker / Monocle. Drop caps, colonnes de journal,
   pull quotes, signature plume, encadrés "À LIRE AUSSI",
   numérotation marges, sommaire paginé, ornements typo.
═════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────────
   1 · MASTHEAD STRIP — bandeau de couverture haut de page
───────────────────────────────────────────────────────────────── */
.masthead-strip {
  background: #0c0f1a;
  color: #f5ecd9;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(245, 236, 217, 0.18);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}
.masthead-strip-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  justify-content: space-between;
}
.masthead-strip strong {
  color: #e2a8a0;
  font-weight: 600;
}
.masthead-strip .sep {
  color: rgba(245, 236, 217, 0.35);
}
.masthead-glyph {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: #e2a8a0;
}
.masthead-glyph-mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1.4px solid #e2a8a0;
  border-radius: 50%;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}


/* ─────────────────────────────────────────────────────────────────
   2 · MAGAZINE COVER — wrapper du hero couverture
───────────────────────────────────────────────────────────────── */
.magazine-cover {
  position: relative;
  background: #f5ecd9;
  border: 1px solid rgba(12, 15, 26, 0.15);
  box-shadow:
    0 1px 0 rgba(12, 15, 26, 0.08),
    0 30px 60px -40px rgba(12, 15, 26, 0.45);
  padding: 2.4rem 2rem 2.6rem;
}
@media (min-width: 768px) {
  .magazine-cover { padding: 3.2rem 3rem 3.4rem; }
}
@media (min-width: 1024px) {
  .magazine-cover { padding: 4rem 4rem 4.4rem; }
}

/* Double cadre intérieur ultra fin façon couverture imprimée */
.magazine-cover::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(12, 15, 26, 0.18);
  pointer-events: none;
}
.magazine-cover::after {
  content: "";
  position: absolute;
  inset: 0.95rem;
  border: 0.5px solid rgba(12, 15, 26, 0.08);
  pointer-events: none;
}

/* Filet décoratif en haut de la couverture */
.cover-top-rule {
  border-top: 3px solid #0c0f1a;
  border-bottom: 1px solid #0c0f1a;
  padding: 0.5rem 0;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
}
.cover-top-rule strong {
  color: #0c0f1a;
  font-weight: 600;
}

/* Numéro d'édition rotatif dans un coin */
.issue-stamp {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 92px;
  height: 92px;
  border: 1.5px solid #5a1224;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #5a1224;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(245, 236, 217, 0.55);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 2;
}
.issue-stamp em {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.15rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .issue-stamp { width: 72px; height: 72px; font-size: 0.55rem; top: 1.1rem; right: 1.1rem; }
  .issue-stamp em { font-size: 1.25rem; }
}


/* ─────────────────────────────────────────────────────────────────
   3 · COVER TITLE — titre principal style cover magazine
───────────────────────────────────────────────────────────────── */
.cover-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.8rem, 7.4vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #0c0f1a;
  margin: 0.4rem 0 1.2rem;
}
.cover-title em {
  font-style: italic;
  color: #5a1224;
  font-weight: 500;
}
.cover-title-line {
  display: block;
}
.cover-title-line.is-roman {
  font-style: normal;
  font-weight: 500;
}

.cover-byline {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.cover-byline-name {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: #0c0f1a;
  font-weight: 500;
}

/* Liste de "bullets" en couverture façon magazine */
.cover-bullets {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  border-top: 1px solid rgba(12, 15, 26, 0.15);
}
.cover-bullet {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(12, 15, 26, 0.18);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #0c0f1a;
  line-height: 1.4;
}
.cover-bullet-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a1224;
  font-weight: 600;
  flex: none;
  white-space: nowrap;
}


/* ─────────────────────────────────────────────────────────────────
   4 · ISSUE TOC — sommaire "DANS CE NUMÉRO" paginé
───────────────────────────────────────────────────────────────── */
.issue-toc {
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.18);
  padding: 1.6rem 1.5rem 1.8rem;
  position: relative;
}
.issue-toc::before {
  /* Double rule au-dessus du sommaire */
  content: "";
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 5px;
  border-top: 1px solid #0c0f1a;
  border-bottom: 1px solid #0c0f1a;
  background: #fdf6e3;
}
.issue-toc-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6557;
  margin-bottom: 0.4rem;
}
.issue-toc-heading {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0c0f1a;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid #0c0f1a;
}
.issue-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.issue-toc-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(12, 15, 26, 0.25);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #0c0f1a;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.issue-toc-line:last-child { border-bottom: none; }
.issue-toc-line:hover {
  color: #5a1224;
  transform: translateX(2px);
}
.issue-toc-line.is-active {
  color: #5a1224;
  font-weight: 500;
}
.issue-toc-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: #6b6557;
  flex: none;
  font-weight: 500;
}
.issue-toc-fill {
  flex: 1;
  border-bottom: 1px dotted rgba(12, 15, 26, 0.3);
  transform: translateY(-3px);
  min-width: 1rem;
}
.issue-toc-page {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: #5a1224;
  flex: none;
  letter-spacing: 0;
}


/* ─────────────────────────────────────────────────────────────────
   5 · DROPCAP — lettrine géante en début de paragraphe
───────────────────────────────────────────────────────────────── */
.dropcap {
  float: left;
  font-family: "Fraunces", "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 5.4rem;
  line-height: 0.82;
  padding: 0.4rem 0.7rem 0 0;
  margin: 0.2rem 0.15rem 0 0;
  color: #5a1224;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.dropcap.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.dropcap-ink { color: #0c0f1a; }
.dropcap-accent { color: #6b8169; }
.dropcap-cream { color: #f5ecd9; }

@media (prefers-reduced-motion: reduce) {
  .dropcap { opacity: 1; transform: none; transition: none; }
}


/* ─────────────────────────────────────────────────────────────────
   6 · PULL QUOTE — citation imposante en marge
───────────────────────────────────────────────────────────────── */
.pull-quote {
  position: relative;
  padding: 1.6rem 0 1.6rem 2.6rem;
  margin: 1.6rem 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.25;
  color: #0c0f1a;
  letter-spacing: -0.015em;
  border-top: 1px solid rgba(12, 15, 26, 0.15);
  border-bottom: 1px solid rgba(12, 15, 26, 0.15);
}
.pull-quote::before {
  /* Guillemet ouvrant typographique imposant */
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: -0.4rem;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 5.5rem;
  line-height: 0.85;
  color: rgba(90, 18, 36, 0.35);
  pointer-events: none;
}
.pull-quote-cite {
  display: block;
  margin-top: 0.85rem;
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
}
.pull-quote-cite::before {
  content: "— ";
  color: #5a1224;
}

.pull-quote-block {
  /* Variante encadré centré façon "exergue" */
  text-align: center;
  padding: 2.2rem 1.6rem;
  border: 1px solid rgba(12, 15, 26, 0.12);
  background: rgba(245, 236, 217, 0.5);
}
.pull-quote-block::before {
  position: static;
  display: block;
  font-size: 4.5rem;
  line-height: 0.4;
  margin-bottom: 1rem;
  text-align: center;
}


/* ─────────────────────────────────────────────────────────────────
   7 · BYLINE & CHAPÔ — métadonnées d'article
───────────────────────────────────────────────────────────────── */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.85rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  margin-top: 0.6rem;
}
.byline-author {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  color: #0c0f1a;
  font-weight: 500;
}
.byline-author::before {
  content: "Par ";
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  margin-right: 0.3rem;
}
.byline .sep { color: rgba(12, 15, 26, 0.3); }

.chapo {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.45;
  color: rgba(12, 15, 26, 0.85);
  letter-spacing: -0.005em;
  max-width: 60ch;
  margin-bottom: 1.4rem;
}
.chapo-ink {
  color: rgba(245, 236, 217, 0.82);
}


/* ─────────────────────────────────────────────────────────────────
   8 · RUBRIC TAG — étiquette de rubrique magazine
───────────────────────────────────────────────────────────────── */
.rubric-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b6557;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.rubric-tag::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1.4px;
  background: #5a1224;
}
.rubric-tag strong {
  color: #5a1224;
  font-weight: 600;
}
.rubric-tag-ink {
  color: rgba(245, 236, 217, 0.65);
}
.rubric-tag-ink::before {
  background: #e2a8a0;
}
.rubric-tag-ink strong {
  color: #e2a8a0;
}


/* ─────────────────────────────────────────────────────────────────
   9 · COLUMN SETS — colonnes de journal serrées
───────────────────────────────────────────────────────────────── */
.column-set-2,
.column-set-3 {
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #0c0f1a;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  column-rule: 1px solid rgba(12, 15, 26, 0.12);
  column-gap: 2.2rem;
}
.column-set-2 { columns: 1; }
.column-set-3 { columns: 1; }
@media (min-width: 768px) {
  .column-set-2 { columns: 2; }
}
@media (min-width: 1024px) {
  .column-set-3 { columns: 3; }
}
.column-set-2 p,
.column-set-3 p { margin-bottom: 1rem; break-inside: avoid; }
.column-set-2 p:last-child,
.column-set-3 p:last-child { margin-bottom: 0; }


/* ─────────────────────────────────────────────────────────────────
   10 · ENDMARK — petit carré ■ qui clôt un article
───────────────────────────────────────────────────────────────── */
.endmark {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background: #5a1224;
  margin-left: 0.25rem;
  vertical-align: -0.05em;
}
.endmark-outline {
  background: transparent;
  border: 2px solid #5a1224;
}
.endmark-ink { background: #0c0f1a; }
.endmark-accent { background: #6b8169; }


/* ─────────────────────────────────────────────────────────────────
   11 · ORNAMENT — séparateur typographique (✦ ❦ centré)
───────────────────────────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  font-family: "Fraunces", serif;
  color: rgba(90, 18, 36, 0.55);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(12, 15, 26, 0.18);
  max-width: 7rem;
}
.ornament-cream {
  color: rgba(226, 168, 160, 0.6);
}
.ornament-cream::before,
.ornament-cream::after {
  background: rgba(245, 236, 217, 0.2);
}


/* ─────────────────────────────────────────────────────────────────
   12 · ASIDE RELATED — encadré "À LIRE AUSSI"
───────────────────────────────────────────────────────────────── */
.aside-related {
  position: relative;
  background: rgba(107, 129, 105, 0.08);
  border-left: 4px solid #6b8169;
  padding: 1.3rem 1.5rem;
  margin: 1.6rem 0;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #0c0f1a;
}
.aside-related-tag {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b8169;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.aside-related a {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: #0c0f1a;
  text-decoration: underline;
  text-decoration-color: rgba(107, 129, 105, 0.5);
  text-underline-offset: 3px;
  font-weight: 500;
}
.aside-related a:hover {
  color: #5a1224;
  text-decoration-color: #5a1224;
}


/* ─────────────────────────────────────────────────────────────────
   13 · PAGE NUMBER MARGIN — p.III dans la marge
───────────────────────────────────────────────────────────────── */
.page-number-margin {
  position: absolute;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(12, 15, 26, 0.4);
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
}
.page-number-margin-top-left  { top: 1.2rem; left: 1.4rem; }
.page-number-margin-top-right { top: 1.2rem; right: 1.4rem; }
.page-number-margin-bottom-left  { bottom: 1.2rem; left: 1.4rem; }
.page-number-margin-bottom-right { bottom: 1.2rem; right: 1.4rem; }
.page-number-margin-ink { color: rgba(245, 236, 217, 0.35); }


/* ─────────────────────────────────────────────────────────────────
   14 · SIGNATURE BLOCK — signature plume + cachet
───────────────────────────────────────────────────────────────── */
.signature-block {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(12, 15, 26, 0.15);
}
.signature-block-ink {
  border-top-color: rgba(245, 236, 217, 0.2);
}
.signature-glyph {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 2.8rem;
  line-height: 0.9;
  color: #5a1224;
  letter-spacing: -0.02em;
  transform: rotate(-3deg);
  flex: none;
}
.signature-glyph-cream { color: #e2a8a0; }
.signature-block-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
}
.signature-block-meta strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: #0c0f1a;
  font-weight: 500;
}
.signature-block-ink .signature-block-meta strong { color: #f5ecd9; }
.signature-block-ink .signature-block-meta { color: rgba(245, 236, 217, 0.6); }

/* Cachet rond apposé style "tampon de la rédaction" */
.signature-seal {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1.5px solid #5a1224;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: none;
  color: #5a1224;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(7deg);
  opacity: 0.78;
}
.signature-seal em {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.1rem 0;
}


/* ─────────────────────────────────────────────────────────────────
   15 · ARTICLE CARD — fiche article style magazine (pour les rubriques)
───────────────────────────────────────────────────────────────── */
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.12);
  padding: 1.6rem 1.5rem 1.7rem;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.article-card::before {
  /* Filet vertical filigrane gauche */
  content: "";
  position: absolute;
  top: 1.6rem; bottom: 1.6rem;
  left: 0;
  width: 3px;
  background: #5a1224;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.article-card:hover {
  border-color: rgba(90, 18, 36, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 22px 38px -28px rgba(12, 15, 26, 0.32);
}
.article-card:hover::before { opacity: 1; }
.article-card-num {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.85;
  font-weight: 600;
  color: rgba(90, 18, 36, 0.08);
  pointer-events: none;
  user-select: none;
}
.article-card-rubric {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a1224;
  font-weight: 600;
  padding-bottom: 0.45rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(12, 15, 26, 0.12);
}
.article-card-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
  color: #0c0f1a;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
}
.article-card-title em {
  font-style: italic;
  color: #5a1224;
}
.article-card-body {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(12, 15, 26, 0.78);
}
.article-card-body p + p { margin-top: 0.65rem; }
.article-card-foot {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(12, 15, 26, 0.15);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}


/* ─────────────────────────────────────────────────────────────────
   16 · EDITOR MOCKUP — maquette d'écran rédacteur (CKEditor)
───────────────────────────────────────────────────────────────── */
.editor-mockup {
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 22px 50px -28px rgba(12, 15, 26, 0.4),
    0 0 0 1px rgba(12, 15, 26, 0.05);
  position: relative;
}
.editor-mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: #ece5d6;
  border-bottom: 1px solid rgba(12, 15, 26, 0.1);
}
.editor-mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(12, 15, 26, 0.2);
}
.editor-mockup-dot.is-red { background: #d4644a; }
.editor-mockup-dot.is-yellow { background: #e8b94a; }
.editor-mockup-dot.is-green { background: #7a9472; }
.editor-mockup-titlebar-url {
  flex: 1;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: #6b6557;
  background: #f5ecd9;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 15, 26, 0.08);
  max-width: 22rem;
  margin: 0 auto;
}
.editor-mockup-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  background: #f5ecd9;
  border-bottom: 1px solid rgba(12, 15, 26, 0.1);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: #0c0f1a;
}
.editor-mockup-toolbar-btn {
  padding: 0.3rem 0.55rem;
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.1);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: default;
  letter-spacing: 0.04em;
}
.editor-mockup-toolbar-btn.is-active {
  background: #0c0f1a;
  color: #f5ecd9;
  border-color: #0c0f1a;
}
.editor-mockup-toolbar-sep {
  width: 1px;
  background: rgba(12, 15, 26, 0.15);
  margin: 0.1rem 0.2rem;
}
.editor-mockup-body {
  padding: 1.6rem 1.8rem 2rem;
  background: #fffaf0;
  min-height: 320px;
}
.editor-mockup-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b88c3a;
  margin-bottom: 0.9rem;
}
.editor-mockup-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4af3a;
  animation: editor-dot-pulse 2.2s ease-in-out infinite;
}
@keyframes editor-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .editor-mockup-status .dot { animation: none; }
}
.editor-mockup-h1 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1.1;
  color: #0c0f1a;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  border-left: 3px solid #5a1224;
  padding-left: 0.85rem;
}
.editor-mockup-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
  margin-bottom: 1.2rem;
}
.editor-mockup-p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(12, 15, 26, 0.85);
  margin-bottom: 0.85rem;
}
.editor-mockup-caret {
  display: inline-block;
  width: 1.5px;
  height: 1.1em;
  background: #0c0f1a;
  vertical-align: -0.15em;
  animation: editor-caret-blink 1s steps(1) infinite;
}
@keyframes editor-caret-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .editor-mockup-caret { animation: none; opacity: 1; }
}
.editor-mockup-footbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.65rem 1rem;
  background: #ece5d6;
  border-top: 1px solid rgba(12, 15, 26, 0.1);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6557;
}
.editor-mockup-footbar strong {
  color: #5a1224;
  font-weight: 600;
}
.editor-mockup-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  background: rgba(107, 129, 105, 0.18);
  color: #4d5e4b;
  border-radius: 999px;
  font-weight: 600;
}
.editor-mockup-pill.is-draft {
  background: rgba(212, 175, 58, 0.22);
  color: #8a6b1e;
}
.editor-mockup-pill.is-published {
  background: rgba(107, 129, 105, 0.22);
  color: #4d5e4b;
}


/* ─────────────────────────────────────────────────────────────────
   17 · TOOLKIT CARD — boîte à outils rédactionnelle (modules)
───────────────────────────────────────────────────────────────── */
.toolkit-card {
  position: relative;
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.12);
  padding: 1.6rem 1.5rem 1.7rem;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.toolkit-card::after {
  /* Petite cocarde "INCLUS" en bas-droite */
  content: "INCLUS";
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: rgba(107, 129, 105, 0.55);
  font-weight: 600;
  pointer-events: none;
}
.toolkit-card:hover {
  border-color: rgba(90, 18, 36, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(12, 15, 26, 0.3);
}
.toolkit-card-rubric {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 600;
  color: #5a1224;
  line-height: 0.85;
  margin-bottom: 0.45rem;
  letter-spacing: -0.03em;
}
.toolkit-card-rubric small {
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6557;
  display: block;
  margin-top: 0.45rem;
  font-weight: 500;
}
.toolkit-card-title {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0c0f1a;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(12, 15, 26, 0.1);
}
.toolkit-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toolkit-card-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: rgba(12, 15, 26, 0.82);
  line-height: 1.45;
}
.toolkit-card-list li::before {
  content: "❦";
  font-family: "Fraunces", serif;
  color: #6b8169;
  font-size: 0.75rem;
  flex: none;
}


/* ─────────────────────────────────────────────────────────────────
   18 · MANIFESTO — manifeste numéroté avec grand chiffre + pull-quote
───────────────────────────────────────────────────────────────── */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .manifesto-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}
.manifesto-item {
  position: relative;
  padding: 2.2rem 1.4rem 1.5rem;
  border: 1px solid rgba(245, 236, 217, 0.18);
  background: rgba(245, 236, 217, 0.04);
  border-radius: 4px;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.manifesto-item:hover {
  background: rgba(245, 236, 217, 0.08);
  border-color: rgba(226, 168, 160, 0.4);
  transform: translateY(-2px);
}
.manifesto-item-num {
  position: absolute;
  top: -0.3rem;
  left: 1.1rem;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(226, 168, 160, 0.95);
  letter-spacing: -0.04em;
}
.manifesto-item-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f5ecd9;
  line-height: 1.2;
  margin-top: 1.2rem;
  margin-bottom: 0.65rem;
}
.manifesto-item-body {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(245, 236, 217, 0.72);
}


/* ─────────────────────────────────────────────────────────────────
   19 · PORTRAIT CARD — typologies "portraits de lecteurs"
───────────────────────────────────────────────────────────────── */
.portrait-card {
  position: relative;
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.12);
  padding: 1.8rem 1.5rem 1.6rem;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.portrait-card:hover {
  border-color: rgba(90, 18, 36, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -26px rgba(12, 15, 26, 0.32);
}

/* Vignette portrait — initiale rétro + fond marbré */
.portrait-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(245, 236, 217, 0.6), transparent 55%),
    linear-gradient(135deg, #5a1224 0%, #3a0a17 100%);
  color: #f5ecd9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  flex: none;
  margin-bottom: 0.9rem;
  border: 2px solid #fdf6e3;
  outline: 1px solid rgba(12, 15, 26, 0.18);
  box-shadow: 0 0 0 4px rgba(245, 236, 217, 0.4);
}
.portrait-avatar.is-marine {
  background:
    radial-gradient(circle at 30% 25%, rgba(245, 236, 217, 0.6), transparent 55%),
    linear-gradient(135deg, #13234f 0%, #0a1538 100%);
}
.portrait-avatar.is-accent {
  background:
    radial-gradient(circle at 30% 25%, rgba(245, 236, 217, 0.7), transparent 55%),
    linear-gradient(135deg, #6b8169 0%, #4d5e4b 100%);
}
.portrait-avatar.is-ink {
  background:
    radial-gradient(circle at 30% 25%, rgba(245, 236, 217, 0.5), transparent 55%),
    linear-gradient(135deg, #0c0f1a 0%, #1a1a26 100%);
}

.portrait-card-name {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 500;
  color: #0c0f1a;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.portrait-card-subtitle {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  margin-bottom: 0.95rem;
}
.portrait-card-body {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(12, 15, 26, 0.8);
  margin-bottom: 1rem;
  flex: 1;
}
.portrait-card-foot {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b8169;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(12, 15, 26, 0.15);
}


/* ─────────────────────────────────────────────────────────────────
   20 · MASTHEAD-REPORTAGE — header de reportage (cas client)
───────────────────────────────────────────────────────────────── */
.reportage-card {
  position: relative;
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.12);
  padding: 1.8rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.reportage-card:hover {
  border-color: rgba(90, 18, 36, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 22px 36px -26px rgba(12, 15, 26, 0.32);
}
.reportage-card-tag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a1224;
  font-weight: 600;
  border-bottom: 2px solid #5a1224;
  padding-bottom: 0.35rem;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}
.reportage-card-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 500;
  color: #0c0f1a;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.reportage-card-title em { color: #5a1224; }
.reportage-card-byline {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.reportage-card-byline strong {
  color: #0c0f1a;
  font-weight: 600;
}
.reportage-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 236, 217, 0.5), transparent 60%),
    linear-gradient(135deg, #5a1224 0%, #3a0a17 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 236, 217, 0.85);
  font-size: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.reportage-card-photo.is-marine {
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 236, 217, 0.5), transparent 60%),
    linear-gradient(135deg, #13234f 0%, #0a1538 100%);
}
.reportage-card-photo.is-accent {
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 236, 217, 0.5), transparent 60%),
    linear-gradient(135deg, #6b8169 0%, #4d5e4b 100%);
}
.reportage-card-photo::after {
  /* Légende collée style polaroid */
  content: attr(data-caption);
  position: absolute;
  bottom: 0.6rem;
  left: 0.7rem;
  right: 0.7rem;
  font-family: "Caveat", cursive;
  font-size: 0.92rem;
  color: rgba(245, 236, 217, 0.85);
  text-shadow: 0 1px 2px rgba(12, 15, 26, 0.5);
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: right;
}
.reportage-card-body {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(12, 15, 26, 0.82);
  flex: 1;
}
.reportage-card-body p + p { margin-top: 0.6rem; }
.reportage-card-quote {
  margin: 1rem 0;
  padding: 0.6rem 0 0.6rem 1rem;
  border-left: 3px solid #5a1224;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  color: #0c0f1a;
  line-height: 1.4;
}
.reportage-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1.1rem 0 1rem;
  padding: 0.85rem 0;
  border-top: 1px dashed rgba(12, 15, 26, 0.18);
  border-bottom: 1px dashed rgba(12, 15, 26, 0.18);
}
.reportage-card-stat {
  text-align: center;
}
.reportage-card-stat-val {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  color: #5a1224;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.reportage-card-stat-lab {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
  margin-top: 0.25rem;
  font-weight: 500;
}
.reportage-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.6rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(12, 15, 26, 0.1);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
}
.reportage-card-foot a {
  color: #5a1224;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(90, 18, 36, 0.3);
  text-underline-offset: 3px;
}
.reportage-card-foot a:hover {
  text-decoration-color: #5a1224;
}


/* ─────────────────────────────────────────────────────────────────
   21 · REFUSAL NOTICE — anti-promesses style "note de la rédaction"
───────────────────────────────────────────────────────────────── */
.refusal-list {
  background: rgba(245, 236, 217, 0.5);
  border: 1px solid rgba(12, 15, 26, 0.12);
  padding: 1.2rem 1.4rem;
}
.refusal-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(12, 15, 26, 0.15);
  font-family: "Inter", sans-serif;
}
.refusal-item:last-child { border-bottom: none; }
.refusal-item-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5a1224;
  line-height: 1;
  letter-spacing: -0.02em;
  align-self: start;
}
.refusal-item-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: #0c0f1a;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.refusal-item-desc {
  font-size: 0.85rem;
  color: rgba(12, 15, 26, 0.78);
  line-height: 1.55;
}


/* ─────────────────────────────────────────────────────────────────
   22 · CALENDAR — "calendrier rédactionnel / bouclage"
───────────────────────────────────────────────────────────────── */
.calendar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .calendar-grid { grid-template-columns: repeat(3, 1fr); }
}
.calendar-card {
  position: relative;
  background: rgba(245, 236, 217, 0.05);
  border: 1px solid rgba(245, 236, 217, 0.16);
  padding: 1.3rem 1.4rem 1.4rem;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.calendar-card:hover {
  background: rgba(245, 236, 217, 0.1);
  border-color: rgba(226, 168, 160, 0.4);
  transform: translateY(-2px);
}
.calendar-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(245, 236, 217, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 0.65rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 236, 217, 0.55);
}
.calendar-card-meta strong {
  color: #e2a8a0;
  font-weight: 600;
}
.calendar-card-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 600;
  color: #e2a8a0;
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.calendar-card-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  color: #f5ecd9;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.calendar-card-body {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(245, 236, 217, 0.7);
}


/* ─────────────────────────────────────────────────────────────────
   23 · SPEC SHEET MAGAZINE — "fiche technique" briques tech
───────────────────────────────────────────────────────────────── */
.spec-mag {
  background: #fdf6e3;
  border-top: 2px solid #0c0f1a;
  border-bottom: 2px solid #0c0f1a;
  padding: 0.7rem 0;
}
.spec-mag-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px dashed rgba(12, 15, 26, 0.15);
  font-family: "Inter", sans-serif;
}
.spec-mag-row:last-child { border-bottom: none; }
.spec-mag-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  font-weight: 500;
}
.spec-mag-value {
  font-size: 0.9rem;
  color: #0c0f1a;
  line-height: 1.45;
}
.spec-mag-value em {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: #5a1224;
  font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────────
   24 · KPI TILE — chiffres de performance éditoriale
───────────────────────────────────────────────────────────────── */
.kpi-tile {
  position: relative;
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.12);
  padding: 1.4rem 1.3rem 1.3rem;
  overflow: hidden;
}
.kpi-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5a1224 0%, #e2a8a0 100%);
}
.kpi-tile-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  margin-bottom: 0.5rem;
}
.kpi-tile-val {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 0.95;
  color: #5a1224;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.kpi-tile-foot {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: rgba(12, 15, 26, 0.7);
  margin-top: 0.55rem;
  line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────────
   25 · SUBSCRIBE CARD — bulletin d'abonnement à la revue
───────────────────────────────────────────────────────────────── */
.subscribe-card {
  position: relative;
  background: #fdf6e3;
  border: 2px dashed rgba(12, 15, 26, 0.4);
  padding: 1.8rem 1.7rem 1.7rem;
  font-family: "Inter", sans-serif;
}
.subscribe-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(12, 15, 26, 0.18);
  margin-bottom: 1.1rem;
}
.subscribe-card-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b6557;
  font-weight: 600;
}
.subscribe-card-ref {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: #5a1224;
}
.subscribe-card-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0c0f1a;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.subscribe-card-title em { color: #5a1224; }
.subscribe-card-body {
  font-size: 0.92rem;
  color: rgba(12, 15, 26, 0.82);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
/* Champ "rempli au crayon" */
.subscribe-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 640px) {
  .subscribe-field { grid-template-columns: repeat(2, 1fr); }
}
.subscribe-field-cell {
  position: relative;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(12, 15, 26, 0.35);
}
.subscribe-field-cell-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}
.subscribe-field-cell-val {
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
  color: #5a1224;
  line-height: 1;
  letter-spacing: 0.01em;
  display: block;
}
.subscribe-card-signature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(12, 15, 26, 0.25);
}
.subscribe-card-sig-line {
  flex: 1;
  min-width: 12rem;
}
.subscribe-card-sig-line-text {
  font-family: "Caveat", cursive;
  font-size: 2rem;
  color: #0c0f1a;
  line-height: 0.9;
  letter-spacing: -0.01em;
  transform: rotate(-2deg);
  display: inline-block;
}
.subscribe-card-sig-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6557;
  display: block;
  border-top: 1px solid rgba(12, 15, 26, 0.35);
  padding-top: 0.3rem;
  margin-top: 0.2rem;
  max-width: 14rem;
}


/* ─────────────────────────────────────────────────────────────────
   26 · LETTER MOCKUP — courrier des lecteurs (section service client)
───────────────────────────────────────────────────────────────── */
.letter-mockup {
  position: relative;
  background: #fdf6e3;
  border: 1px solid rgba(12, 15, 26, 0.12);
  padding: 2rem 2rem 2.4rem;
  box-shadow: 0 22px 50px -28px rgba(12, 15, 26, 0.4);
  font-family: "Inter", sans-serif;
}
.letter-mockup::before {
  /* Ligne pliage horizontale fine */
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, rgba(12, 15, 26, 0.08) 20%, rgba(12, 15, 26, 0.08) 80%, transparent 100%);
  pointer-events: none;
}
.letter-mockup-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid #0c0f1a;
  padding-bottom: 0.55rem;
  margin-bottom: 1.4rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6557;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}
.letter-mockup-head-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: #0c0f1a;
  font-weight: 500;
}
.letter-mockup-addr {
  font-size: 0.8rem;
  color: rgba(12, 15, 26, 0.75);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.letter-mockup-addr strong { color: #0c0f1a; }
.letter-mockup-body {
  font-size: 0.92rem;
  color: rgba(12, 15, 26, 0.85);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}
.letter-mockup-body p + p { margin-top: 0.7rem; }
.letter-mockup-body em {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: #5a1224;
  font-weight: 500;
}
.letter-mockup-sign {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(12, 15, 26, 0.2);
}
.letter-mockup-sign-name {
  font-family: "Caveat", cursive;
  font-size: 2.1rem;
  color: #5a1224;
  line-height: 0.9;
  letter-spacing: -0.01em;
  transform: rotate(-3deg);
}
.letter-mockup-sign-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6557;
  margin-top: 0.5rem;
}


/* ─────────────────────────────────────────────────────────────────
   27 · CIRCULATION COUNTER — "tirage de l'édition"
───────────────────────────────────────────────────────────────── */
.circulation-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.9rem;
  background: rgba(226, 168, 160, 0.08);
  border: 1px solid rgba(226, 168, 160, 0.25);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2a8a0;
}
.circulation-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e2a8a0;
  box-shadow: 0 0 6px rgba(226, 168, 160, 0.7);
  animation: circulation-pulse 1.6s ease-in-out infinite;
}
.circulation-bar-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f5ecd9;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
@keyframes circulation-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .circulation-bar-dot { animation: none; }
}


/* ─────────────────────────────────────────────────────────────────
   28 · NEWSLETTER MOCK — petite inline (utilisée à plusieurs endroits)
───────────────────────────────────────────────────────────────── */
.newsletter-inline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 1rem;
  border: 1px solid rgba(12, 15, 26, 0.18);
  border-radius: 999px;
  overflow: hidden;
  background: #fdf6e3;
  max-width: 28rem;
}
.newsletter-inline input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #0c0f1a;
  outline: none;
}
.newsletter-inline input::placeholder { color: rgba(107, 101, 87, 0.7); font-style: italic; }
.newsletter-inline button {
  border: none;
  background: #5a1224;
  color: #f5ecd9;
  padding: 0 1.2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-inline button:hover { background: #3a0a17; }
.newsletter-inline.is-sent button {
  background: #6b8169;
}


/* ─────────────────────────────────────────────────────────────────
   29 · SECTION FRAME — cadre éditorial pour sections importantes
───────────────────────────────────────────────────────────────── */
.section-frame {
  border-top: 4px solid #0c0f1a;
  border-bottom: 1px solid #0c0f1a;
  padding-top: 0.4rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6557;
}
.section-frame strong {
  color: #5a1224;
  font-weight: 600;
}
.section-frame-ink {
  border-top-color: #e2a8a0;
  border-bottom-color: rgba(226, 168, 160, 0.4);
  color: rgba(245, 236, 217, 0.6);
}
.section-frame-ink strong { color: #e2a8a0; }


/* ─────────────────────────────────────────────────────────────────
   30 · HEADLINE — gros titres éditoriaux pour chaque rubrique
───────────────────────────────────────────────────────────────── */
.headline {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #0c0f1a;
}
.headline em { font-style: italic; color: #5a1224; }
.headline-ink { color: #f5ecd9; }
.headline-ink em { color: #e2a8a0; }
.headline-roman {
  font-style: normal;
  font-weight: 600;
}


/* ─────────────────────────────────────────────────────────────────
   31 · NEWSLETTER SENT TOAST — état "merci, abonné"
───────────────────────────────────────────────────────────────── */
.newsletter-thanks {
  display: none;
  padding: 0.6rem 0.9rem;
  background: rgba(107, 129, 105, 0.15);
  color: #4d5e4b;
  border: 1px solid rgba(107, 129, 105, 0.3);
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  margin-top: 0.7rem;
}
.newsletter-thanks.is-visible { display: flex; align-items: center; gap: 0.5rem; }
.newsletter-thanks i { color: #6b8169; }


/* ─────────────────────────────────────────────────────────────────
   32 · ACTIVE TOC HIGHLIGHT
───────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .issue-toc-sticky {
    position: sticky;
    top: 6rem;
  }
}
