/* =========================
   RESET (minimal moderne)
========================= */
*,*::before,*::after{ box-sizing: border-box; }

html{ font-size: 100%; block-size: 100%; }
body{ margin: 0; }

/* Listes neutres */
ul,ol{ margin: 0; padding: 0; list-style: none; }
li{ margin: 0; }

/* Média safe */
img, svg{
  max-inline-size: 100%;
  height: auto;
  display: block;
}

/* Typo héritée */
input,button,textarea,select{
  font: inherit;
  color: inherit;
}

[hidden]{ display: none !important; }
