:root {
  --th-bg: #0a0a0a;
  --th-surface: #141414;
  --th-surface-2: #1b1b1b;
  --th-text: #f4f4f4;
  --th-dim: #949494;
  --th-muted: #666;
  --th-accent: #ff4d00;
  --th-line: #292929;
  --th-display: "Bebas Neue", Impact, sans-serif;
  --th-head: Oswald, "Arial Narrow", sans-serif;
  --th-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --th-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --th-wide: min(1440px, calc(100vw - 64px));
  --th-ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: #343434 var(--th-bg);
  scrollbar-width: thin;
}

body.tilda-handbook {
  margin: 0;
  overflow-x: hidden;
  background: var(--th-bg);
  color: var(--th-text);
  font-family: var(--th-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.tilda-handbook::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  content: "";
}

body.tilda-handbook a {
  color: inherit;
  text-decoration: none;
}

body.tilda-handbook img {
  display: block;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.wp-site-blocks,
.wp-site-blocks > * {
  margin-block-start: 0;
}

.alignwide {
  width: var(--th-wide);
  max-width: var(--th-wide);
  margin-inline: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
}

.th-eyebrow {
  display: block;
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.th-button,
.th-newsletter button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 24px;
  border: 1px solid var(--th-accent);
  background: var(--th-accent);
  color: #090909 !important;
  font-family: var(--th-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s var(--th-ease);
}

.th-button:hover,
.th-newsletter button:hover {
  background: transparent;
  color: var(--th-accent) !important;
  transform: translateY(-2px);
}

.th-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 10, 10, .88);
  backdrop-filter: blur(18px);
}

.admin-bar .th-site-header {
  top: 32px;
}

.th-site-header__inner {
  height: 74px;
  gap: 28px;
}

.th-brand {
  flex: 0 0 auto;
}

.th-brand > * {
  margin: 0 !important;
}

.th-brand__title a,
.th-site-footer__brand .wp-block-site-title a {
  display: block;
  font-family: var(--th-display);
  font-size: 25px;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.th-brand__tagline {
  margin-top: 4px !important;
  color: var(--th-muted);
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .12em;
}

.th-site-nav {
  flex: 1 1 auto;
}

.th-site-nav .wp-block-navigation__container {
  gap: 24px;
}

.th-site-nav .wp-block-navigation-item__content {
  position: relative;
  padding: 27px 0;
  color: #bbb;
  font-family: var(--th-head);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.th-site-nav .wp-block-navigation-item__content::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--th-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--th-ease);
}

.th-site-nav .wp-block-navigation-item__content:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.th-site-header__tools {
  flex: 0 0 auto;
  gap: 8px;
}

.th-header-search {
  margin: 0;
}

.th-header-search .wp-block-search__inside-wrapper {
  border: 1px solid var(--th-line);
  background: #111;
}

.th-header-search .wp-block-search__input {
  width: 140px;
  border: 0;
  background: transparent;
  color: var(--th-text);
  font-size: 11px;
}

.th-header-search .wp-block-search__button {
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--th-dim);
}

.th-header-button .wp-block-button__link {
  min-height: 40px;
  padding: 11px 17px;
  font-size: 10px;
}

.th-hero {
  position: relative;
  min-height: calc(94vh - 74px);
  overflow: hidden;
  border-bottom: 1px solid var(--th-line);
  background: #090909;
}

.th-hero__slides,
.th-hero__slide {
  position: absolute;
  inset: 0;
}

.th-hero__slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity .9s ease, visibility .9s;
}

.th-hero__slide.is-active {
  visibility: visible;
  opacity: 1;
}

.th-hero__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(6, 6, 6, .96) 0%, rgba(6, 6, 6, .79) 43%, rgba(6, 6, 6, .25) 73%, rgba(6, 6, 6, .72) 100%), linear-gradient(0deg, rgba(4, 4, 4, .88) 0%, transparent 48%), var(--th-hero-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.14) brightness(.76);
  transform: scale(1.03);
  transition: transform 8s linear;
}

.th-hero__slide.is-active .th-hero__image {
  transform: scale(1.1);
}

.th-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--th-wide);
  min-height: calc(94vh - 74px);
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 92px 0 78px;
}

.th-hero__counter {
  position: absolute;
  top: 42px;
  left: 0;
  color: var(--th-muted);
  font-family: var(--th-mono);
  font-size: 10px;
  letter-spacing: .14em;
}

