/* riaumont.css
   Notes couleur:
   - Brand dark: #26594a (approx. RGB 38,89,74 from rendered PDF)
   - Brand mid : #46604c (approx. RGB 70,96,76 from rendered PDF)
   - Background: #f3f6f3 (approx. RGB 243,246,243 from rendered PDF)
   If the original PDF used CMYK/Pantone, the source values were not exposed by extraction.
*/

:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f6f3;
}

.break-after-page {
  /* Screen: keep the metaphor without forcing whitespace */
  scroll-margin-top: 5rem;
}

@media print {
  .break-after-page {
    break-after: page;
    page-break-after: always;
  }
  .no-print {
    display: none !important;
  }
}

/* Slightly tighter prose at small sizes */
@media (max-width: 640px) {
  .prose-tight p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
