:root {
    font-size: 14pt;
}

body {
    font-family: "PT Sans";
    font-weight: normal;
    color: var(--c-ocean);
    padding: 0;
    margin: 0;
    background-color: white;
    line-height: 175%;
    display: grid;
    grid-template-rows: auto auto auto /*auto*/ 1fr;
    min-height: 100vh;
}

h1 {
    font-family: "PT Sans", sans-serif;
    font-weight: 800;
    color: var(--c-ocean);
    /*text-transform: uppercase;*/
    clear: both;
}

h2#date {
    opacity: 0.75;
    margin-bottom: 1rem;
}

h3 {
    font-weight: bold;
    color: var(--c-ocean);
    clear: both;
}

a {
    position: relative;
    color: var(--c-coral);
    text-decoration: none;
}

section.page-content {
    padding: var(--s-text-padding);
    padding-top: 0;
}

@media (min-width: 71rem) {
    section.page-content {
        width: var(--s-text-width);
        margin: 0 auto;
    }
}
section.page-content > :first-child {
    margin-top: 0;
    margin-block-start: 0;
}

p {
    text-align: justify;
}

.linkonly ul {
    list-style-type: none;
}

.linkonly li > a::before {
    list-style-type: none;
    content: "» "
}

.image-description > p {
    display: inline;
}
.image-float > img {
    max-width: 100%;
}

a.no-underline::after {
    display: none;
}

.page-content img {
    max-width: 100%;
}