.th-hero__counter span {
  color: var(--th-accent);
}

.th-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  color: var(--th-muted);
  font-family: var(--th-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.th-hero__eyebrow span {
  padding: 8px 12px;
  border: 1px solid var(--th-accent);
  color: var(--th-accent);
}

.th-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--th-display);
  font-size: clamp(66px, 9.4vw, 156px);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: .92;
  text-transform: uppercase;
}

.th-hero h1 em,
.th-section-heading h2 em,
.th-related h2 em {
  color: var(--th-accent);
  font-style: normal;
}

.th-hero__content > p {
  max-width: 650px;
  margin: 32px 0 0;
  border-left: 2px solid var(--th-accent);
  padding-left: 20px;
  color: #b6b6b6;
  font-size: clamp(14px, 1.2vw, 17px);
}

.th-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
}

.th-link {
  border-bottom: 1px solid #777;
  padding-bottom: 3px;
  color: #bbb;
  font-family: var(--th-head);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.th-link:hover {
  border-color: var(--th-accent);
  color: var(--th-accent);
}

.th-hero__controls {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - 1440px) / 2));
  bottom: 48px;
  display: flex;
}

.th-hero__controls button,
.th-course__controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(5, 5, 5, .35);
  color: var(--th-text);
  font-size: 18px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.th-hero__controls button:hover,
.th-course__controls button:hover {
  border-color: var(--th-accent);
  background: var(--th-accent);
  color: #080808;
}

.th-hero__progress {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, .08);
}

.th-hero__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--th-accent);
}

.th-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--th-line);
  background: var(--th-accent);
  color: #070707;
}

.th-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: th-ticker 30s linear infinite;
}

.th-ticker__track span {
  padding: 15px 28px;
  font-family: var(--th-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.th-ticker__track i {
  font-style: normal;
}

@keyframes th-ticker {
  to { transform: translateX(-50%); }
}

.th-section,
.th-course,
.th-promo,
.th-newsletter,
.th-related {
  padding: 110px max(32px, calc((100vw - 1440px) / 2));
}

.th-section-heading {
  display: grid;
  max-width: 1440px;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: 80px;
  align-items: end;
  margin: 0 auto 56px;
}

.th-section-heading h2 {
  max-width: 930px;
  margin: 18px 0 0;
  font-family: var(--th-head);
  font-size: clamp(38px, 5vw, 75px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .98;
  text-transform: uppercase;
}

.th-section-heading > p {
  margin: 0;
  border-left: 1px solid var(--th-line);
  padding-left: 24px;
  color: var(--th-dim);
  font-size: 13px;
}

.th-categories {
  background: var(--th-bg);
}

.th-categories__grid {
  display: grid;
  max-width: 1440px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid var(--th-line);
  border-left: 1px solid var(--th-line);
}

.th-category-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid var(--th-line);
  border-bottom: 1px solid var(--th-line);
  background: #0d0d0d;
  transition: background .3s ease, color .3s ease, transform .3s var(--th-ease);
}

.th-category-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--th-accent);
  content: "";
  transition: width .35s var(--th-ease);
}

.th-category-card:hover {
  z-index: 2;
  background: var(--th-surface-2);
  transform: translateY(-5px);
}

.th-category-card:hover::before {
  width: 100%;
}

.th-category-card:only-child {
  grid-column: 1 / -1;
}

.th-category-card:first-child:nth-last-child(2),
.th-category-card:first-child:nth-last-child(2) + .th-category-card {
  grid-column: span 2;
}

.th-category-card__number {
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 9px;
  letter-spacing: .12em;
}

