@import "https://unpkg.com/@lumeland/ds@0.5.2/ds.css";

.navbar {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
  justify-content: space-between;
  padding: 2rem min(5vw, 5rem);
  align-items: center;
}

.navbar-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  font: var(--font-ui-bold);
  align-items: center;

  & [aria-current="page"] {
    text-decoration: none;
  }
}

.navbar-search {
  padding: 0 1em;
  margin-left: auto;
  display: flex;
  align-items: center;
}

.navbar-home {
  text-decoration: none;
}

.page-header {
  margin-bottom: var(--row-gap-medium);

  & > p:first-child {
    margin-top: 0;
  }
}

.page-title {
  font: var(--font-display);
  letter-spacing: var(--font-display-spacing);
  margin: 0;
  text-wrap: balance;
  color: var(--color-base);
}

.page-navigation {
  margin-bottom: var(--row-gap-medium);

  & ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
  }

  & h2 {
    font: var(--font-body-bold);
    letter-spacing: var(--font-body-spacing);
    margin: 0.5em 0;
  }
}

.page-pagination {
  border-top: solid 1px var(--color-line);
  margin-top: var(--row-gap-medium);
}

.postList {
    display: block;
    list-style: none;
    padding: 0;

    & article.post+article.post {
        margin-top: var(--row-gap-xsmall);
    }

    & li.post+li.post {
        margin-top: var(--row-gap-small);
    }

    & .post-header {
        margin-bottom: var(--row-gap-xsmall);
    }

    & .post-details {
        font: var(--font-small);
    }

    & .post-title {
        font: var(--font-title);
        letter-spacing: var(--font-title-spacing);
        display: block;

        & a {
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-decoration-color: #aaa;
            color: #000000;
            font-size: 0.55em;
            font-weight: normal;
        }

        & a:hover {
            text-decoration: underline;
            text-decoration-thickness: 1px;
            color: #000000;
            text-decoration-color: #000000;
        }
    }
}

.post-date {
    font-size: 0.5em;
    font-weight: 400;
    color: #888;
}

.postList h2 {
    margin-bottom: 0;
}

.postList h2+article,
.postList h2+.post {
    margin-top: 0 !important;
}

.post-header {
    margin-bottom: var(--row-gap-small);
}

