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

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    margin: 0;
    color: var(--text-color);
    background:
        radial-gradient(circle at 12% 8%, rgba(246, 216, 74, 0.45), transparent 28rem),
        radial-gradient(circle at 88% 22%, rgba(226, 114, 91, 0.14), transparent 24rem),
        linear-gradient(180deg, var(--background-color), #F8DD72 100%);
}

::selection {
    background: var(--terracotta-color);
    color: var(--cream-color);
}

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

input,
button,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(226, 114, 91, 0.48);
    outline-offset: 4px;
}

.article-richtext {
    line-height: 1.8;
}
.article-richtext p {
    margin-bottom: 1.5em;
}
.article-richtext h2,
.article-richtext h3 {
    color: var(--olive-color);
    font-family: var(--font-heading);
    margin-top: 2em;
    margin-bottom: 0.75em;
    font-weight: 600;
}
.article-richtext h2 {
    font-size: 1.875rem;
}
.article-richtext h3 {
    font-size: 1.5rem;
}
.article-richtext ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}
.article-richtext ol {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}
.article-richtext a {
    color: var(--terracotta-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}