.th-category-card h3 {
  margin: 26px 0 16px;
  font-family: var(--th-head);
  font-size: clamp(27px, 2.2vw, 39px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.th-category-card p {
  margin: 0 0 24px;
  color: var(--th-dim);
  font-size: 12px;
}

.th-category-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #777;
  font-family: var(--th-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.th-category-card footer span:last-child {
  color: var(--th-accent);
  font-size: 17px;
}

.th-course {
  overflow: hidden;
  border-block: 1px solid var(--th-line);
  background: #101010;
}

.th-course__head {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 46px;
}

.th-course__head h2 {
  max-width: 850px;
  margin: 18px 0;
  font-family: var(--th-display);
  font-size: clamp(56px, 7.4vw, 118px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: .92;
  text-transform: uppercase;
}

.th-course__head p {
  max-width: 530px;
  margin: 0;
  color: var(--th-dim);
  font-size: 13px;
}

.th-course__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}

.th-course__viewport {
  width: min(calc(100vw - max(32px, calc((100vw - 1440px) / 2))), 1600px);
  overflow: hidden;
}

.th-course__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-behavior: smooth;
  scrollbar-color: var(--th-accent) #262626;
  scrollbar-width: thin;
}

.th-course-card {
  flex: 0 0 clamp(280px, 29vw, 410px);
  border: 1px solid var(--th-line);
  background: #151515;
  transition: border-color .25s ease, transform .35s var(--th-ease);
}

.th-course-card:hover {
  border-color: #555;
  transform: translateY(-7px);
}

.th-course-card__image {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid var(--th-line);
}

.th-course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(.7);
  transition: filter .4s ease, transform .6s var(--th-ease);
}

.th-course-card:hover img {
  filter: grayscale(.35) contrast(1.05) brightness(.8);
  transform: scale(1.04);
}

.th-course-card__number,
.th-course-card__duration {
  position: absolute;
  top: 15px;
  padding: 5px 8px;
  background: var(--th-accent);
  color: #070707;
  font-family: var(--th-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.th-course-card__number { left: 15px; }
.th-course-card__duration { right: 15px; background: rgba(0, 0, 0, .76); color: #ddd; }

.th-course-card__body {
  display: flex;
  min-height: 265px;
  flex-direction: column;
  padding: 24px;
}

.th-course-card__category,
.th-post-card__category {
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.th-course-card h3 {
  margin: 15px 0 12px;
  font-family: var(--th-head);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.th-course-card p {
  margin: 0 0 20px;
  color: var(--th-dim);
  font-size: 12px;
}

.th-course-card footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--th-line);
  padding-top: 15px;
  color: #777;
  font-family: var(--th-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.th-promo {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  padding-block: 0;
  background: var(--th-accent);
  color: #080808;
}

.th-promo__image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.th-promo__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--th-accent));
  content: "";
}

.th-promo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(.68);
}

.th-promo__image span {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-family: var(--th-display);
  font-size: 29px;
  letter-spacing: .04em;
}

.th-promo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 72px 70px;
}

.th-promo .th-eyebrow {
  color: #080808;
}

.th-promo h2 {
  max-width: 560px;
  margin: 22px 0;
  font-family: var(--th-display);
  font-size: clamp(62px, 7vw, 116px);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}

.th-promo p {
  max-width: 570px;
  margin: 0;
  font-size: 14px;
}

.th-promo small {
  margin-top: 20px;
  font-family: var(--th-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.th-promo .th-button {
  align-self: flex-start;
  margin-top: 34px;
  border-color: #080808;
  background: #080808;
  color: #fff !important;
}

.th-promo .th-button:hover {
  background: transparent;
  color: #080808 !important;
}

.th-materials {
  background: #0c0c0c;
}

.th-post-grid {
  display: grid;
  max-width: 1440px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.th-post-card {
  min-width: 0;
  border: 1px solid var(--th-line);
  background: var(--th-surface);
  transition: border-color .25s ease, transform .35s var(--th-ease);
}

.th-post-card:first-child,
.th-post-card:nth-child(2) {
  grid-column: span 2;
}

.th-post-card:hover {
  border-color: #555;
  transform: translateY(-5px);
}

.th-post-card__media {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--th-line);
  background: #111;
}

.th-post-card:first-child .th-post-card__media,
.th-post-card:nth-child(2) .th-post-card__media {
  height: 300px;
}

.th-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(.72);
  transition: transform .6s var(--th-ease), filter .35s ease;
}

.th-post-card:hover .th-post-card__media img {
  filter: grayscale(.35) contrast(1.05) brightness(.8);
  transform: scale(1.035);
}

.th-post-card__media > span {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--th-accent);
  font-family: var(--th-display);
  font-size: 42px;
  line-height: 1;
}

.th-post-card__body {
  padding: 22px;
}

.th-post-card h3 {
  margin: 13px 0;
  font-family: var(--th-head);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.th-post-card:first-child h3,
.th-post-card:nth-child(2) h3 {
  font-size: 32px;
}

.th-post-card h3 a:hover { color: var(--th-accent); }

.th-post-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--th-dim);
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.th-post-card footer {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  border-top: 1px solid var(--th-line);
  padding-top: 14px;
  color: #777;
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.th-newsletter {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 100px;
  align-items: end;
  background: #efefeb;
  color: #0a0a0a;
}

.th-newsletter .th-eyebrow { color: var(--th-accent); }

.th-newsletter h2 {
  max-width: 840px;
  margin: 20px 0 18px;
  font-family: var(--th-display);
  font-size: clamp(60px, 7vw, 120px);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
}

.th-newsletter p {
  max-width: 590px;
  margin: 0;
  color: #666;
  font-size: 13px;
}

.th-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.th-newsletter input {
  min-width: 0;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  background: transparent;
  padding: 0 18px;
  color: #111;
  font-family: var(--th-body);
  font-size: 14px;
}

.th-newsletter button {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #fff !important;
}

.th-newsletter button:hover {
  color: #0a0a0a !important;
}

.th-newsletter form small {
  grid-column: 1 / -1;
  margin-top: 10px;
  color: #777;
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.th-site-footer {
  border-top: 1px solid var(--th-line);
  background: #080808;
}

.th-site-footer__grid {
  gap: 55px;
  margin-bottom: 0;
  padding: 80px 0 60px;
}

.th-site-footer__grid h4 {
  margin: 0 0 24px;
  color: var(--th-dim);
  font-family: var(--th-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.th-site-footer__grid ul:not(.wp-block-social-links) {
  margin: 0;
  padding: 0;
  list-style: none;
}

.th-site-footer__grid ul:not(.wp-block-social-links) li {
  margin: 0 0 11px;
}

.th-site-footer__grid ul:not(.wp-block-social-links) a {
  color: #aaa;
  font-size: 12px;
}

.th-site-footer__grid ul:not(.wp-block-social-links) a:hover { color: var(--th-accent); }

.th-site-footer__brand p {
  max-width: 430px;
  color: var(--th-dim);
  font-size: 12px;
}

.th-site-footer__brand .wp-block-social-links {
  gap: 16px;
  margin-top: 28px;
}

.th-site-footer__bottom {
  border-top: 1px solid var(--th-line);
  padding: 22px 0;
  color: #666;
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.th-site-footer__bottom p { margin: 0; }

.th-reading-progress {
  position: fixed;
  z-index: 100000;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.th-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--th-accent);
}

.th-article-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--th-line);
  background: radial-gradient(circle at 80% 10%, rgba(255, 77, 0, .11), transparent 25%), linear-gradient(120deg, #111 0%, #080808 70%);
}

.th-article-hero::before {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000);
}

.th-article-hero__inner {
  position: relative;
  z-index: 2;
  width: var(--th-wide);
  margin: auto;
  padding: 44px 0 80px;
}

.th-breadcrumb {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 11px;
  margin-bottom: 72px;
  color: #707070;
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.th-breadcrumb a:hover { color: var(--th-accent); }
.th-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }

.th-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 100px;
  align-items: end;
}

.th-article-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 27px;
  color: var(--th-muted);
  font-family: var(--th-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.th-article-hero__eyebrow span {
  padding: 7px 10px;
  border: 1px solid var(--th-accent);
  color: var(--th-accent);
}

.th-article-hero__eyebrow i { color: var(--th-accent); font-style: normal; }

.th-article-hero h1 {
  max-width: 1020px;
  margin: 0;
  font-family: var(--th-display);
  font-size: clamp(62px, 7.6vw, 122px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: .94;
  text-transform: uppercase;
}

.th-article-hero__grid > div > p {
  max-width: 850px;
  margin: 30px 0 0;
  border-left: 2px solid var(--th-accent);
  padding-left: 20px;
  color: #a9a9a9;
  font-size: 15px;
}

.th-article-meta {
  border-top: 1px solid var(--th-line);
}

.th-article-meta > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--th-line);
  padding: 13px 0;
  color: #6d6d6d;
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.th-article-meta b {
  color: #c8c8c8;
  font-weight: 500;
  text-align: right;
}

.th-article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px) 180px;
  gap: 70px;
  align-items: start;
  padding: 90px 0 110px;
}

.th-toc,
.th-share {
  position: sticky;
  top: 112px;
}

.th-toc__label,
.th-share > p {
  display: block;
  margin: 0 0 18px;
  color: #666;
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.th-toc ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--th-line);
  list-style: none;
}

