:root {
    --tlst-paper: #fff;
    --tlst-ink: #0f0f0f;
    --tlst-gray: #8a8a8a;
    --tlst-plate: #ebebeb;
    --tlst-yellow: #f8d800;
    --tlst-rule: #111;
    --tlst-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
    --tlst-grotesk: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --tlst-width: 1140px;
}

html {
    background: #000;
}

body.tlst-theme {
    margin: 0;
    background: var(--tlst-paper);
    color: var(--tlst-ink);
    font-family: var(--tlst-grotesk);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.tlst-theme *,
.tlst-theme *::before,
.tlst-theme *::after {
    box-sizing: border-box;
}

.tlst-theme a {
    color: inherit;
}

.tlst-theme button {
    color: inherit;
    font: inherit;
}

.tlst-theme .gh-viewport {
    display: block;
    min-height: 100vh;
}

.tlst-wrap {
    width: 100%;
    max-width: var(--tlst-width);
    margin-inline: auto;
    padding-inline: 28px;
}

.tlst-main {
    position: relative;
}

/* Product band */
.tlst-promo {
    background: var(--tlst-ink);
    color: #fff;
}

.tlst-promo__inner {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    padding-block: 56px;
}

.tlst-product-cover {
    display: flex;
    width: 300px;
    aspect-ratio: 1 / 1.05;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: #fff;
    color: var(--tlst-ink);
}

.tlst-product-cover__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.tlst-product-cover__head b {
    padding: 1px 6px;
    background: var(--tlst-yellow);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.tlst-product-cover__head span {
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 9px;
}

.tlst-product-cover__thread {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    align-items: start;
}

.tlst-product-cover__thread i {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #e6e6e6;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.tlst-product-cover__thread span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 3px;
}

.tlst-product-cover__thread b,
.tlst-product-cover__thread u {
    display: block;
    height: 6px;
    text-decoration: none;
}

.tlst-product-cover__thread b {
    width: 70%;
    height: 8px;
    margin-bottom: 2px;
    background: #111;
}

.tlst-product-cover__thread u {
    width: 92%;
    background: #dcdcdc;
}

.tlst-product-cover__thread u:last-child {
    width: 60%;
}

.tlst-product-cover > strong {
    margin-top: auto;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: 1;
}

.tlst-product-cover mark {
    padding-inline: 6px;
    background: var(--tlst-yellow);
    color: inherit;
}

.tlst-promo__copy p {
    max-width: 56ch;
    margin: 0 0 30px;
    font-size: 19px;
    line-height: 1.45;
}

.tlst-promo__copy p b {
    padding-inline: 4px;
    background: var(--tlst-yellow);
    color: #000;
    font-weight: 900;
}

.tlst-promo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.tlst-button {
    display: inline-block;
    border: 1px solid #fff;
    background: #0a0a0a;
    box-shadow: 5px 5px 0 -1px #000, 5px 5px 0 0 #fff;
    color: #fff;
    font-family: var(--tlst-mono);
    font-size: 11px;
    letter-spacing: .18em;
    line-height: 1;
    padding: 14px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .08s linear, box-shadow .08s linear;
}

.tlst-button:hover {
    box-shadow: 2px 2px 0 -1px #000, 2px 2px 0 0 #fff;
    transform: translate(3px, 3px);
}

.tlst-button--light {
    border-color: var(--tlst-ink);
    background: #fff;
    box-shadow: 4px 4px 0 -1px #fff, 4px 4px 0 0 var(--tlst-ink);
    color: var(--tlst-ink);
}

body:not(.home-template) .tlst-promo__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-block: 20px;
}

body:not(.home-template) .tlst-product-cover {
    display: none;
}

body:not(.home-template) .tlst-promo__copy {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

body:not(.home-template) .tlst-promo__copy p {
    max-width: 62ch;
    margin: 0;
    font-size: 15px;
}

body:not(.home-template) .tlst-promo__actions a:last-child {
    display: none;
}

body:not(.home-template) .tlst-button {
    padding: 11px 18px;
    font-size: 10px;
}

/* Header and overlay menu */
.tlst-nav {
    background: var(--tlst-paper);
}

.tlst-nav__inner {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: space-between;
    padding-block: 18px 8px;
}

.home-template .tlst-nav__inner {
    justify-content: space-between;
}

.home-template .tlst-nav .tlst-logo {
    display: none;
}

.tlst-logo {
    display: block;
    width: 84px;
    color: var(--tlst-ink);
}

.tlst-logo img {
    display: block;
    width: 100%;
    height: 52px;
    object-fit: contain;
    object-position: left center;
}

.tlst-nav__profile {
    min-width: 0;
    margin-right: auto;
    margin-left: 24px;
}

.home-template .tlst-nav__profile {
    margin-left: 0;
}

.tlst-nav__actions {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 20px;
}

.tlst-nav__menu,
.tlst-search,
.tlst-menu__close,
.tlst-menu__search {
    border: 0;
    background: none;
    cursor: pointer;
}

.tlst-nav__menu {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 0;
    font-family: var(--tlst-mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tlst-nav__menu i {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.tlst-nav__menu i b {
    width: 18px;
    height: 2.5px;
    background: currentColor;
}

.tlst-search {
    width: 26px;
    height: 26px;
    padding: 4px;
}

.tlst-search i {
    position: relative;
    display: block;
    width: 13px;
    height: 13px;
    border: 2.5px solid currentColor;
    border-radius: 50%;
}

.tlst-search i::after {
    position: absolute;
    right: -7px;
    bottom: -3px;
    width: 7px;
    height: 2.5px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
}

.tlst-nav .tc-profile-widget {
    width: min(230px, 22vw);
    min-height: 50px;
}

.tlst-menu {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    overflow: auto;
    background: #202020;
    color: #fff;
}

.tlst-menu.is-open {
    display: block;
}

.tlst-menu__inner {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.tlst-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
    border-bottom: 0;
}

.tlst-menu .tlst-logo {
    filter: grayscale(1) brightness(0) invert(1);
}

.tlst-menu__close {
    padding: 8px 0;
    font-family: var(--tlst-mono);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tlst-menu__close b {
    margin-right: 8px;
    font-size: 18px;
    font-weight: 400;
}

.tlst-menu__links {
    display: grid;
    padding: clamp(56px, 8vh, 110px) 0 42px;
    gap: clamp(34px, 5vh, 72px) 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlst-menu__links .nav,
.tlst-menu__extras {
    display: contents;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tlst-menu__links li {
    min-width: 0;
    border-top: 1px solid rgba(255, 255, 255, .92);
}

.tlst-menu__links a {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    font-family: var(--tlst-mono);
    font-size: clamp(.95rem, 1.45vw, 1.35rem);
    font-weight: 400;
    letter-spacing: .04em;
    line-height: 1.15;
    text-decoration: none;
    text-transform: uppercase;
}

.tlst-menu__links a > i {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    font-family: var(--tlst-grotesk);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    transition: background-color .15s ease, color .15s ease;
}

.tlst-menu__links a:hover > i,
.tlst-menu__links a:focus-visible > i {
    border-color: var(--tlst-yellow);
    background: var(--tlst-yellow);
    color: #111;
}

.tlst-menu__search {
    display: flex;
    width: 100%;
    align-items: baseline;
    gap: 18px;
    padding: 26px 0;
    text-align: left;
}

.tlst-menu__search span {
    font-family: var(--tlst-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.tlst-menu__search i {
    flex: 1;
    padding: 4px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    color: #8f8f8f;
    font-size: 16px;
    font-style: normal;
}

.tlst-menu__bottom {
    display: flex;
    margin-top: auto;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 26px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    color: #8f8f8f;
    font-family: var(--tlst-mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Direction-aware reading header */
.tlst-reading-progress {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
    visibility: hidden;
}

.tlst-reading-progress.is-active {
    visibility: visible;
}

.tlst-reading-progress i {
    display: block;
    width: calc(var(--tlst-reading-progress, 0) * 100%);
    height: 100%;
    background: var(--tlst-yellow);
}

.tlst-scroll-header {
    position: fixed;
    z-index: 900;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid var(--tlst-rule);
    background: rgba(255, 255, 255, .98);
    transform: translateY(-110%);
    transition: transform .22s ease;
}

.tlst-scroll-header.is-visible {
    transform: translateY(0);
}

.tlst-scroll-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
}

.tlst-scroll-header .tlst-logo {
    width: 68px;
}

.tlst-scroll-header .tlst-logo img {
    height: 42px;
}

body.is-tlst-menu-open .tlst-scroll-header,
body.is-tlst-menu-open .tlst-reading-progress {
    visibility: hidden;
}

/* Homepage */
.tlst-masthead {
    position: relative;
    min-height: 286px;
    padding-top: 10px;
}

.tlst-masthead img {
    display: block;
    width: 66.666%;
    height: auto;
}

.tlst-masthead p {
    position: absolute;
    right: 0;
    bottom: 30px;
    margin: 0;
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.tlst-feed {
    display: grid;
    overflow: hidden;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1.5px solid var(--tlst-rule);
}

.tlst-feed-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 15px;
    margin-top: -1px;
    margin-left: -1px;
    padding: 24px 26px 30px;
    border-top: 1px solid var(--tlst-rule);
    border-left: 1px solid var(--tlst-rule);
    background: var(--tlst-paper);
}

.tlst-feed-card__text {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 15px;
}

.tlst-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--tlst-mono);
    font-size: 10.5px;
    letter-spacing: .12em;
}

.tlst-card-meta > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.tlst-card-meta b {
    overflow: hidden;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tlst-card-meta i {
    overflow: hidden;
    color: var(--tlst-gray);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tlst-category-badge {
    display: inline-grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--tlst-ink);
    color: #fff;
    font-family: var(--tlst-grotesk);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tlst-feed-card__image,
.tlst-feed-card__plate {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--tlst-plate);
    text-decoration: none;
}

.tlst-feed-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.tlst-feed-card__image:hover img {
    transform: scale(1.025);
}

.tlst-feed-card__plate {
    display: grid;
    place-items: center;
    font-size: 60px;
    font-weight: 900;
}

.tlst-feed-card.is-yellow .tlst-feed-card__plate,
.tlst-feed-card.is-yellow .tlst-feed-card__image {
    background: var(--tlst-yellow);
}

.tlst-feed-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.28;
}

.tlst-feed-card__title a,
.tlst-related h3 a {
    padding-bottom: 2px;
    background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 2.5px;
    color: inherit;
    text-decoration: none;
    transition: background-size .28s ease;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.tlst-feed-card__title a:hover,
.tlst-related h3 a:hover {
    background-size: 100% 2.5px;
}

.tlst-feed-card__excerpt {
    margin: 0;
    color: var(--tlst-gray);
    font-size: 14px;
    line-height: 1.5;
}

.tlst-feed-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
}

.tlst-feed-card__footer .tolstoycomments-cc {
    color: inherit;
}

.tlst-feed-card .is-side {
    display: none;
}

.tlst-feed-card.is-wide {
    display: grid;
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    padding-block: 24px;
}

.tlst-feed-card.is-wide .is-inline {
    display: none;
}

.tlst-feed-card.is-wide .is-side {
    display: block;
    min-height: 240px;
    aspect-ratio: auto;
}

.tlst-feed-card.is-wide .tlst-feed-card__title {
    font-size: 26px;
}

.tlst-feed-card.is-quote .tlst-feed-card__title span {
    font-size: 30px;
    font-weight: 900;
    line-height: 0;
}

.tlst-feed-card.is-dark {
    background: var(--tlst-ink);
    color: #fff;
}

.tlst-feed-card.is-dark .tlst-category-badge {
    background: #fff;
    color: var(--tlst-ink);
}

.tlst-feed-card.is-dark .tlst-card-meta i,
.tlst-feed-card.is-dark .tlst-feed-card__footer,
.tlst-feed-card.is-dark .tlst-feed-card__excerpt {
    color: #9a9a9a;
}

.tlst-more {
    display: flex;
    justify-content: center;
    padding-top: 48px;
}

.tlst-more .tlst-button {
    padding: 17px 34px;
    font-size: 13px;
}

.tlst-community {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 64px;
    border-block: 1.5px solid var(--tlst-rule);
}

.tlst-community__column {
    min-width: 0;
    padding: 34px 40px 38px 0;
}

.tlst-community__column + .tlst-community__column {
    padding-right: 0;
    padding-left: 40px;
    border-left: 1px solid var(--tlst-rule);
}

.tlst-community h2,
.tlst-news > h2 {
    margin: 0;
    font-size: clamp(2.6rem, 5.4vw, 4rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1;
    text-transform: uppercase;
}

.tlst-community h2 {
    font-size: clamp(2rem, 3.7vw, 3.25rem);
}

.tlst-community header p {
    max-width: 30ch;
    margin: 18px 0 0;
    color: var(--tlst-gray);
    font-size: 15px;
}

.tlst-community .tc-latest-comments,
.tlst-community .tc-most-discussed {
    min-width: 0;
    margin: 28px 0 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--tlst-rule);
}

.tlst-community .tc-latest-comments-inner {
    max-width: none;
    padding: 0;
    border: 0;
}

.tlst-community #tolstoycomments-commentlast,
.tlst-community #tolstoycomments-widget-posts {
    min-height: 280px;
}

#tolstoycomments-widget-posts > div {
    position: relative;
    padding: 14px 0 14px 38px !important;
    border-bottom: 1px solid var(--tlst-plate);
    color: var(--tlst-ink);
    font-size: 15px;
    line-height: 1.45;
}

#tolstoycomments-widget-posts > div::before {
    position: absolute;
    top: 19px !important;
    left: 4px;
    width: 15px;
    height: 12px;
    border: 1.5px solid var(--tlst-gray);
    border-radius: 2px;
    content: "";
}

#tolstoycomments-widget-posts > div::after {
    position: absolute;
    top: 29px;
    left: 8px;
    width: 5px;
    height: 5px;
    border-bottom: 1.5px solid var(--tlst-gray);
    border-left: 1.5px solid var(--tlst-gray);
    background: var(--tlst-paper);
    content: "";
    transform: skewY(-38deg);
}

#tolstoycomments-widget-posts span {
    display: inline-grid;
    min-width: 28px;
    height: 24px;
    place-items: center;
    margin-right: 7px;
    background: var(--tlst-yellow);
    color: var(--tlst-ink);
    font-family: var(--tlst-mono);
    font-size: 10px;
}

#tolstoycomments-widget-posts a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

#tolstoycomments-widget-posts.is-unavailable {
    color: var(--tlst-gray);
    font-size: 14px;
}

.tlst-news {
    display: grid;
    grid-template-columns: 5fr 7fr;
    padding-top: 64px;
}

.tlst-news > h2 {
    padding-right: 34px;
}

.tlst-news article {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 9px 0;
    font-size: 16.5px;
    line-height: 1.5;
}

.tlst-news time {
    padding-top: 4px;
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 12px;
}

.tlst-news a,
.tlst-content a {
    padding-bottom: 2px;
    background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 100% 1.5px;
    text-decoration: none;
}

.tlst-news a:hover,
.tlst-content a:hover {
    animation: tlst-underline .55s ease;
}

@keyframes tlst-underline {
    0% { background-position: 100% 100%; background-size: 100% 1.5px; }
    49% { background-position: 100% 100%; background-size: 0 1.5px; }
    50% { background-position: 0 100%; background-size: 0 1.5px; }
    100% { background-position: 0 100%; background-size: 100% 1.5px; }
}

/* Articles and pages */
.tlst-article-header > h1,
.tlst-page-header > h1 {
    max-width: 24ch;
    margin: 0;
    padding: 48px 0 30px;
    font-size: clamp(2.3rem, 5vw, 4.05rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1;
    text-transform: uppercase;
}

.tlst-page-header > h1 {
    max-width: 18ch;
    font-size: clamp(3.4rem, 8vw, 6.4rem);
    line-height: .9;
}

.tlst-page-header > p {
    max-width: 60ch;
    margin: -8px 0 32px 33.333%;
    color: var(--tlst-gray);
    font-size: 19px;
}

.tlst-article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 16px 0;
    border-top: 1.5px solid var(--tlst-rule);
    font-family: var(--tlst-mono);
    font-size: 11.5px;
    letter-spacing: .12em;
}

.tlst-article-meta__category {
    margin-left: -20px;
}

.tlst-article-meta time {
    margin-left: auto;
}

.tlst-article-meta__author {
    color: var(--tlst-gray);
}

.tlst-article-meta__comments {
    white-space: nowrap;
    text-decoration: none;
}

.tlst-article-meta__comments::before,
.tlst-feed-card__footer .tolstoycomments-cc::before {
    content: none;
}

.tlst-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: var(--tlst-mono);
    font-size: 11.5px;
    letter-spacing: .12em;
}

.tlst-share i {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1.5px solid var(--tlst-ink);
    border-radius: 50%;
    font-style: normal;
}

.tlst-share:hover i {
    background: var(--tlst-yellow);
}

.tlst-article-hero {
    overflow: hidden;
    margin: 0;
    background: var(--tlst-ink);
}

.tlst-article-hero img {
    display: block;
    width: 100%;
    max-height: min(60vh, 620px);
    object-fit: cover;
}

.tlst-article-hero figcaption {
    padding-top: 14px;
    background: var(--tlst-paper);
    font-family: var(--tlst-mono);
    font-size: 11px;
    letter-spacing: .1em;
}

.tlst-article-hero--type {
    display: grid;
    height: 400px;
    place-items: center;
    background: var(--tlst-ink);
    color: #fff;
}

.tlst-article-hero--type span {
    position: relative;
    overflow: hidden;
    max-width: 90%;
    font-size: clamp(4rem, 15vw, 13rem);
    font-weight: 900;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.tlst-article-hero--type span::after {
    position: absolute;
    top: 52%;
    left: -6%;
    width: 112%;
    height: 14px;
    background: var(--tlst-yellow);
    content: "";
    transform: rotate(-6deg);
}

.tlst-article-lede {
    width: 66.666%;
    max-width: 66ch;
    margin: 44px 0 0 auto;
    font-size: 19.5px;
    line-height: 1.6;
}

.tlst-content {
    width: 66.666%;
    max-width: 68ch;
    margin: 44px 0 10px auto;
    color: var(--tlst-ink);
    font-family: var(--tlst-grotesk);
}

.tlst-content > :first-child {
    margin-top: 0;
}

.tlst-content p,
.tlst-content li {
    font-size: 18px;
    line-height: 1.65;
}

.tlst-content p {
    margin: 0 0 26px;
}

.tlst-content h1,
.tlst-content h2,
.tlst-content h3,
.tlst-content h4 {
    color: var(--tlst-ink);
    font-family: var(--tlst-grotesk);
}

.tlst-content h1,
.tlst-content h2 {
    margin: 44px 0 18px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.3;
}

.tlst-content h3 {
    margin: 34px 0 14px;
    font-size: 20px;
}

.tlst-content ul,
.tlst-content ol {
    margin: 0 0 26px;
    padding-left: 28px;
}

.tlst-content li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.tlst-content blockquote {
    margin: 34px 0;
    padding: 22px 26px;
    border: 0;
    background: var(--tlst-ink);
    color: #fff;
    font-size: 19px;
    font-style: normal;
    line-height: 1.55;
}

.tlst-content blockquote p {
    color: inherit;
    font-size: inherit;
}

.tlst-content figure,
.tlst-content .kg-card {
    margin: 36px 0;
}

.tlst-content figure img,
.tlst-content .kg-image-card img {
    width: 100%;
    height: auto;
}

.tlst-content figcaption {
    padding-top: 12px;
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 10.5px;
    letter-spacing: .06em;
    line-height: 1.7;
    text-align: left;
}

.tlst-content figcaption::before {
    color: var(--tlst-ink);
    content: "↑ ";
}

.tlst-content hr {
    margin: 44px 0;
    border: 0;
    border-top: 1px solid var(--tlst-rule);
}

.tc-reactions {
    width: 66.666%;
    max-width: 68ch;
    min-height: 120px;
    margin: 52px 0 0 auto;
    padding: 30px 0;
    border-top: 1.5px solid var(--tlst-rule);
}

.tlst-numbered-intro {
    margin-bottom: 40px;
}

.tlst-numbered-section {
    display: grid;
    width: 150%;
    margin: 40px 0 0 -50%;
    padding: 30px 0 14px;
    grid-template-columns: 1fr 2fr;
    border-top: 1.5px solid var(--tlst-rule);
}

.tlst-numbered-section__number {
    font-size: 110px;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .8;
}

.tlst-numbered-section__body > :first-child {
    margin-top: 0;
}

.tlst-numbered-section__body > h1:first-child,
.tlst-numbered-section__body > h2:first-child {
    max-width: 30ch;
    font-size: 24px;
}

.tlst-numbered-section__body .kg-card,
.tlst-numbered-section__body figure {
    max-width: none;
}

/* Comments and related */
.tlst-theme .tc-discussion {
    margin-top: 56px;
}

.tlst-theme .tc-discussion-inner {
    width: 100%;
    padding: 40px 44px 34px;
    border: 0;
    border-block: 1.5px solid var(--tlst-rule);
    background: var(--tlst-paper);
    color: var(--tlst-ink);
}

.tc-discussion-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.tlst-theme .tc-discussion-title {
    margin: 0;
    color: var(--tlst-ink);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.tc-discussion-heading > span {
    color: #9a9a9a;
    font-family: var(--tlst-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tc-discussion-heading > span b {
    padding-inline: 3px;
    background: var(--tlst-yellow);
    color: var(--tlst-ink);
    font-weight: 400;
}

.tlst-related {
    margin-top: 64px;
}

.tlst-related > h2 {
    margin: 0;
    padding-bottom: 18px;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.tlst-related__list {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1.5px solid var(--tlst-rule);
}

.tlst-related__list article {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    margin-left: -1px;
    padding: 22px 24px 26px;
    border-left: 1px solid var(--tlst-rule);
}

.tlst-related__list article.is-dark {
    background: var(--tlst-ink);
    color: #fff;
}

.tlst-related__list article.is-dark .tlst-category-badge {
    background: #fff;
    color: var(--tlst-ink);
}

.tlst-related h3 {
    margin: 0;
    font-size: 16.5px;
    line-height: 1.32;
}

.tlst-related time {
    margin-top: auto;
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
}

/* FAQ */
.tlst-faq .tlst-page-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1.5px solid var(--tlst-rule);
}

.tlst-faq .tlst-page-header > h1 {
    padding-bottom: 30px;
}

.tlst-faq .tlst-page-header > p {
    max-width: 40ch;
    margin: 0;
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tlst-faq-content {
    width: 100%;
    max-width: none;
    margin-top: 36px;
}

.tlst-faq-content > p:first-child {
    width: 66.666%;
    margin-left: auto;
    font-size: 19px;
    line-height: 1.6;
}

.tlst-faq-content > h2 {
    margin: 48px 0 0;
    padding: 18px 0;
    border-top: 1.5px solid var(--tlst-rule);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
}

.tlst-faq-content details {
    margin: 0;
    border-top: 1px solid var(--tlst-rule);
}

.tlst-faq-content summary {
    display: grid;
    align-items: baseline;
    gap: 20px;
    grid-template-columns: 64px 1fr 40px;
    padding: 26px 0;
    cursor: pointer;
    list-style: none;
}

.tlst-faq-content summary::-webkit-details-marker {
    display: none;
}

.tlst-faq-content summary .tlst-faq-number {
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 12px;
    letter-spacing: .1em;
}

.tlst-faq-content summary .tlst-faq-question {
    width: fit-content;
    justify-self: start;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.3;
}

.tlst-faq-content summary .tlst-faq-plus {
    font-size: 26px;
    line-height: 1;
    text-align: right;
    transition: transform .15s ease;
}

.tlst-faq-content details[open] summary .tlst-faq-plus {
    transform: rotate(45deg);
}

.tlst-faq-content summary:hover .tlst-faq-question {
    padding-bottom: 2px;
    background: linear-gradient(var(--tlst-ink), var(--tlst-ink)) no-repeat 0 100% / 100% 2.5px;
}

.tlst-faq-content .tlst-faq-answer {
    display: grid;
    gap: 20px;
    grid-template-columns: 64px 1fr;
    padding: 0 0 30px;
}

.tlst-faq-content .tlst-faq-answer > * {
    grid-column: 2;
}

.tlst-faq-content .tlst-faq-answer p,
.tlst-faq-content .tlst-faq-answer li {
    color: #33322e;
    font-size: 16.5px;
    line-height: 1.7;
}

.tlst-faq-discussion {
    margin-top: 72px;
}

.tlst-faq .tc-reactions,
.tlst-faq-discussion .tc-discussion-inner {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.tlst-faq-discussion .tc-discussion {
    display: block;
}

.tlst-profile-stage {
    min-height: 640px;
    margin-top: 36px;
    padding: 32px;
    border-top: 1.5px solid var(--tlst-rule);
    background: var(--tlst-plate);
}

/* Footer */
.tlst-footer {
    margin-top: 74px;
    padding: 54px 0 30px;
    background: #000;
    color: #fff;
}

.tlst-footer__grid {
    display: grid;
    align-items: start;
    gap: 70px;
    grid-template-columns: 1fr auto auto;
}

.tlst-footer__mark {
    display: block;
    width: 310px;
    color: #fff;
    filter: brightness(0) invert(1);
}

.tlst-footer__mark img {
    display: block;
    width: 100%;
    height: auto;
}

.tlst-footer__links .nav,
.tlst-footer__about {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 12px;
    font-family: var(--tlst-mono);
    font-size: 11px;
    letter-spacing: .14em;
    list-style: none;
    text-transform: uppercase;
}

.tlst-footer__links a {
    text-decoration: none;
}

.tlst-footer__links a:hover {
    background: var(--tlst-yellow);
    color: #000;
}

.tlst-footer__about {
    color: #777;
}

.tlst-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 44px;
    padding-top: 16px;
    border-top: 1px solid #2a2a2a;
    color: #777;
    font-family: var(--tlst-mono);
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Archive pagination */
.tlst-pagination {
    display: grid;
    align-items: center;
    gap: 24px;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid var(--tlst-rule);
    color: var(--tlst-gray);
    font-family: var(--tlst-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tlst-pagination__side.is-next {
    text-align: right;
}

.tlst-pagination a {
    color: var(--tlst-ink);
    text-decoration: none;
}

.tlst-pagination a:hover {
    background: var(--tlst-yellow);
}

.paged .tlst-archive .tlst-feed {
    margin-top: 42px;
}

@media (min-width: 921px) {
    .home-template .tlst-promo__inner {
        align-items: end;
        padding-bottom: 0;
    }

    .home-template .tlst-promo__copy {
        align-self: center;
        padding-bottom: 56px;
    }
}

/* Source fallback pages */
.tlst-theme .gh-main:not(.tlst-main),
.tlst-theme .gh-container {
    max-width: var(--tlst-width);
    margin-inline: auto;
}

@media (min-width: 1660px) {
    :root { --tlst-width: 1580px; }
    .tlst-feed { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .tlst-masthead img { width: 50%; }
}

@media (max-width: 920px) {
    .tlst-promo__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tlst-feed {
        grid-template-columns: 1fr;
    }

    .tlst-feed-card.is-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .tlst-feed-card.is-wide .is-inline {
        display: block;
    }

    .tlst-feed-card.is-wide .is-side {
        display: none;
    }

    .tlst-community,
    .tlst-news {
        grid-template-columns: 1fr;
    }

    .tlst-community__column,
    .tlst-community__column + .tlst-community__column {
        padding: 32px 0;
        border: 0;
    }

    .tlst-community__column + .tlst-community__column {
        border-top: 1px solid var(--tlst-rule);
    }

    .tlst-news > h2 {
        margin-bottom: 24px;
    }

    .tlst-related__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .tlst-wrap {
        padding-inline: 20px;
    }

    .tlst-product-cover {
        width: min(300px, 100%);
    }

    body:not(.home-template) .tlst-promo__copy {
        align-items: flex-start;
        flex-direction: column;
    }

    body:not(.home-template) .tlst-promo__copy p {
        display: none;
    }

    body:not(.home-template) .tlst-promo__inner {
        min-height: 58px;
        justify-content: flex-end;
        padding-block: 12px;
    }

    .tlst-nav__inner {
        min-height: 80px;
    }

    .tlst-nav .tc-profile-widget {
        width: 48px;
    }

    .tlst-nav__profile {
        margin-left: 14px;
    }

    .home-template .tlst-nav__profile {
        margin-left: 0;
    }

    .tlst-nav__menu span {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        clip: rect(0 0 0 0);
    }

    .tlst-masthead {
        min-height: 220px;
    }

    .tlst-masthead img {
        width: 100%;
    }

    .tlst-masthead p {
        position: static;
        margin-top: 18px;
        padding-left: 12px;
    }

    .tlst-article-header > h1 {
        padding-top: 32px;
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .tlst-article-meta {
        gap: 12px 18px;
        flex-wrap: wrap;
    }

    .tlst-article-meta time {
        margin-left: 0;
    }

    .tlst-article-meta__author {
        display: none;
    }

    .tlst-share {
        margin-left: auto;
    }

    .tlst-article-hero--type {
        height: 300px;
    }

    .tlst-article-lede,
    .tlst-content,
    .tc-reactions,
    .tlst-faq-content > p:first-child {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    .tlst-numbered-section {
        width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
    }

    .tlst-numbered-section__number {
        margin-bottom: 16px;
        font-size: 64px;
    }

    .tlst-theme .tc-discussion-inner {
        padding: 28px 22px;
    }

    .tc-discussion-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .tlst-related__list {
        grid-template-columns: 1fr;
    }

    .tlst-faq .tlst-page-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tlst-faq-content summary {
        grid-template-columns: 1fr 40px;
    }

    .tlst-faq-content summary .tlst-faq-number {
        display: none;
    }

    .tlst-pagination {
        gap: 14px;
        grid-template-columns: 1fr 1fr;
    }

    .tlst-pagination__status {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
    }

    .tlst-pagination__side {
        grid-row: 2;
    }

    .tlst-faq-content .tlst-faq-answer {
        grid-template-columns: 1fr;
    }

    .tlst-faq-content .tlst-faq-answer > * {
        grid-column: 1;
    }

    .tlst-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tlst-footer__mark {
        width: min(290px, 80vw);
    }

    .tlst-footer__bottom,
    .tlst-menu__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .tlst-menu__links {
        gap: 0;
        grid-template-columns: 1fr;
        padding: 36px 0;
    }

    .tlst-menu__links a {
        min-height: 62px;
    }

    .tlst-scroll-header__inner {
        min-height: 66px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tlst-theme *,
    .tlst-theme *::before,
    .tlst-theme *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .tlst-masthead img,
    .tlst-article-header > h1,
    .tlst-page-header > h1 {
        animation: tlst-enter .65s cubic-bezier(.2, .7, .2, 1) both;
    }

    .has-tlst-motion .tlst-feed-card,
    .has-tlst-motion .tlst-numbered-section,
    .has-tlst-motion .tlst-related__list article {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .45s ease, transform .45s cubic-bezier(.2, .7, .2, 1);
    }

    .has-tlst-motion .tlst-feed-card.is-visible,
    .has-tlst-motion .tlst-numbered-section.is-visible,
    .has-tlst-motion .tlst-related__list article.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tlst-enter {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
