body {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: bold;
    margin: 0;
    padding: 0 0 .5em 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    line-height: 1em;
    letter-spacing: -0.025em;
}

h1 {
    font-size: var(--size-xl);
    color: #333;
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--size-lg);
    color: var(--color-grey-dark);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--size-md);
    color: var(--color-grey-dark);
    font-weight: var(--font-weight-bold);
}

h4 {
    font-size: var(--size-md);
    color: var(--color-grey-dark);
    font-weight: var(--font-weight-bold);
}

h5 {
    font-size: var(--size-md);
    color: var(--color-grey-dark);
    font-weight: var(--font-weight-bold);
}


.small-text,
small {
    font-size: var(--small-em);
}


.large-text {
    font-size: 2.1rem;
}

.uppercase {
    text-transform: uppercase;
}

.capitalized {
    text-transform: capitalize;
}

.strong,
strong {
    font-weight: var(--font-weight-bold);
}

a {
    color: var(--color-a);
    text-decoration: none;
}

a.inherit {
    color: inherit;
}

.label {
    text-align: left;
    min-width: 20px;
}

.number {
    text-align: right;
    min-width: 20px;
}

.literal {
    text-align: left;
}

.amount {
    color: #308330;
}

p {
    padding: 0 0 1em 0;
}

ol {
    list-style: none;
    counter-reset: item;
}

ol li {
    counter-increment: item;
    padding: 0 0 .5em 0
}

ol li::before {
    margin-right: 1ch;
    content: counter(item) ". ";
    color: var(--color-text-body);
    font-weight: var(--font-weight-bold);
    width: 2ch;
    text-align: center;
    display: inline-block;
}

.error {
    color: #b84d27;
}

@media screen and (max-width: 568px) {}