/* =========================================================
   STOKOLM — Modern CSS Reset (inspiré Andy Bell)
   ========================================================= */

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

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    line-height: var(--leading-normal);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

ul[role='list'],
ol[role='list'],
nav ul,
nav ol { list-style: none; }

p,
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

#root,
#__next { isolation: isolate; }

/* Sélection */
::selection {
    background-color: var(--stokolm-blue);
    color: var(--stokolm-white);
}
