/* =====================================================
   MAXIME DUFLOT — Séparateur de section (barre chapitres)
   ===================================================== */

.section-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.section-bar .line {
  height: 1px;
  background: rgba(28, 24, 20, 0.15);
}

.section-bar .bar-label,
.section-bar .label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-soft);
  white-space: nowrap;
}
