@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

html {
    font-size: 18px;
}

body {
    font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
    color: #000;
    line-height: 1.5em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, pre, blockquote, ul, ol, d, figure, figcaption {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    /*-ms-hyphens: auto;*/
    /*-webkit-hyphens: auto;*/
    /*hyphens: auto;*/
    /*-webkit-hyphenate-limit-before: 4;*/
    /*-webkit-hyphenate-limit-after: 4;*/
    /*-moz-hyphenate-limit-chars: 8 4 4;*/
    /*-webkit-hyphenate-limit-chars: 8 4 4;*/
    /*-ms-hyphenate-limit-chars: 8 4 4;*/
    /*hyphenate-limit-chars: 8 4 4;*/
}

figure {
    margin: 0;
}

figure > *:first-child {
    margin-top: 0;
}

figure > *:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 2.25rem;
    margin-bottom: 1.5rem;
    -ms-hyphens: manual;
    -webkit-hyphens: manual;
    hyphens: manual;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
p:first-child, pre:first-child, blockquote:first-child, ul:first-child, ol:first-child, d:first-child, figure:first-child {
    margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child, pre:last-child, blockquote:last-child, ul:last-child, ol:last-child, d:last-child, figure:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 1.5rem;
    line-height: 1.2em;
    font-weight: bold;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.3em;
    font-weight: bold;
}

h3, h4, h5, h6 {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: bold;
    margin-bottom: 0;
    /*-ms-hyphens: auto;*/
    /*-webkit-hyphens: auto;*/
    /*hyphens: auto;*/
    /*-webkit-hyphenate-limit-before: 4;*/
    /*-webkit-hyphenate-limit-after: 4;*/
    /*-moz-hyphenate-limit-chars: 8 4 4;*/
    /*-webkit-hyphenate-limit-chars: 8 4 4;*/
    /*-ms-hyphenate-limit-chars: 8 4 4;*/
    /*hyphenate-limit-chars: 8 4 4;*/
}

h3 + p, h4 + p, h5 + p, h6 + p {
    margin-top: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    text-decoration: none;
}

p {
}

pre, blockquote, code {
    color: #000;
    font-style: normal;
    margin-left: 0;
    margin-right: 0;
}

pre > p, blockquote > p, code > p {
    display: inline;
    margin: 0;
    padding: 0;
}

blockquote {
    color: var(--color-brand-second);
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: 100;
    font-style: italic;
}

blockquote > footer {
    color: #000;
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: normal;
    font-style: normal;
    text-align: right;
}

ul {
    list-style: disc;
    padding-left: 1rem;
}

ol {
    color: #000;
    padding-left: 1rem;
    list-style: none;
    counter-reset: item;
}

ol {
    padding: 0 0 0 20px;
    margin: 5px 0 10px 0;
}

ol ol {
    margin: 5px 0 10px 20px;
}

ol li {
    position: relative;
}

ol li:before {
    position: absolute;
    left: -40px;
    width: 30px;
    text-align: right;
    content: counters(item, ".") " ";
    counter-increment: item;
}


li > ul,
li > ol {
    margin-top: 0;
    margin-bottom: 0;
}

.text-content li > ul {
    padding-left: 0.75em;
}

.text-content li > ul li {
    position: relative;
    list-style-type: none;
}

.text-content li > ul li:before {
    position: absolute;
    top: 0;
    left: -0.75em;
    content: '- ';
}

dl {
}

dt {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: bold;
}

dd {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 1rem;
}

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

a:hover {
    color: #000;
    text-decoration: none;
}

strong {
    font-weight: bold;
}

@media only screen and (max-width: 767px) {

    html {
        font-size: 16px;
    }

    h1 {
        font-size: 1.3rem;
        line-height: 1.3em;
    }

}