.post-title {
    font: var(--font-display);
    letter-spacing: var(--font-display-spacing);
    margin: 0 0 0.2em;
    text-wrap: balance;
    color: var(--color-base);
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.post-details {
    display: flex;
    flex-flow: row wrap;
    row-gap: 1em;
    column-gap: 0.5em;
    align-items: center;
    font: var(--font-small);
    color: var(--color-dim);

    & p {
        margin: 0;
    }

    & p::after {
        content: "•";
        padding-left: 0.5em;
        align-self: stretch;
    }

    & p:last-of-type {
        margin-right: 0.5em;

        &::after {
            display: none;
        }
    }
}

.post-tags {
    display: flex;
    flex-flow: row wrap;
    gap: 0.5em;
    align-items: center;
}

.post-link {
    display: inline-block;
}

.post p,
.post-content p {
    margin-bottom: 1.2em;
    font-family: "content";
    font-size: 19px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.post ul,
.post ol,
.post li {
    font-family: "content";
    font-size: 19px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.post li::marker {
    color: #000;
}

.post a,
.post-content a,
.content a {
    color: #3366cc;
    text-decoration: underline;
}

.post a:hover,
.post-content a:hover,
.content a:hover {
    color: #000;
}

pre[class*="language-"],
code[class*="language-"] {
    background-color: #ffff;
    font-family: "code", monospace !important;
    border: none;
    box-shadow: none;
    border-radius: 6px;
    margin: 0;
    overflow-x: auto;
    line-height: 1.45;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

pre[class*="language-"] {
    padding: 0.8em 1em !important;
    text-indent: 0 !important;
}

pre[class*="language-"]>code {
    display: block;
    padding: 0 !important;
    margin: 0 !important;
    text-indent: 0 !important;
}

pre[class*="language-"] *,
.line-numbers .line-numbers-rows,
.line-highlight {
    background: none !important;
    border: none !important;
}

code {
    background-color: #d0f9df;
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

.post :not(pre)>code,
.post-content :not(pre)>code {
    background: transparent !important;
    color: #000 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 0.95em;
}

pre[class*="language-"],
pre[class*="language-"] code {
    background: #fff;
    color: #000;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #998;
    font-style: italic;
}

.token.keyword,
.token.control,
.token.operator,
.token.directive {
    color: #000;
    font-weight: 500;
}

.token.function,
.token.method {
    color: #000 !important;
    font-weight: 300;
}

.token.function-definition {
    color: #8b0000 !important;
    font-weight: 500;
}

.token.class-name {
    color: #8b0000;
    font-weight: 500;
}

.token.builtin {
    color: #445588;
    font-weight: 500;
}

.token.variable,
.token.parameter,
.token.property {
    color: #0086b3;
}

.token.string,
.token.char,
.token.number {
    color: #d72d2d;
}

.token.attr-value {
    color: #8b0000;
}

pre[class*="language-"] .token.comment {
    background-color: rgba(220, 245, 235, 0.35);
    color: #7f7f7f;
    font-weight: 600;
    line-height: 1.4;
}

pre[class*="language-"] {
    position: relative;
}

.copy-button {
    position: absolute;
    top: 8px;
    right: 8px;

    font-size: 12px;
    padding: 4px 8px;

    border: none;
    border-radius: 4px;

    background: #f3f3f3;
    color: rgba(0, 0, 0, 0.35);

    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

pre[class*="language-"]:hover .copy-button {
    opacity: 1;
}

.copy-button:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.04);
}

.copy-button.copied {
    background: #d1fae5;
    color: #000;
}

.post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8em 0;
    font-size: 0.95em;
}

.post-body thead th {
    text-align: left;
    font-weight: 600;
    padding: 0.6em 0.8em;

    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 0, 0, 0.03);
}

.post-body tbody td {
    padding: 0.6em 0.8em;
    vertical-align: top;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.post-body tbody tr:last-child td {
    border-bottom: none;
}

.post-body th+th,
.post-body td+td {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.post-body table {
    line-height: 1.5;
}

.post-body th {
    text-transform: none;
    letter-spacing: 0.02em;
}

.post-body table code {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.15em 0.35em;
    border-radius: 4px;
    font-size: 0.9em;
}

.post-body tbody tr:hover {
    background-color: rgba(220, 230, 240, 0.35);
}

.post-body table {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .post-body table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

:root {
  --color-link: var(--color-base);
  --color-link-hover: var(--color-dim);
  --font-body: "content";
}

/* cyrillic-ext */
@font-face {
  font-family: "code";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-italic-100-800-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "code";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-italic-100-800-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* greek */
@font-face {
  font-family: "code";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-italic-100-800-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "code";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-italic-100-800-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "code";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-italic-100-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "code";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-italic-100-800-latin.woff2") format("woff2");
  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-display: swap;
}

/* cyrillic-ext */
@font-face {
  font-family: "code";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-normal-100-800-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "code";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-normal-100-800-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* greek */
@font-face {
  font-family: "code";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-normal-100-800-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "code";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-normal-100-800-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "code";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-normal-100-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "code";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/code-normal-100-800-latin.woff2") format("woff2");
  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-display: swap;
}
/* cyrillic-ext */
@font-face {
  font-family: "menu";
  font-style: italic;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-italic-100-700-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "menu";
  font-style: italic;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-italic-100-700-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* greek */
@font-face {
  font-family: "menu";
  font-style: italic;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-italic-100-700-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "menu";
  font-style: italic;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-italic-100-700-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "menu";
  font-style: italic;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-italic-100-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "menu";
  font-style: italic;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-italic-100-700-latin.woff2") format("woff2");
  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-display: swap;
}

/* cyrillic-ext */
@font-face {
  font-family: "menu";
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-normal-100-700-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "menu";
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-normal-100-700-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* greek */
@font-face {
  font-family: "menu";
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-normal-100-700-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "menu";
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-normal-100-700-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "menu";
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-normal-100-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "menu";
  font-style: normal;
  font-weight: 100 700;
  font-stretch: 100%;
  src: url("fonts/menu-100-normal-100-700-latin.woff2") format("woff2");
  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-display: swap;
}
/* cyrillic-ext */
@font-face {
  font-family: "header";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-italic-100-800-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "header";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-italic-100-800-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* greek */
@font-face {
  font-family: "header";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-italic-100-800-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "header";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-italic-100-800-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "header";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-italic-100-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "header";
  font-style: italic;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-italic-100-800-latin.woff2") format("woff2");
  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-display: swap;
}

/* cyrillic-ext */
@font-face {
  font-family: "header";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-normal-100-800-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "header";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-normal-100-800-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* greek */
@font-face {
  font-family: "header";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-normal-100-800-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "header";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-normal-100-800-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "header";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-normal-100-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "header";
  font-style: normal;
  font-weight: 100 800;
  font-stretch: normal;
  src: url("fonts/header-normal-100-800-latin.woff2") format("woff2");
  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-display: swap;
}
/* cyrillic-ext */
@font-face {
  font-family: "content";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-italic-300-900-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "content";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-italic-300-900-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "content";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-italic-300-900-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "content";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-italic-300-900-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "content";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-italic-300-900-latin.woff2") format("woff2");
  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-display: swap;
}

/* cyrillic-ext */
@font-face {
  font-family: "content";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-normal-300-900-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-display: swap;
}

/* cyrillic */
@font-face {
  font-family: "content";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-normal-300-900-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-display: swap;
}

/* vietnamese */
@font-face {
  font-family: "content";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-normal-300-900-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-display: swap;
}

/* latin-ext */
@font-face {
  font-family: "content";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-normal-300-900-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-display: swap;
}

/* latin */
@font-face {
  font-family: "content";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url("fonts/content-100-normal-300-900-latin.woff2") format("woff2");
  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-display: swap;
}


html,
body {
  background-color: #ffff !important;
  font-weight: 400;
  font-family: "content";
  font-size: 19px;
  line-height: 1.65;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #111;
  font-weight: 450;
}

main {
  padding: var(--row-gap-medium) 0;
  max-width: min(100% - 15vw, 45em);
  margin: 0 auto;

  &> :first-child {
    margin-top: 0;
  }
}

.search {
  margin-top: var(--row-gap-xsmall);
}

.year-block {
  margin-top: 2rem;
}

.year-block:first-child {
  margin-top: 0;
}

.year-posts {
  margin-top: 0.1rem;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.year-posts .post,
.year-posts article,
.year-posts .post-header,
.year-posts .post-title {
  margin: 0 !important;
  padding: 0 !important;
}

.year-posts .post+.post,
.year-posts article+article {
  margin-top: 0.1rem !important;
}

.navbar-links a {
  text-decoration: none;
  color: inherit;
}

.navbar-home {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.year-title {
  font-family: header;
}

.year-posts .post-title {
  font-family: menu;
}

.body-post .post-title {
  font-family: "content";
}