@font-face {
  font-family: "Geist";
  src: url("fonts/Geist-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("fonts/GeistMono-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #070708;
  --surface: #0c0c0e;
  --surface-raised: #111114;
  --ink: #f1f1ed;
  --ink-soft: #c7c6c0;
  --muted: #92918a;
  --faint: #62615c;
  --warm: #d2c1a6;
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(255, 255, 255, 0.2);
  --focus: #f1f1ed;
  --cursor-ink: #f2f2ef;
  --sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --page: min(100% - 48px, 1240px);
  --reading: min(100% - 48px, 700px);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  min-height: 100%;
  overflow-x: hidden;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 7%, rgba(210, 193, 166, 0.045), transparent 26rem),
    var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(241, 241, 237, 0.12);
}

button {
  color: inherit;
  font: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(241, 241, 237, 0.12);
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 470;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

time {
  font-variant-numeric: tabular-nums;
}

.theo-site :focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--focus);
  outline-offset: 5px;
}

.theo-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(calc(-100% - 24px));
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  font: 500 12px/1 var(--mono);
  transition: transform 160ms var(--ease);
}

.theo-skip:focus {
  transform: translateY(0);
}

.theo-shell,
.theo-header,
.theo-footer {
  width: var(--page);
  margin-inline: auto;
}

#arbeitsweise,
#essays {
  scroll-margin-top: 32px;
}

.theo-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.theo-wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font: 520 13px/1 var(--mono);
  letter-spacing: -0.035em;
}

.theo-wordmark span {
  color: var(--muted);
  font-weight: 400;
}

.theo-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font: 430 11px/1 var(--mono);
}

.theo-header nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 160ms var(--ease);
}

.theo-header nav a:hover,
.theo-header nav a:focus-visible {
  color: var(--ink);
}

.theo-hero {
  position: relative;
  min-height: min(850px, calc(100svh - 66px));
  border-bottom: 1px solid var(--line);
}

.theo-hero__inner {
  display: grid;
  min-height: min(850px, calc(100svh - 66px));
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  padding-block: clamp(72px, 10vh, 112px);
}

.theo-kicker,
.theo-label,
.theo-essay-meta,
.theo-article__eyebrow {
  margin-bottom: 22px;
  color: var(--muted);
  font: 480 10px/1.3 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theo-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theo-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 4px rgba(210, 193, 166, 0.08);
  content: "";
}

.theo-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 4.2vw, 4.25rem);
  line-height: 1;
}

.theo-hero__lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.theo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.theo-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  color: var(--bg);
  font: 500 11px/1 var(--mono);
  transition:
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    color 160ms var(--ease),
    transform 160ms var(--ease);
}

.theo-button--quiet {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.theo-button:hover,
.theo-button:focus-visible {
  transform: translateY(-2px);
}

.theo-button--quiet:hover,
.theo-button--quiet:focus-visible {
  color: var(--ink);
}

.theo-hero__artifact {
  position: relative;
  margin: 0;
}

.theo-hero__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.6 / 1;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.theo-hero__frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.theo-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.theo-hero__artifact:hover img {
  filter: contrast(1.04);
  transform: scale(1.012);
}

.theo-hero__artifact figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 13px;
  color: var(--faint);
  font: 430 9px/1.5 var(--mono);
}

.theo-trace {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: right;
}

.theo-trace:hover,
.theo-trace:focus-visible {
  color: var(--ink-soft);
}

.theo-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  padding-block: clamp(92px, 12vw, 156px);
  border-bottom: 1px solid var(--line);
}

.theo-intro__copy h2,
.theo-essays__heading h2,
.theo-note__copy h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.04;
}

