﻿/* ===== RESET / BASELINE ==== */

/* Box sizing: border-box everywhere */
*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Prevent horizontal scroll on small devices */
html, body {
    overflow-x: hidden;
}

/* Remove default margins */
body, h1, h2, h3, h4, h5, h6, p, figure {
    margin: 0;
}

/* Lists: remove padding/margin, keep bullets off by default */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Links: reset color + remove underline (we’ll style later) */
a {
    color: inherit;
    text-decoration: none;
}

/* Images: responsive by default */
img, picture {
    max-width: 100%;
    display: block;
}

/* Buttons and inputs: inherit font */
button, input, select, textarea {
    font: inherit;
}
