#wrap {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;

    margin: 1.2rem 0.6rem;
    max-width: 700px;
    min-height: calc(100vh - 2 * (1.2rem));
}

main {
    margin: 0;
    flex: 1;
}

pre {
    overflow-x: auto;
    margin: 1em 0;
}

table {
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 1em 0;
}

th,
td {
    text-align: left;
    vertical-align: top;
    padding: 0.3em 0.8em 0.3em 0;
    border-bottom: 1px solid currentColor;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    gap: 0.75em;
}

/* Posts */
#date-updated {
    display: none;
}

/* Table of Contents */
#toc ol {
    counter-reset: toc;
    list-style: none;
    padding-left: 0;
}

#toc ol ol {
    padding-left: 1.5em;
}

#toc li {
    counter-increment: toc;
}

#toc li::before {
    content: counters(toc, ".") ". ";
}

/* Footnotes */
#footnotes::before {
    content: "***";
    display: block;
    text-align: center;
    margin-block: 2rem;
}

#footnotes {
    margin-bottom: 2rem;
}

#footnotes ol {
    margin: 0;
    padding: 0;
    padding-left: 1.2rem;
}

.footnote-backlink,
.footnote-reference {
    margin-left: 0.2rem;
}