.theo-intro__copy > p,
.theo-essays__heading > p,
.theo-note__copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.theo-loop {
  grid-column: 2;
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.theo-loop li {
  display: grid;
  grid-template-columns: 42px minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.theo-loop__number {
  color: var(--faint);
  font: 430 10px/1 var(--mono);
}

.theo-loop strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.theo-loop p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.theo-essays {
  padding-block: clamp(92px, 12vw, 156px);
  border-bottom: 1px solid var(--line);
}

.theo-essays__heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(42px, 8vw, 120px);
  margin-bottom: clamp(50px, 7vw, 84px);
}

.theo-essays__heading > div {
  grid-column: 2;
}

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

.theo-essay-list a {
  display: grid;
  min-height: 132px;
  grid-template-columns: 150px minmax(0, 1fr) 30px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 180ms var(--ease), padding 240ms var(--ease);
}

.theo-essay-list a:hover,
.theo-essay-list a:focus-visible {
  padding-inline: 10px;
  color: var(--ink);
}

.theo-essay-list time,
.theo-essay-list__kind {
  color: var(--muted);
  font: 440 10px/1.35 var(--mono);
}

.theo-essay-list__title {
  display: grid;
  gap: 8px;
}

.theo-essay-list strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 470;
  letter-spacing: -0.035em;
}

.theo-essay-list small {
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.theo-arrow {
  color: var(--muted);
  font: 400 14px/1 var(--mono);
  transition: color 160ms var(--ease), transform 160ms var(--ease);
}

.theo-essay-list a:hover .theo-arrow,
.theo-essay-list a:focus-visible .theo-arrow {
  color: var(--ink);
  transform: translate(2px, -2px);
}

.theo-note {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(42px, 8vw, 120px);
  padding-block: clamp(86px, 10vw, 128px);
}

.theo-note__copy {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
}

.theo-note__copy h2 {
  margin-bottom: 0;
}

.theo-margin-note {
  padding-left: 18px;
  border-left: 1px solid var(--line-strong);
}

.theo-margin-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font: 470 10px/1 var(--mono);
}

.theo-margin-note p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.theo-margin-note time {
  color: var(--faint);
  font: 420 9px/1 var(--mono);
}

.theo-footer {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 430 10px/1.5 var(--mono);
}

.theo-footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.theo-footer a {
  transition: color 160ms var(--ease);
}

.theo-footer a:hover,
.theo-footer a:focus-visible {
  color: var(--ink);
}

.theo-easter {
  position: relative;
}

.theo-easter summary {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--faint);
  list-style: none;
}

.theo-easter summary::-webkit-details-marker {
  display: none;
}

.theo-easter p {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(280px, calc(100vw - 48px));
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font: 420 10px/1.55 var(--mono);
}

.theo-archive-heading,
.theo-archive,
.theo-article {
  width: var(--page);
  margin-inline: auto;
}

.theo-archive-heading {
  display: grid;
  min-height: 52vh;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(42px, 8vw, 120px);
  align-content: end;
  padding-block: clamp(84px, 12vw, 150px) 70px;
  border-bottom: 1px solid var(--line);
}

.theo-archive-heading > div {
  grid-column: 2;
}

.theo-archive-heading h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  line-height: 0.94;
}

.theo-archive-heading p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
}

.theo-archive {
  padding-block: 0 clamp(100px, 14vw, 170px);
}

.theo-article {
  padding-block: clamp(80px, 10vw, 140px) clamp(110px, 14vw, 180px);
}

.theo-article__header {
  display: grid;
  grid-template-columns: minmax(150px, 0.33fr) minmax(0, 0.67fr);
  gap: clamp(40px, 7vw, 100px);
  padding-bottom: clamp(70px, 9vw, 110px);
  border-bottom: 1px solid var(--line);
}

.theo-article__meta {
  color: var(--muted);
  font: 430 10px/1.8 var(--mono);
}

.theo-article__meta span {
  display: block;
}

.theo-article__heading h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 0.97;
}