.th-toc li { border-bottom: 1px solid var(--th-line); }

.th-toc li.level-3 { padding-left: 15px; }

.th-toc a {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  padding: 12px 0;
  color: #858585;
  font-size: 10px;
  line-height: 1.35;
}

.th-toc a span {
  color: var(--th-muted);
  font-family: var(--th-mono);
  font-size: 8px;
}

.th-toc a:hover,
.th-toc a.is-active { color: var(--th-accent); }

.th-toc footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: #666;
  font-family: var(--th-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.th-toc footer b { color: var(--th-accent); }

.th-article-content {
  min-width: 0;
}

.th-article-content > .wp-block-post-content > :first-child {
  margin-top: 0;
  color: #d6d6d6;
  font-size: 18px;
}

.th-article-content .wp-block-post-content p,
.th-page .wp-block-post-content p {
  margin-block: 0 1.45em;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.82;
}

.th-article-content .wp-block-post-content strong { color: #eee; font-weight: 600; }

.th-article-content .wp-block-post-content a {
  border-bottom: 1px solid var(--th-accent);
  color: var(--th-accent);
}

.th-article-content .wp-block-post-content h2 {
  position: relative;
  margin: 80px 0 28px;
  border-top: 1px solid var(--th-line);
  padding: 28px 0 0 58px;
  font-family: var(--th-head);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.03;
  text-transform: uppercase;
}

.th-article-content .wp-block-post-content h2::before {
  position: absolute;
  top: 32px;
  left: 0;
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 10px;
  content: "§";
}

.th-article-content .wp-block-post-content h3 {
  margin: 50px 0 20px;
  font-family: var(--th-head);
  font-size: 29px;
  font-weight: 400;
  text-transform: uppercase;
}

.th-article-content .wp-block-quote {
  margin: 45px 0;
  border: 0;
  border-left: 3px solid var(--th-accent);
  padding: 5px 0 5px 28px;
}

.th-article-content .wp-block-quote p {
  color: #e3e3e3;
  font-family: var(--th-head);
  font-size: 27px;
  line-height: 1.25;
}

.th-article-content .wp-block-image {
  margin: 45px 0;
}

.th-article-content .wp-block-image img {
  width: 100%;
  filter: grayscale(.8) contrast(1.1);
}

.th-article-content figcaption {
  margin-top: 12px;
  color: #6f6f6f;
  font-family: var(--th-mono);
  font-size: 8px;
  letter-spacing: .07em;
  text-align: left;
  text-transform: uppercase;
}

.th-post-tags {
  margin-top: 60px;
  border-top: 1px solid var(--th-line);
  padding-top: 22px;
  color: #777;
  font-family: var(--th-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.th-share__buttons {
  display: grid;
  gap: 8px;
}

.th-share__buttons a,
.th-share__buttons button {
  width: 100%;
  border: 1px solid var(--th-line);
  background: transparent;
  padding: 11px;
  color: #888;
  font-family: var(--th-mono);
  font-size: 8px;
  text-align: left;
  text-transform: uppercase;
}

.th-share__buttons a:hover,
.th-share__buttons button:hover {
  border-color: var(--th-accent);
  color: var(--th-accent);
}

.th-callout {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  margin: 42px 0;
  border: 1px solid var(--th-line);
  border-left: 3px solid var(--th-accent);
  padding: 24px;
  background: #121212;
}

.th-callout__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--th-accent);
  color: #080808;
  font-family: var(--th-display);
  font-size: 27px;
}

.th-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.th-callout p { margin: 0 !important; color: #aaa !important; font-size: 13px !important; }

.th-steps {
  margin: 50px 0;
  border: 1px solid var(--th-line);
  background: #111;
}

.th-steps > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--th-line);
  padding: 18px 22px;
}

.th-steps h3 {
  margin: 0 !important;
  font-family: var(--th-head) !important;
  font-size: 18px !important;
  text-transform: uppercase;
}

.th-steps > header span {
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.th-steps ol { margin: 0; padding: 0; list-style: none; }

.th-steps li {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--th-line);
  padding: 23px;
}

.th-steps li:last-child { border-bottom: 0; }

.th-steps li > span {
  color: var(--th-accent);
  font-family: var(--th-display);
  font-size: 28px;
  line-height: 1;
}

.th-steps li strong {
  display: block;
  margin-bottom: 7px;
  color: #eee;
  font-family: var(--th-head);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.th-steps li p { margin: 0 !important; color: #8f8f8f !important; font-size: 12px !important; }

.th-steps li i {
  padding: 5px 7px;
  border: 1px solid #333;
  color: #777;
  font-family: var(--th-mono);
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
}

.th-related {
  border-block: 1px solid var(--th-line);
  background: #101010;
}

.th-related > header,
.th-related > div {
  max-width: 1440px;
  margin-inline: auto;
}

.th-related h2 {
  margin: 0 0 42px;
  font-family: var(--th-head);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  text-transform: uppercase;
}

.th-related > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--th-line);
  border-left: 1px solid var(--th-line);
}

.th-related-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--th-line);
  border-bottom: 1px solid var(--th-line);
  transition: background .25s ease;
}

