/* ======================================================
   10 — BASE / GLOBAL
   ======================================================

   Règles très générales qui impactent tout le site.

   On reste minimaliste :
   Moins on touche au global,
   moins on casse des blocs Gutenberg.

   ====================================================== */

/* Empêche l’apparition d’un scroll horizontal
   quand un bloc alignfull déborde légèrement */
html, body{
  overflow-x: hidden;
}

/* ======================================================
   FONT — Dumbledor
====================================================== */

@font-face {
  font-family: "dum1";

  src:
    url("../../fonts/dum1.woff2") format("woff2");

  font-weight: 400;
  font-style: normal;

  /* Affiche une police fallback immédiatement
     puis remplace dès chargement */
  font-display: swap;
}

/* ======================================================
   VARIABLES TYPO
====================================================== */

:root{

  /* Police décorative manuscrite */
  --ws-font-script: "dum1", serif;

}

body{
  font-family: var(--ws-font-script);
  color: #043a57;
}

.wp-block-preformatted{
  font-family: inherit !important;
}