.theo-lede {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.theo-article__layout {
  display: grid;
  grid-template-columns: minmax(150px, 0.33fr) minmax(0, 0.67fr);
  gap: clamp(40px, 7vw, 100px);
  padding-top: clamp(70px, 9vw, 110px);
}

.theo-article__rail {
  color: var(--faint);
  font: 420 9px/1.6 var(--mono);
}

.theo-article__rail p {
  max-width: 190px;
}

.theo-article__body {
  max-width: 740px;
  color: #d1d0ca;
  font-size: clamp(1.03rem, 1.25vw, 1.13rem);
  line-height: 1.78;
}

.theo-article__body > p:first-child {
  color: var(--ink);
  font-size: 1.16em;
  line-height: 1.65;
}

.theo-article__body h2 {
  margin: 4.8rem 0 1.25rem;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.theo-article__body h3 {
  margin: 3.2rem 0 1rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.theo-article__body p,
.theo-article__body ul,
.theo-article__body ol,
.theo-article__body table,
.theo-article__body blockquote,
.theo-article__body .article-callout {
  margin-bottom: 1.65rem;
}

.theo-article__body ul,
.theo-article__body ol {
  padding-left: 1.3rem;
}

.theo-article__body li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}

.theo-article__body strong {
  color: var(--ink);
  font-weight: 570;
}

.theo-article__body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.theo-article__body blockquote {
  margin: 3rem 0;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--warm);
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.theo-article__body blockquote p {
  margin: 0;
}

.theo-article__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.theo-article__body th,
.theo-article__body td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.theo-article__body th {
  color: var(--ink);
  font: 500 10px/1.4 var(--mono);
  text-transform: uppercase;
}

.article-callout {
  margin-block: 2.8rem;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.article-callout--claim {
  border-left-color: var(--warm);
}

.article-callout__label {
  margin-bottom: 12px !important;
  color: var(--muted);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-callout > :last-child {
  margin-bottom: 0;
}

.footnotes {
  margin-top: 5rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footnotes-sep {
  display: none;
}

.footnote-backref {
  font-family: var(--mono);
}

.theo-article__end {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 430 10px/1.5 var(--mono);
}

.theo-article__end a:hover,
.theo-article__end a:focus-visible {
  color: var(--ink);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.theo-js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
}

.theo-js [data-reveal] {
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.hero-drag-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 32px;
  height: 32px;
  contain: layout paint style;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-40px, -40px, 0) translate(-50%, -50%);
  transition: opacity 100ms var(--ease-out);
  will-change: transform, opacity;
}

.hero-drag-cursor__shape {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 18px;
  height: 18px;
  transition: transform 120ms var(--ease-out);
}

.hero-drag-cursor__shape::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cursor-ink);
  box-shadow: 9px 0 0 var(--cursor-ink), 0 9px 0 var(--cursor-ink), 9px 9px 0 var(--cursor-ink);
  content: "";
  filter: drop-shadow(0 0 1px rgba(7, 7, 8, 0.9));
}

.hero-drag-cursor.is-visible {
  opacity: 1;
}

.hero-drag-cursor.is-pressed .hero-drag-cursor__shape {
  transform: rotate(45deg) scale(0.68);
}

.deck-cursor-ready,
.deck-cursor-ready * {
  cursor: none !important;
}

@media (max-width: 900px) {
  .theo-hero {
    min-height: auto;
  }

  .theo-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 84px;
  }

  .theo-hero__copy {
    max-width: 700px;
  }

  .theo-hero__artifact {
    width: min(100%, 720px);
  }

  .theo-intro,
  .theo-essays__heading,
  .theo-note,
  .theo-archive-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theo-intro__copy,
  .theo-loop,
  .theo-essays__heading > div,
  .theo-note__copy,
  .theo-archive-heading > div {
    grid-column: 1;
  }

  .theo-article__header,
  .theo-article__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .theo-article__rail {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(100% - 40px, 1240px);
    --reading: min(100% - 40px, 700px);
  }

  .theo-header {
    min-height: 60px;
  }

  .theo-wordmark span {
    display: none;
  }

  .theo-header nav {
    gap: 18px;
  }

  .theo-header nav a:last-child {
    display: none;
  }

  .theo-hero__inner {
    gap: 46px;
    padding-block: 68px 76px;
  }

  .theo-kicker {
    margin-bottom: 18px;
  }

  .theo-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 10.6vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .theo-hero__lede {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .theo-actions {
    align-items: stretch;
  }

  .theo-button {
    flex: 1 1 auto;
  }

  .theo-button--quiet {
    flex: 0 1 auto;
  }

  .theo-hero__frame img {
    object-position: 62% center;
  }

  .theo-hero__frame {
    aspect-ratio: 4 / 3;
  }

  .theo-hero__artifact figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .theo-trace {
    min-height: 44px;
    text-align: left;
  }

  .theo-intro,
  .theo-essays,
  .theo-note {
    padding-block: 76px;
  }

  .theo-intro__copy h2,
  .theo-essays__heading h2,
  .theo-note__copy h2 {
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  .theo-loop {
    margin-top: 36px;
  }

  .theo-loop li {
    grid-template-columns: 30px 1fr;
    gap: 8px 14px;
    padding: 21px 0;
  }

  .theo-loop p {
    grid-column: 2;
    font-size: 14px;
  }

  .theo-essays__heading {
    margin-bottom: 44px;
  }

  .theo-essay-list a {
    min-height: 0;
    grid-template-columns: 1fr 22px;
    gap: 12px;
    padding-block: 24px;
  }

  .theo-essay-list a:hover,
  .theo-essay-list a:focus-visible {
    padding-inline: 0;
  }

  .theo-essay-list time {
    display: block;
  }

  .theo-essay-list__meta {
    grid-column: 1 / -1;
  }

  .theo-essay-list__title {
    gap: 9px;
  }

  .theo-essay-list strong {
    font-size: 1.35rem;
    line-height: 1.16;
  }

  .theo-note__copy {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .theo-footer {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 34px calc(34px + env(safe-area-inset-bottom));
  }

  .theo-footer__links {
    width: 100%;
    justify-content: space-between;
  }

  .theo-archive-heading {
    min-height: 42vh;
    padding-block: 80px 52px;
  }

  .theo-archive-heading h1 {
    font-size: 3.8rem;
  }

  .theo-archive {
    padding-bottom: 100px;
  }

  .theo-article {
    padding-block: 72px 110px;
  }

  .theo-article__header {
    gap: 28px;
    padding-bottom: 58px;
  }

  .theo-article__heading h1 {
    font-size: clamp(2.35rem, 10.6vw, 3.1rem);
    line-height: 1;
  }

  .theo-article__layout {
    padding-top: 58px;
  }

  .theo-article__body {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .theo-article__body h2 {
    margin-top: 3.8rem;
    font-size: 2rem;
  }

  .theo-article__body blockquote {
    padding-left: 18px;
    font-size: 1.35rem;
  }

  .theo-article__body table {
    display: block;
    white-space: normal;
  }

  .theo-article__body thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .theo-article__body tbody {
    display: grid;
  }

  .theo-article__body tr {
    display: grid;
    padding-block: 14px;
    border-bottom: 1px solid var(--line);
  }

  .theo-article__body td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 5px 0;
    border: 0;
    overflow-wrap: anywhere;
  }

  .theo-article__body td:first-child {
    width: auto;
    color: var(--ink);
  }

  .theo-article__body td::before {
    color: var(--faint);
    font: 500 9px/1.45 var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .theo-article__body td:nth-child(1)::before {
    content: "Spur";
  }

  .theo-article__body td:nth-child(2)::before {
    content: "Was sie festhält";
  }

  .theo-article__body td:nth-child(3)::before {
    content: "Tragweite";
  }

  .article-callout {
    margin-inline: -8px;
    padding: 18px;
  }

  .theo-article__end {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 340px) {
  :root {
    --page: min(100% - 32px, 1240px);
  }

  .theo-header nav {
    gap: 12px;
  }

  .theo-header nav a:nth-child(2) {
    display: none;
  }

  .theo-hero h1 {
    font-size: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .theo-js [data-reveal]:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
