/* ============================================================
   FONTS
   ============================================================ */

/* alegreya-latin-wght-normal */
@font-face {
    font-family: "Alegreya Variable";
    font-style: normal;
    font-display: swap;
    font-weight: 400 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/alegreya:vf@latest/latin-wght-normal.woff2)
        format("woff2-variations");
    unicode-range:
        U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Inconsolata Variable";
    font-style: normal;
    font-display: swap;
    font-weight: 200 900;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/inconsolata:vf@latest/latin-wght-normal.woff2)
        format("woff2-variations");
    unicode-range:
        U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   BASE
   ============================================================ */

html,
body {
    font-family: "Inconsolata Variable", sans-serif;
    font-size: 12pt;
    line-height: 1.5;
    color: #111;
    padding: 10px 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */

@media screen and (max-width: 500px) {
    html,
    body {
        font-size: 1em;
    }
    #content {
        width: 90%;
        height: 100%;
        margin: auto;
    }
    #portrait {
        width: 50%;
        margin: 0 auto;
    }
    #portrait > img {
        width: 100%;
    }
}

@media screen and (min-width: 501px) {
    #container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        width: 900px;
        margin: auto;
    }
    #content {
        width: 70%;
        margin: auto;
    }
    #portrait {
        width: 20%;
        margin: 0 auto;
    }
    #portrait > img {
        width: 100%;
    }
}

/* ============================================================
   GLOBAL TYPOGRAPHY
   ============================================================ */

a {
    text-decoration: none;
    color: #222;
    background-color: #fff533;
    padding: 0px 2px;
}

a:hover {
    text-decoration: underline double;
}

i {
    color: #111;
    background-color: #ff8080;
    padding: 0px 2px;
    font-style: normal;
}

ul {
    list-style: none;
}

blockquote {
    border-left: #ff8080 solid 1px;
    padding: 0 0 0 1em;
    font-size: 0.95em;
}

#side-quote {
    color: #444;
    font-family: serif;
    font-weight: 300;
    font-size: 0.9rem;
    text-align: center;
}

/* ============================================================
   POST LIST
   ============================================================ */

.post-name {
    font-family: "Alegreya Variable", serif;
    font-weight: 300;
    font-size: 1.1rem;
}

.post-date {
    font-size: 0.8rem;
    color: #444;
}

/* ============================================================
   POST
   ============================================================ */

.post > .title {
    font-weight: 500;
    font-size: 1.4rem;
}

.post-content {
    font-family: "Alegreya Variable", serif;
    font-weight: 300;
    font-size: 1.2rem;
}

.post-content > time {
    font-size: 1rem;
    display: block;
    text-align: right;
    font-style: italic;
    font-variant-numeric: oldstyle-nums;
    font-variant-ligatures: common-ligatures;
}

.post-content > p > img {
    width: 100%;
}

.footnotes {
    font-size: 0.85em;
    font-variant-numeric: oldstyle-nums;
    font-variant-ligatures: common-ligatures;
}

/* ============================================================
   POEM
   ============================================================ */

.poem-wrapper {
    display: table;
}

.poem-wrapper p {
    font-family: "Alegreya Variable", serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.45;
    font-variant-numeric: oldstyle-nums;
    font-variant-ligatures: common-ligatures;
    padding-left: 1.5em; /* continuation indent */
    text-indent: -1.5em; /* first line hangs back flush */
    margin: 0;
}

.poem-date {
    font-family: "Alegreya Variable", serif;
    font-weight: 300;
    font-size: 1rem;
    font-style: italic;
    font-variant-numeric: oldstyle-nums;
    font-variant-ligatures: common-ligatures;
    display: block;
    text-align: right;
    margin-top: 1.5em;
}

/* ============================================================
   UTILITY
   ============================================================ */

.invisible {
    visibility: hidden;
}
