/* =============================== */
/*        RESET + BASE STYLE       */
/* =============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Inter", Arial, sans-serif;
    background: #f5f6f7;
    color: #222;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
}

/* Masquage générique */
.is-hidden {
    display: none !important;
}
.hidden {
    display: none !important;
}
