/* fic.us — shared styles */

html {
    font-family: Georgia, "Times New Roman", serif;
    background-color: #fdfdfd;
    color: #222;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    max-width: 600px;
    margin: 4rem auto;
    padding: 0 1.25rem;
    line-height: 1.6;
}

a {
    color: #1c1c1c;
    text-decoration: underline;
    text-decoration-color: #c4c4c4;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

a:hover {
    text-decoration-color: #777;
}

h1 {
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0 0 1.75rem;
}

p {
    margin: 0 0 1.25rem;
}

/* ---------- home ---------- */

.bio a {
    white-space: nowrap;
}

.essays {
    position: relative;
    margin-top: 2.5rem;
}

/* A curly brace hung in the left gutter, so the list aligns with the body text. */
.brace {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.5rem;
    width: 0.85rem;
    height: 100%;
    color: #9c9c9c;
    pointer-events: none;
}

.essay-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.essay-list .row {
    min-height: 1.85rem;
    line-height: 1.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.essay-list .teaser {
    color: #8a8a8a;
}

.essay-list .next .title {
    color: #c0c0c0;
}

.essay-list .blank {
    color: transparent;
}

/* ---------- essay ---------- */

.back {
    display: inline-block;
    margin-bottom: 2.25rem;
    font-size: 0.95rem;
    color: #777;
    text-decoration: none;
}

.back:hover {
    color: #222;
}

article h1 {
    margin-bottom: 2rem;
}

/* ---------- footnotes as popovers ---------- */

.fn {
    cursor: pointer;
    font-size: 0.72em;
    vertical-align: super;
    line-height: 0;
    color: #33526e;
    padding: 0 0.15em;
    user-select: none;
}

.fn:hover {
    color: #1f3650;
}

.fn-pop {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: max-content;
    max-width: min(22rem, 86vw);
    font-size: 0.82rem;
    line-height: 1.45;
    font-style: normal;
    color: #333;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 7px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
    padding: 0.6rem 0.75rem;
    text-align: left;
    white-space: normal;
    z-index: 50;
}

.fn-pop a {
    color: #33526e;
}

.fn.open .fn-pop {
    display: block;
}

@media (max-width: 480px) {
    body {
        margin: 2.5rem auto;
    }

    .brace {
        left: -1.05rem;
    }

    .essay-list .row {
        white-space: normal;
    }
}
