/*
 * _reset.css
 * CSS Reset and base element normalization
 * Included on all pages for consistent rendering
 */

/* Box-sizing reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling and font rendering */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Images: responsive by default */
img {
    max-width: 100%;
    display: block;
}

/* Links: remove underlines globally */
a {
    text-decoration: none !important;
    color: inherit;
}

a:hover {
    text-decoration: none !important;
}

/* Lists: remove default bullets */
ul, ol {
    list-style: none;
}

/* Buttons: inherit font, reset border */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}
