/* ---------------------------------------------------
   reset.css
   Project-wide CSS reset to normalize browser defaults
----------------------------------------------------- */

/* Box sizing reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--a-font-primary);
    font-size: var(--a-fs-base);
    background-color: var(--a-color-white);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0 auto;
    overflow-x: clip;
    overflow-y: auto;
}
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

/* Remove list styles */
ul,
ol {
    list-style: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Reset button, input, textarea styles */
button,
input,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* HTML5 display roles reset */
article,
aside,
footer,
header,
nav,
section,
main,
figure {
    display: block;
}

/* Default font smoothing for cleaner text */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove image border */
img,
picture {
    max-width: 100%;
    display: block;
    border: none;
}

/* Remove default focus outline (custom focus style will be added later) */
:focus {
    outline: none;
}