/* Explain: Base reset and typography defaults for the editorial page. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
}

body {
    overflow-x: hidden;
    background-color: var(--background-color);
    line-height: 1.6;
}

::selection {
    background: var(--primary-color);
    color: var(--ivory-color);
}

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

button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
.heading-font {
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
}

p,
li,
input,
textarea,
select,
button {
    font-family: var(--font-body);
}

[id] {
    scroll-margin-top: 2rem;
}

@media (max-width: 1179px) {
    [id] {
        scroll-margin-top: 5.75rem;
    }
}
