:root {
    /* Typography Scale */
    --font-size-base: 18px;

    /* Typography Palette */
    --color-text-primary: #fffefa;
    --color-background: #2b2b2b;
    --color-link: #2980b9;
    --color-link-hover: #3498db;
}

* {
    box-sizing: border-box;
}

body {
    background-color: #101010;
    padding-left: 0.6vw;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    text-align: center;
    align-items: center;
    display: flex;
    height: 95px;

    h1 {
        font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
        font-size: 26px;
        font-smooth: auto;
        font-style: normal;
        font-weight: 400;
        line-height: 2em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

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

    nav {
        position: absolute;
        right: 15%;
    }

    nav ul {
        list-style-type: none;
        display: flex;
        gap: 20px;
        font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
        color: var(--color-text-primary);
    }
}

#container {
    margin: auto;
    width: 900px;
}

.post {
    text-align: center;
    margin-bottom: 20px;
    background-color: var(--color-background);
    width: 900px;
    padding: 20px;
    font-size: var(--font-size-base);
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--color-text-primary);

    p {
        hyphens: auto;
        hyphenate-limit-chars: 6 3 3;
        hanging-punctuation: first last;
        line-height: 1.46;
        width: 83%;
    }

    .attribution {
        font-style: italic;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .quote-source {
        display: block;
        text-align: right;
        font-style: italic;
        font-size: 1rem;
        margin-top: 0.5rem;
        padding-right: 1rem;
    }

    .quote-source::before {
        content: "— ";
        margin-right: 0.3em;
        opacity: 0.7;
    }

    .dropcap:first-letter {
        float: left;
        font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
        font-size: 4rem;
        line-height: 0.8;
        margin-top: 0em;
        padding-right: 0.05em;
    }
}

.video {
    iframe {
        border: none;
        height: 52.5vw;
        max-height: 675px;
        width: 70vw;
        max-width: 850px;
    }
}

.article {
    color: var(--color-text-primary);
}

.grid:after {
    display: block;
    content: '';
    clear: both;
}

.grid-col {
    float: left;
    width: 32%;

    &:not(:last-child) {
        margin-right: 1.1vw;
    }
}

@media screen and (max-width: 799px) {
    header h1 {
        font-size: var(--font-size-base);
        padding: 10px 0;
    }

    .grid-col {
        width: 96vw;
    }
}

@media screen and (min-width: 800px) {
    .grid-col {
        width: 47.6vw;
    }

    .grid-col--2 {
        display: block;
    }
}

@media screen and (min-width: 1200px) {
    .grid-col {
        width: 31.5vw;
    }

    .grid-col--2,
    .grid-col--3 {
        display: block;
    }
}

.grid-item {
    min-height: 100px;
    margin-bottom: max(1.2vw, 15px);
}

.grid-item img {
    display: block;
    width: 100%;
}

.fade-in {
    animation: fade 0.8s ease-out
}

@keyframes fade {

    0% {
        opacity: 0;
        translate: 0 25px;
    }

    100% {
        opacity: 1;
        translate: 0 0;
    }
}
