/* ==============================================
   APP.CSS — Reset de base global
   Chargé en premier dans layout.php
   ============================================== */

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    background: #fff;
}

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

a {
    color: inherit;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
