:root {
    --color-background: #faf9f5;
    --color-text: #000;
    --color-placeholder: #e1e1e1;
    --color-box-background: #0000000a;
    --color-border: #000;
    --color-accent: #ff5555;
    --font-body: sans-serif;
    --font-headline: monospace;
    --font-meta: monospace;
    --font-code: monospace;
}
a {
    word-wrap: break-word;
}
a,
a:visited,
a:hover {
    color: inherit;
}
a:hover {
    filter: invert(0.2);
}
blockquote {
    margin: 0;
    padding-left: 1em;
    font-style: italic;
    border-left: solid 0.1em #787878;
}
body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.45em;
    /*#faf8f5 */
    background-color: var(--color-background);
    color: var(--color-text);
    padding: 0;
    margin: 0;
}
code {
    display: inline-block;
    font-family: var(--font-code);
    padding: 0.2em;
    border-radius: 0.2em;
    background-color: var(--color-box-background);
    border-radius: 0.2em;
    padding: 0 0.5em 0 0.5em;
}
pre {
    font-family: inherit;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: transparent;
    margin: 1em 0;
}

aside {
    display: inline-block;
    font-family: var(--font-body);
    line-height: 1.1em;
    width: 70%;
    margin-left: 30%;
}

aside::before {
    content: "Note:";
    font-variant-caps: small-caps;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headline);
    line-height: 1.2;
    margin: 0 0 0.5em;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
}
h1 {
    font-size: 2.8561em;
}
h2 {
    font-size: 2.197em;
}
h3 {
    font-size: 1.69em;
}
h4 {
    font-size: 1.3em;
}
h5 {
    font-size: 1em;
}
h6 {
    font-size: 0.9em;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 1.15em;
    font-weight: normal;
    font-style: italic;
    line-height: 1.4;
    margin: -0.5em 0 1em;
    opacity: 0.75;
}
h2 + .subtitle {
    font-size: 0.95em;
    margin: -0.5em 0 1em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    padding: 0;
    margin: -1px;
    white-space: nowrap;
}

iframe {
    border: none;
}
img {
    position: relative;
    z-index: 0;
    width: 100%;
}
main {
    display: block;
    max-width: 800px;
    margin: auto;
    padding: 0 1em;
}
pre {
    margin: 1em 0;
    border-radius: 0.2em;
    background-color: initial !important;
    padding: 0;
}
pre code {
    display: block;
    width: 100%;
    padding: 1em;
    border-radius: 0.2em;
    overflow-x: auto;
}
pre[data-lang]::before {
    display: none;
}
hr {
    border: none;
    border-top: 0.11111em solid var(--color-border);
    margin-top: 2em;
    margin-bottom: 2em;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
figure {
    margin: 0;
}
figcaption {
    margin: 1em 2em;
    font-size: 0.8em;
}
.media {
    position: relative;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
}
.media--16-9 {
    padding-top: 56%;
}
.media--4-3 {
    padding-top: 75%;
}
.media > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
html {
    -webkit-text-size-adjust: none;
}
html *,
html *::before,
html *::after {
    box-sizing: border-box;
}
.header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
}
.header__logo {
    justify-self: start;
    margin: 0;
}
.header__logo__image {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}
.header__logo__image:hover {
    filter: none;
}
.header__logo__image svg {
    display: block;
    height: 1.5em;
    width: auto;
    color: var(--color-text);
}
.header__logo__image:hover svg .g-o,
.header__logo__image:hover svg .g-h {
    animation: color-cycle 1.2s step-end infinite;
}
.header__logo__image:hover svg .g-h {
    animation-delay: -1.1s; /* H trails O with a little overlap */
}

@keyframes color-cycle {
    0%,
    100% {
        color: #ff5555;
    } /* red */
    16.67% {
        color: #ffd700;
    } /* gold */
    33.33% {
        color: #87ff00;
    } /* green */
    50% {
        color: #00cccc;
    } /* cyan */
    66.67% {
        color: #5555ff;
    } /* blue */
    83.33% {
        color: #cc44cc;
    } /* magenta */
}
@media (prefers-reduced-motion: reduce) {
    .header__logo__image:hover svg .g-o,
    .header__logo__image:hover svg .g-h {
        animation: none;
    }
}
.header__navigation {
    justify-self: end;
}
.header__navigation__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header__navigation__list__item {
    margin-left: 0.75em;
    float: left;
    position: relative;
    list-style: none;
}
.header__navigation__list__item--icon a {
    display: inline-flex;
    align-items: center;
    height: 100%;
}
.header__navigation__list__item--icon a:hover {
    color: var(--color-accent);
    filter: none;
}
.header__navigation__list__item--icon svg {
    display: block;
    height: 1em;
    width: auto;
}
.item {
    margin-top: 1em;
    margin-bottom: 2em;
}
.item__bar {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin: 1em 0;
}
.item__bar::before,
.item__bar::after {
    content: "";
    border-top: 0.22222em solid;
}
.item__bar::before {
    flex: 1;
}
.item__bar::after {
    flex: 0 0 1.5em;
}

