:root {
    --row-gap: 0.5rem;
    --col-gap: 0;
    --font-size: 1.25rem;
}

@media screen and (min-width: 600px) {
    :root {
        --row-gap: 0.75rem;
        --col-gap: 0;
        --font-size: 1.5rem;
    }
}

#text {
    background-color: var(--background-color);
    overflow-y: scroll;
}

#main .section.is-1440 .container.main {
    background: linear-gradient(to bottom, var(--background-color) 50%, transparent);
    padding-bottom: 8rem;
}

#main .section.is-1440 .container.main .columns {
    gap: 0.75rem 0;
}

@media screen and (min-width: 600px) {
    #main .section.is-1440 .container.main {
        background: linear-gradient(to bottom, var(--background-color) 50%, transparent);
    }

    #main .section.is-1440 .container.main .columns {
        gap: 1.25rem 0;
    }
}

.container.left {
    flex-wrap: wrap;
}

.container.meta {
    display: flex;
    gap: 1rem;
    width: 100%;
    padding-left: 0.75rem;
}

@media screen and (min-width: 600px) {
    .container.meta {
        width: auto;
        padding: 0;
    }
}

.container.category, .container.date {
    display: flex;
    background-color: var(--background-color);
    width: fit-content;
    height: auto;
    align-items: center;
}

.container.date span {
    line-height: 1;
}

span.date {
    font-variant-numeric: tabular-nums;
    font-size: var(--root-font-size);
    font-weight: 400;
}

.container.category, .container.date {
    background-color: transparent;
}

.container.hyperlinks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.75rem;
}

.container.hyperlinks a {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.container.hyperlinks a:hover {
    text-decoration-style: solid;
}

span.url {
    font-size: var(--root-font-size);
}

.section.is-720 {
    padding: 0;
}

.section.is-720 > * {
    justify-content: start;
    align-items: start;
}

.container.text {
    flex-direction: column;
    padding-bottom: 3rem;
}

.container.text p {
    font-size: var(--root-font-size);
    font-weight: 400;
    line-height: 1.7;
}

.container.text p:not(:last-child),
.container.text blockquote:not(:last-child),
.container.text hr:not(:last-child),
.container.text figure:not(:last-child) {
    margin-bottom: calc(var(--root-font-size) * 1.7);
}

.container.text ul,
.container.text ol {
    padding-left: 1.5em;
}

.container.text li:not(:last-child) {
    margin-bottom: calc(var(--root-font-size) * 1.7);
}

.container.text li::marker {
    font-size: calc(var(--root-font-size) * 1);
}

.container.text blockquote {
    padding-left: 1.5em;
    border-left: 1.5px solid var(--text-color);
}

.container.text hr {
    border: none;
    height: auto;
    text-align: center;
    color: var(--text-color);
}

.container.text hr::before {
    content: '***';
    display: block;
}

.container.text a {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.container.text a:hover {
    text-decoration-style: solid;
}