/* @media screen and (min-width: 769px) { */
h1 {
    color: var(--color-accent-darker);
}

h2 {
    color: var(--color-accent-dark)
}

h1,
h2 {
    line-height: 1.5;
    margin-bottom: 1rem
}

h3 {
    color: var(--color-accent);
    line-height: 2;
}

h2,
h3 {
    max-width: 900px;
}

section:first-of-type {
    padding-top: 2rem;
}

section {
    padding: 0;
}

section:last-of-type {
    padding-bottom: 4rem
}

section p,
li {
    margin-bottom: 1rem;
    max-width: 900px;
}

section p {
    line-height: 1.7;
}

ol,
ul {
    margin: .25rem 0;
    padding-left: 0;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 2rem;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
}

ol ul {
    counter-reset: none;
}

ol ul li {
    counter-increment: none;
    padding-left: 1.5rem;
}

ol ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
    font-size: 1rem;
}

ol {
    counter-reset: num;
}

ol li {
    position: relative;
    padding-left: 2rem;
    counter-increment: num;
}

ol li::before {
    content: counter(num) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: currentColor;
}

ol[type="A"] {
    counter-reset: upperAlpha;
}

ol[type="A"] li {
    counter-increment: upperAlpha;
}

ol[type="A"] li::before {
    content: counter(upperAlpha, upper-alpha) ".";
}

ol[type="b"] {
    counter-reset: lowerAlpha;
}

ol[type="b"] li {
    counter-increment: lowerAlpha;
}

ol[type="b"] li::before {
    content: counter(lowerAlpha, lower-alpha) ".";
}

@media screen and (max-width: 850px) {

    section:first-of-type {
        padding-top: 0;
    }

    h1 {
        margin-bottom: .25rem;
    }

    h2,
    h3 {
        line-height: 1.5;
        margin-bottom: .25rem
    }

}