.item__bar time {
    /* For articles without an audio player there's no ::after fill line, so
       margin-left:auto still pushes the date to the right edge. */
    margin-left: auto;
    font-family: var(--font-meta);
    font-weight: bold;
    font-size: 0.9em;
}

.item__bar:has(.item__audio)::before,
.item__bar:has(.item__type)::before {
    flex: 0 0 1.5em;
}

.item__audio {
    display: contents;
}

.item__audio::after,
.item__type::after {
    content: "";
    flex: 1;
    border-top: 0.22222em solid;
}

.item__type {
    display: contents;
}

.item__type-icon {
    display: inline-flex;
    align-items: center;
}

.item__type svg {
    display: block;
    height: 1em;
    width: auto;
}
.item__audio audio {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
    padding: 0;
    margin: -1px;
    white-space: nowrap;
}
.item__audio button {
    width: 1.8em;
    height: 1.8em;
    padding: 0;
    border: 0;
    cursor: pointer;
    background-color: currentColor;
    -webkit-mask-image: url("/img/audio-icons.svg");
    mask-image: url("/img/audio-icons.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 1.8em 7.2em;
    mask-size: 1.8em 7.2em;
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
    /* Default (paused): cell 4 (play) — bottom of sprite */
    -webkit-mask-position: 0 -5.4em;
    mask-position: 0 -5.4em;
}
.item__audio button:focus-visible {
    outline: 0.1em solid currentColor;
    outline-offset: 0.15em;
}

.item__audio button:hover,
.item__audio button:focus-visible {
    color: var(--color-accent);
}

.item__audio[data-playing] button {
    -webkit-mask-position: 0 -3.6em;
    mask-position: 0 -3.6em;
}
.item__audio[data-playing][data-progress^="0."] button {
    animation:
        asterisk-twinkle 0.16s steps(2) infinite,
        color-cycle 0.6s step-end infinite;
}
@keyframes asterisk-twinkle {
    from {
        mask-position: 0 0;
    }
    to {
        mask-position: 0 -3.6em;
    }
}
@media (prefers-reduced-motion: reduce) {
    .item__audio__btn {
        animation: none !important;
    }
}
.item[property="author"] {
    border-top: 0.22222em solid;
}
.excerpt::after {
    content: "";
    display: inline-block;
    width: 1.125em;
    height: 0.25em;
    margin-left: 0.25em;
    vertical-align: 0.15em;
    background-color: currentColor;
    -webkit-mask-image: url("/img/more.svg");
    mask-image: url("/img/more.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}
.excerpt > a,
.subtitle > a {
    text-decoration: none;
}

.footer {
    font-size: 0.8em;
    border-top: solid 0.11111em;
    margin-bottom: 2em;
    padding-top: 1em;
    padding-bottom: 1em;
}
.copyright {
    white-space: nowrap;
}
.pagination {
    text-align: center;
    font-size: 1.45em;
    padding: 1em;
}
.pagination__item {
    text-decoration: none;
}

.footnotes {
    font-size: 0.8em;
}

.fineprint {
    font-size: 0.8em;
}

#references {
    font-size: 1.5em;
}

#changes {
    font-size: 1.5em;
}

.changes {
    font-size: 0.8em;
}

.changes ol {
    padding-left: 6em;
}

.commit::marker {
    content: attr(data-hash) " ◇ ";
}

.commit .author {
    font-style: italic;
    font-size: 1em;
}
.commit .author::before {
    content: "@";
}

.embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    margin: 1rem 0;
    border-radius: 0.2em;
    overflow: hidden;
    margin: auto;
}

@media (min-width: 601px) {
    .embed {
        max-width: var(--max-width-desktop, 100%);
    }
}

.embed button {
    padding: 0.5em;
    margin: 0.5em;
}
.embed .placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
    background-color: var(--color-placeholder);
}

/*# sourceMappingURL=style.css.map */
