/* ============================================================
   PRINT — VERSION LIVRE
============================================================ */

@media print {

  /* Reset comportements écran */
  html, body {
    scroll-snap-type: none !important;
  }

  body {
    margin: 2cm;
    line-height: 1.35;
  }

  /* ❌ On NE force PAS chaque section à une page */
  section.screen {
    min-height: auto;
    padding: 0;
    break-before: auto;
    page-break-before: auto;
  }

  /* ============================================================
     TITRES — éviter les titres orphelins
  ============================================================ */

  h2, h3 {
    break-after: avoid;
    page-break-after: avoid;
  }

  h3 + ul,
  h3 + .sommaire-colonnes {
    break-before: avoid;
    page-break-before: avoid;
  }

  /* ============================================================
     SOMMAIRES
  ============================================================ */

  /* Parties 1 & 2 */
  ul {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  ul li {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0.25em;
  }

  /* ============================================================
     PARTIE 3 — PAS de column-count en print
  ============================================================ */

  .sommaire-colonnes {
    display: grid;
    grid-template-columns: 1fr 1fr; /* livre = 2 colonnes */
    gap: 0.8rem 1.2rem;
    column-count: unset;
  }

  .sommaire-colonnes li {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  /* ============================================================
     Lettrine
  ============================================================ */

.declaration blockquote p:first-of-type::first-letter {
    font-size: 4.2em;
    line-height: 0.85;
  }

  /* ============================================================
     MASQUAGES
  ============================================================ */
.themes,
  .tags-link,
  #footer {
    display: none !important;
  }
}






