/* ============================================================
   BASE — reset et styles des éléments HTML natifs
   Dépend de tokens.css (variables) chargé avant ce fichier.
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-page);
    font: var(--text-body);
    color: var(--text-secondary);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}