.th-related-card:hover { background: #181818; }

.th-related-card > span {
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.th-related-card h3 {
  margin: 20px 0;
  font-family: var(--th-head);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.th-related-card footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  color: #777;
  font-family: var(--th-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.th-related-card footer i { color: var(--th-accent); font-size: 16px; font-style: normal; }

.th-page {
  min-height: 65vh;
  padding: 90px 0 120px;
}

.th-page > .wp-block-post-title {
  margin: 0 auto 55px;
  font-family: var(--th-display);
  font-size: clamp(60px, 8vw, 124px);
  font-weight: 400;
  line-height: .94;
  text-transform: uppercase;
}

.th-archive {
  min-height: 65vh;
  padding-bottom: 110px;
}

.th-archive__hero {
  margin-bottom: 55px;
  padding: 90px 0 55px;
  border-bottom: 1px solid var(--th-line);
}

.th-archive__hero h1 {
  margin: 0;
  font-family: var(--th-display);
  font-size: clamp(62px, 8vw, 128px);
  font-weight: 400;
  line-height: .94;
  text-transform: uppercase;
}

.th-archive__hero p { max-width: 650px; color: var(--th-dim); }

.th-query .wp-block-post-template {
  gap: 20px;
}

.th-query-card {
  height: 100%;
  min-height: 285px;
  border: 1px solid var(--th-line);
  padding: 24px;
  background: var(--th-surface);
}

.th-query-card .wp-block-post-terms {
  color: var(--th-accent);
  font-family: var(--th-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.th-query-card h2 {
  margin: 22px 0 15px;
  font-family: var(--th-head);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.th-query-card .wp-block-post-excerpt {
  color: var(--th-dim);
  font-size: 12px;
}

.th-query-card .wp-block-post-date {
  color: #666;
  font-family: var(--th-mono);
  font-size: 8px;
}

.th-error {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  justify-content: center;
  padding: 90px 32px;
}

.th-error h1 {
  margin: 0;
  color: var(--th-accent);
  font-family: var(--th-display);
  font-size: clamp(140px, 25vw, 350px);
  font-weight: 400;
  line-height: .65;
}

.th-error h1 span { color: var(--th-text); }
.th-error h2 { margin: 50px 0 10px; font-size: 40px; text-transform: uppercase; }
.th-error p { color: var(--th-dim); }

.th-cursor {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-radius: 50%;
  background: var(--th-accent);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}

.th-cursor.is-hover { width: 30px; height: 30px; background: transparent; border: 1px solid var(--th-accent); }

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.has-th-cursor,
  body.has-th-cursor a,
  body.has-th-cursor button,
  body.has-th-cursor input { cursor: none; }
}

@media (max-width: 1180px) {
  .th-site-nav { display: none; }
  .th-site-header__tools { margin-left: auto; }
  .th-categories__grid { grid-template-columns: repeat(3, 1fr); }
  .th-post-grid { grid-template-columns: repeat(2, 1fr); }
  .th-article-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 48px; }
  .th-share { display: none; }
  .th-related > div { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --th-wide: calc(100vw - 40px); }
  .admin-bar .th-site-header { top: 46px; }
  .th-header-search .wp-block-search__input,
  .th-header-button { display: none; }
  .th-hero,
  .th-hero__content { min-height: 760px; }
  .th-hero__content { padding-top: 110px; }
  .th-section,
  .th-course,
  .th-promo,
  .th-newsletter,
  .th-related { padding: 80px 20px; }
  .th-section-heading { grid-template-columns: 1fr; gap: 25px; }
  .th-section-heading > p { max-width: 640px; }
  .th-categories__grid { grid-template-columns: repeat(2, 1fr); }
  .th-promo { grid-template-columns: 1fr; padding: 0; }
  .th-promo__image { min-height: 420px; }
  .th-promo__image::after { background: linear-gradient(0deg, var(--th-accent), transparent 55%); }
  .th-promo__content { padding: 55px 30px 70px; }
  .th-newsletter { grid-template-columns: 1fr; gap: 45px; }
  .th-article-hero__grid { grid-template-columns: 1fr; gap: 55px; }
  .th-breadcrumb { margin-bottom: 50px; }
  .th-article-layout { grid-template-columns: 1fr; padding: 65px 0 90px; }
  .th-toc { position: static; }
  .th-toc ol { columns: 2; column-gap: 35px; }
  .th-toc li { break-inside: avoid; }
  .th-site-footer__grid { flex-wrap: wrap !important; }
  .th-site-footer__grid > .wp-block-column { flex-basis: calc(33.333% - 40px) !important; }
  .th-site-footer__grid > .th-site-footer__brand { flex-basis: 100% !important; }
}

@media (max-width: 620px) {
  :root { --th-wide: calc(100vw - 28px); }
  .th-site-header,
  .th-site-header__inner { height: 64px; }
  .th-brand__title a { font-size: 21px; }
  .th-brand__tagline { display: none; }
  .th-site-header__tools { display: none !important; }
  .th-site-nav { display: flex; justify-content: flex-end; }
  .th-site-nav .wp-block-navigation__responsive-container-open { display: flex; }
  .th-hero,
  .th-hero__content { min-height: calc(100svh - 64px); }
  .th-hero__content { justify-content: flex-end; padding: 100px 0 90px; }
  .th-hero__counter { top: 25px; }
  .th-hero__eyebrow { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
  .th-hero h1 { font-size: clamp(56px, 20vw, 90px); }
  .th-hero__content > p { margin-top: 24px; font-size: 13px; }
  .th-hero__actions { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 27px; }
  .th-hero__controls { right: 14px; bottom: 18px; }
  .th-hero__controls button { width: 42px; height: 42px; }
  .th-section,
  .th-course,
  .th-newsletter,
  .th-related { padding: 65px 14px; }
  .th-section-heading { margin-bottom: 38px; }
  .th-section-heading h2 { font-size: 38px; }
  .th-section-heading > p { border-left: 0; padding-left: 0; }
  .th-categories__grid,
  .th-post-grid,
  .th-related > div { grid-template-columns: 1fr; }
  .th-category-card { min-height: 235px; }
  .th-course__head h2 { font-size: 58px; }
  .th-course__controls { position: static; margin-top: 25px; }
  .th-course__viewport { width: calc(100vw - 14px); }
  .th-course-card { flex-basis: 84vw; }
  .th-promo__image { min-height: 310px; }
  .th-promo h2 { font-size: 62px; }
  .th-post-card:first-child,
  .th-post-card:nth-child(2) { grid-column: span 1; }
  .th-post-card:first-child .th-post-card__media,
  .th-post-card:nth-child(2) .th-post-card__media { height: 220px; }
  .th-newsletter h2 { font-size: 58px; }
  .th-newsletter form { grid-template-columns: 1fr; gap: 8px; }
  .th-newsletter input { min-height: 52px; }
  .th-article-hero__inner { padding: 32px 0 55px; }
  .th-breadcrumb { margin-bottom: 38px; }
  .th-article-hero h1 { font-size: 58px; }
  .th-article-hero__grid > div > p { font-size: 13px; }
  .th-article-layout { gap: 45px; }
  .th-toc ol { columns: 1; }
  .th-article-content .wp-block-post-content h2 { margin-top: 58px; padding-left: 36px; font-size: 34px; }
  .th-callout { grid-template-columns: 36px 1fr; gap: 16px; padding: 18px; }
  .th-callout__icon { width: 34px; height: 34px; font-size: 22px; }
  .th-steps li { grid-template-columns: 34px 1fr; gap: 12px; padding: 18px; }
  .th-steps li i { display: none; }
  .th-site-footer__grid { gap: 32px; padding-inline: 14px; }
  .th-site-footer__grid > .wp-block-column { flex-basis: calc(50% - 20px) !important; }
  .th-site-footer__bottom { padding-inline: 14px; }
}

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