:root {
  --paper: #f3f0e8;
  --paper-raised: #faf8f2;
  --ink: #11110f;
  --muted: #696860;
  --line: #cfcbc0;
  --line-strong: #9f9b90;
  --blue: #2458ff;
  --blue-soft: #dfe6ff;
  --code: #f6f8fa;
  --code-raised: #ffffff;
  --code-border: #d0d7de;
  --code-text: #24292f;
  --code-muted: #6e7781;
  --header-bg: rgba(243, 240, 232, 0.88);
  --shadow: 0 18px 50px rgba(32, 31, 27, 0.1);
  --shell: min(1380px, calc(100vw - 64px));
  --shell-narrow: min(820px, calc(100vw - 48px));
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

[data-theme="dark"] {
  --paper: #111210;
  --paper-raised: #181917;
  --ink: #f1eee5;
  --muted: #aaa89f;
  --line: #343530;
  --line-strong: #5e6058;
  --blue: #5c7cff;
  --blue-soft: #202a53;
  --code: #0d1117;
  --code-raised: #161b22;
  --code-border: #30363d;
  --code-text: #e6edf3;
  --code-muted: #8b949e;
  --header-bg: rgba(17, 18, 16, 0.88);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.search-open,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

.shell {
  margin-inline: auto;
  width: var(--shell);
}

.shell-narrow {
  margin-inline: auto;
  width: var(--shell-narrow);
}

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

.skip-link {
  background: var(--blue);
  color: #fff;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  transition: top 0.2s;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  letter-spacing: -0.04em;
  width: 36px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"]::after {
  background: var(--blue);
  border-radius: 50%;
  bottom: -11px;
  content: "";
  height: 4px;
  left: calc(50% - 2px);
  position: absolute;
  width: 4px;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  display: inline-flex;
  height: 38px;
  justify-content: center;
}

.ui-icon {
  display: inline-block;
  flex: 0 0 auto;
  height: 18px;
  position: relative;
  width: 18px;
}

.ui-search::before {
  border: 1.7px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 1px;
  position: absolute;
  top: 1px;
  width: 9px;
}

.ui-search::after {
  background: currentColor;
  content: "";
  height: 1.7px;
  left: 11px;
  position: absolute;
  top: 12px;
  transform: rotate(45deg);
  transform-origin: left center;
  width: 6px;
}

.ui-theme {
  border: 1.7px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
}

.ui-theme::after {
  background: currentColor;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.ui-share::before {
  border-right: 1.7px solid currentColor;
  border-top: 1.7px solid currentColor;
  content: "";
  height: 8px;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 8px;
}

.ui-share::after {
  background: currentColor;
  content: "";
  height: 1.7px;
  left: 3px;
  position: absolute;
  top: 11px;
  transform: rotate(-45deg);
  transform-origin: left center;
  width: 15px;
}

.ui-link::before,
.ui-link::after {
  border: 1.7px solid currentColor;
  border-radius: 999px;
  content: "";
  height: 6px;
  position: absolute;
  transform: rotate(-42deg);
  width: 11px;
}

.ui-link::before {
  left: 0;
  top: 8px;
}

.ui-link::after {
  right: 0;
  top: 3px;
}

.search-trigger {
  gap: 10px;
  padding: 0 10px 0 12px;
}

.search-trigger kbd {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  padding: 2px 5px;
}

.theme-toggle {
  width: 38px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 38px;
  padding: 9px;
  width: 38px;
}

.menu-toggle > span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 1px;
  margin: 5px 0;
  transition: transform 0.2s;
  width: 20px;
}

.mobile-nav {
  display: none;
}

.eyebrow {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  gap: 9px;
  letter-spacing: 0.11em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.status-pulse {
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--blue-soft);
  display: inline-block;
  height: 7px;
  width: 7px;
}

.hero {
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 650px;
  padding-bottom: 72px;
  padding-top: 88px;
}

.hero-copy {
  align-self: center;
}

.hero h1 {
  font-size: clamp(54px, 6.7vw, 104px);
  font-weight: 720;
  letter-spacing: -0.072em;
  line-height: 0.93;
  margin: 0;
  max-width: 850px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  margin: 38px 0 0;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 42px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 26px;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--blue);
  color: #fff;
}

.text-link {
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 0;
}

.text-link span {
  color: var(--blue);
  margin-left: 8px;
}

.signal-card {
  align-self: stretch;
  background: #11110f;
  color: #f3f0e8;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.signal-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.signal-top {
  align-items: center;
  border-bottom: 1px solid rgba(243, 240, 232, 0.2);
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding: 18px 20px;
  text-transform: uppercase;
}

.signal-index {
  color: #a9b8ff;
}

.signal-visual {
  background-image: radial-gradient(rgba(243, 240, 232, 0.22) 1px, transparent 1px);
  background-size: 17px 17px;
  flex: 1;
  min-height: 180px;
  position: relative;
}

.signal-node {
  background: var(--blue);
  border-radius: 50%;
  height: 9px;
  position: absolute;
  width: 9px;
}

.node-one {
  left: 17%;
  top: 29%;
}

.node-two {
  left: 61%;
  top: 60%;
}

.node-three {
  right: 12%;
  top: 20%;
}

.signal-line {
  border-left: 2px solid var(--blue);
  border-top: 2px solid var(--blue);
  display: block;
  position: absolute;
}

.line-one {
  height: 33%;
  left: 18%;
  top: 31%;
  width: 44%;
}

.line-two {
  height: 41%;
  right: 13%;
  top: 22%;
  width: 26%;
}

.code-fragment {
  bottom: 12%;
  color: #7d98ff;
  font-family: var(--mono);
  font-size: 20px;
  position: absolute;
  right: 15%;
}

.signal-content {
  border-top: 1px solid rgba(243, 240, 232, 0.2);
  padding: 24px;
  position: relative;
}

.signal-content > span:first-child {
  color: #c1bfb8;
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.signal-content h2 {
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: 0;
  padding-right: 38px;
}

.signal-arrow {
  bottom: 24px;
  color: #7891ff;
  font-size: 23px;
  position: absolute;
  right: 24px;
}

.topics-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.topics-inner {
  align-items: center;
  display: flex;
  min-height: 70px;
}

.topics-label {
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding-right: 34px;
  text-transform: uppercase;
}

.topic-ticker {
  display: flex;
  flex: 1;
  justify-content: space-around;
}

.topic-ticker span {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 650;
  gap: 9px;
}

.topic-ticker i {
  border: 1px solid var(--blue);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  width: 7px;
}

.articles-section {
  padding-bottom: 130px;
  padding-top: 120px;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(46px, 5vw, 76px);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 5px;
  max-width: 380px;
}

.filter-bar {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 7px;
  margin-bottom: 34px;
  overflow-x: auto;
  padding-bottom: 17px;
  scrollbar-width: none;
}

.filter-chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 650;
  padding: 9px 16px;
  transition: 0.2s;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.filter-chip sup {
  font-family: var(--mono);
  font-size: 8px;
  margin-left: 4px;
}

.articles-grid {
  display: grid;
  gap: 42px 24px;
  grid-template-columns: repeat(3, 1fr);
}

.post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.post-card:nth-child(n + 4) {
  contain-intrinsic-size: 460px;
  content-visibility: auto;
}

.post-card[hidden] {
  display: none;
}

.post-card-wide {
  grid-column: span 1;
}

.post-card-media {
  aspect-ratio: 16 / 10;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  display: block;
  overflow: hidden;
  position: relative;
}

.post-card-media::after {
  background: var(--blue);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 100%;
  top: 0;
  transition: right 0.35s ease;
}

.post-card:hover .post-card-media::after {
  right: 0;
}

.post-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  width: 100%;
}

.post-card:hover .post-card-media img {
  transform: scale(1.025);
}

.post-number {
  background: var(--ink);
  bottom: 0;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  padding: 7px 9px;
  position: absolute;
  right: 0;
}

.generated-cover {
  background-color: var(--paper-raised);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
}

.generated-cover::before {
  background: var(--blue);
  content: "";
  height: 44%;
  left: 11%;
  position: absolute;
  top: 16%;
  width: 2px;
}

.cover-1::before {
  left: auto;
  right: 19%;
  transform: rotate(28deg);
}

.cover-2::before {
  height: 2px;
  left: 9%;
  top: 62%;
  width: 58%;
}

.cover-3::before {
  border: 2px solid var(--blue);
  background: transparent;
  height: 43%;
  left: 17%;
  top: 20%;
  width: 43%;
}

.cover-code {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  left: 18%;
  max-width: 65%;
  overflow: hidden;
  padding: 9px 12px;
  position: absolute;
  text-overflow: ellipsis;
  top: 39%;
  white-space: nowrap;
}

.cover-orbit {
  border: 1px solid var(--blue);
  border-radius: 50%;
  height: 24px;
  position: absolute;
  right: 14%;
  top: 18%;
  width: 24px;
}

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 20px;
}

.post-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-meta span {
  color: var(--blue);
  font-weight: 700;
}

.post-card h3 {
  font-size: clamp(21px, 2vw, 29px);
  letter-spacing: -0.04em;
  line-height: 1.16;
  margin: 15px 0 10px;
}

.post-card h3 a {
  background-image: linear-gradient(var(--blue), var(--blue));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.3s;
}

.post-card:hover h3 a {
  background-size: 100% 2px;
}

.post-card-body > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.post-card-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 13px;
}

.post-card-footer > span {
  color: var(--muted);
  font-family: var(--mono);
}

.post-card-footer a {
  font-weight: 750;
}

.post-card-footer a span {
  color: var(--blue);
  margin-left: 4px;
}

.no-results {
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  padding: 40px;
  text-align: center;
}

.newsletter {
  align-items: end;
  background: #2458ff;
  color: #fff;
  display: grid;
  gap: 50px;
  grid-template-columns: 0.5fr 1.5fr auto;
  margin-bottom: 110px;
  padding: 58px 62px;
}

.newsletter-kicker {
  align-self: start;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 1;
  text-transform: uppercase;
}

.newsletter h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0;
}

.newsletter p {
  font-size: 13px;
  margin: 21px 0 0;
  max-width: 580px;
  opacity: 1;
}

.button-light {
  background: #fff;
  color: #111;
  white-space: nowrap;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 66px;
  padding-top: 92px;
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.page-hero > p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0 0;
  max-width: 610px;
}

.back-link {
  color: var(--blue);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 28px;
}

.taxonomy-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 120px;
  padding-top: 52px;
}

.taxonomy-card {
  border: 1px solid var(--line);
  margin: 0 -1px -1px 0;
  min-height: 230px;
  padding: 26px;
  position: relative;
  transition: background 0.25s, color 0.25s;
}

.taxonomy-card:hover {
  background: var(--ink);
  color: var(--paper);
}

.taxonomy-card > span,
.taxonomy-card > p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.taxonomy-card h2 {
  font-size: 29px;
  letter-spacing: -0.04em;
  margin: 65px 0 5px;
}

.taxonomy-card > i {
  color: var(--blue);
  font-size: 22px;
  font-style: normal;
  position: absolute;
  right: 24px;
  top: 22px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 120px;
  padding-top: 52px;
}

.tag-cloud a {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 650;
  gap: 8px;
  padding: 12px 18px;
}

.tag-cloud a:hover {
  background: var(--ink);
  color: var(--paper);
}

.tag-cloud sup {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
}

.archive-list,
.simple-post-list {
  padding-bottom: 120px;
  padding-top: 60px;
}

.archive-year {
  display: grid;
  grid-template-columns: 140px 1fr;
  margin-bottom: 60px;
}

.archive-year h2 {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 18px;
  margin: 20px 0;
}

.archive-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-column: 2;
  grid-template-columns: 70px 1fr auto;
  padding: 20px 0;
}

.archive-year h2 + .archive-row {
  grid-column: 2;
}

.archive-row time,
.archive-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.archive-row strong {
  font-size: 16px;
}

.archive-row:hover strong {
  color: var(--blue);
}

.simple-post-list > a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 120px 1fr auto;
  padding: 26px 0;
}

.simple-post-list time,
.simple-post-list > a > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.simple-post-list h2 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 0;
}

.simple-post-list a:hover h2 {
  color: var(--blue);
}

.reading-progress {
  background: transparent;
  height: 3px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 300;
}

.reading-progress span {
  background: var(--blue);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.article-header {
  padding-bottom: 70px;
  padding-top: 74px;
}

.breadcrumbs {
  color: var(--muted);
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 9px;
  letter-spacing: 0.06em;
  margin-bottom: 44px;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.article-tags a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.article-header h1 {
  font-size: clamp(43px, 6vw, 80px);
  letter-spacing: -0.064em;
  line-height: 0.98;
  margin: 0;
}

.article-deck {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 28px 0 36px;
}

.article-byline {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  padding-top: 24px;
}

.article-byline img {
  border-radius: 50%;
  margin-right: 12px;
}

.article-byline > div:not(.byline-meta) {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.article-byline strong {
  font-size: 12px;
}

.article-byline div span {
  color: var(--muted);
  font-size: 10px;
}

.byline-meta {
  color: var(--muted);
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  gap: 9px;
  margin-left: auto;
}

.article-hero {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  margin-bottom: 74px;
  max-height: 700px;
  overflow: hidden;
}

.article-hero img {
  height: 100%;
  max-height: 700px;
  object-fit: contain;
  width: 100%;
}

.article-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(150px, 220px) minmax(0, 760px) 52px;
  justify-content: center;
}

.article-aside,
.article-share {
  min-width: 0;
}

.toc-wrap {
  position: sticky;
  top: 112px;
}

.toc-label,
.article-share > span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.toc {
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.toc a {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin-left: -1px;
  padding: 7px 0 7px 14px;
}

.toc a:hover,
.toc a.is-active {
  border-left: 2px solid var(--blue);
  color: var(--ink);
}

.toc a.toc-h3 {
  padding-left: 26px;
}

.article-share {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 112px;
}

.article-share button {
  background: transparent;
  border: 1px solid var(--line);
  font-size: 18px;
  height: 42px;
  margin-bottom: 7px;
  width: 42px;
}

.article-share button:hover {
  background: var(--ink);
  color: var(--paper);
}

.article-share button.is-copied .ui-icon {
  display: none;
}

.article-share button.is-copied::after {
  content: "✓";
}

.article-content {
  font-size: 17px;
  line-height: 1.78;
  min-width: 0;
}

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

.article-content h2,
.article-content h3,
.prose-page h2,
.prose-page h3 {
  letter-spacing: -0.035em;
  line-height: 1.2;
  scroll-margin-top: 110px;
}

.article-content h2,
.prose-page h2 {
  border-top: 1px solid var(--line);
  font-size: 34px;
  margin: 62px 0 24px;
  padding-top: 34px;
}

.article-content h3,
.prose-page h3 {
  font-size: 24px;
  margin: 44px 0 18px;
}

.article-content p,
.article-content ul,
.article-content ol,
.prose-page p,
.prose-page ul,
.prose-page ol {
  margin-bottom: 24px;
}

.article-content a,
.prose-page a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content blockquote,
.prose-page blockquote {
  border-left: 3px solid var(--blue);
  color: var(--muted);
  font-size: 20px;
  margin: 36px 0;
  padding: 8px 0 8px 24px;
}

.article-content :not(pre) > code,
.prose-page :not(pre) > code {
  background: var(--blue-soft);
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.83em;
  padding: 2px 5px;
}

.article-content .highlight,
.article-content pre,
.prose-page .highlight,
.prose-page pre {
  background: var(--code);
  border: 1px solid var(--code-border);
  color: var(--code-text);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
  margin: 30px 0;
  overflow: auto;
  padding: 24px;
  position: relative;
}

.article-content div.highlighter-rouge {
  position: relative;
}

.article-content .highlight pre,
.prose-page .highlight pre {
  border: 0;
  margin: 0;
  overflow: visible;
  padding: 0;
}

.code-copy {
  background: #24272a;
  border: 1px solid #404449;
  color: #c7c9ca;
  font-family: var(--mono);
  font-size: 9px;
  padding: 6px 8px;
  position: absolute;
  right: 9px;
  top: 9px;
}

.article-content .code-frame {
  background: var(--code);
  border: 1px solid var(--code-border);
  border-radius: 9px;
  box-shadow: 0 16px 38px rgba(10, 12, 15, 0.16);
  margin: 34px 0;
  overflow: hidden;
  position: relative;
}

.article-content .code-frame > .highlight,
.article-content .code-frame > pre {
  border: 0;
  border-radius: 0;
  margin: 0;
}

.article-content .code-frame > .highlight {
  background: transparent;
  padding: 0;
}

.article-content .code-frame > .highlight > pre,
.article-content .code-frame > pre {
  background: transparent;
  max-height: min(720px, 75vh);
  overflow: auto;
  padding: 22px 24px 25px;
  scrollbar-color: var(--code-muted) var(--code);
  scrollbar-width: thin;
}

.code-toolbar {
  align-items: center;
  background: var(--code-raised);
  border-bottom: 1px solid var(--code-border);
  display: flex;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 9px 0 16px;
}

.code-language {
  color: var(--code-muted);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.code-toolbar .code-copy {
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: var(--code-muted);
  min-height: 32px;
  padding: 7px 9px;
  position: static;
}

.code-toolbar .code-copy:hover,
.code-toolbar .code-copy:focus-visible {
  background: var(--blue-soft);
  color: var(--ink);
}

.article-content .rouge-table {
  border: 0;
  display: table;
  margin: 0;
  overflow: visible;
  width: 100%;
}

.article-content .rouge-table td {
  border: 0;
  padding: 0;
}

.article-content .rouge-table .rouge-gutter {
  border-right: 1px solid var(--code-border);
  color: var(--code-muted);
  padding-right: 15px;
  text-align: right;
  user-select: none;
  width: 1%;
}

.article-content .rouge-table .rouge-code {
  padding-left: 18px;
  width: 99%;
}

/* Rouge syntax palette for the light code surface. */
.highlight .c,
.highlight .c1,
.highlight .cm,
.highlight .cp,
.highlight .cs { color: #6e7781; font-style: italic; }
.highlight .err { color: #cf222e; }
.highlight .k,
.highlight .kc,
.highlight .kd,
.highlight .kn,
.highlight .kp,
.highlight .kr,
.highlight .kt { color: #cf222e; font-weight: 650; }
.highlight .s,
.highlight .s1,
.highlight .s2,
.highlight .sb,
.highlight .sc,
.highlight .sd,
.highlight .se,
.highlight .sh,
.highlight .si,
.highlight .sr,
.highlight .ss,
.highlight .sx { color: #0a3069; }
.highlight .m,
.highlight .mb,
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .mo,
.highlight .il { color: #0550ae; }
.highlight .na,
.highlight .nb,
.highlight .nc,
.highlight .nd,
.highlight .ne,
.highlight .nf,
.highlight .nl,
.highlight .nn,
.highlight .nt,
.highlight .nv,
.highlight .vc,
.highlight .vg,
.highlight .vi { color: #8250df; }
.highlight .o,
.highlight .ow { color: #cf222e; }
.highlight .gd { background: #ffebe9; color: #82071e; }
.highlight .gi { background: #dafbe1; color: #116329; }
.highlight .gh,
.highlight .gu { color: #8250df; font-weight: 700; }

[data-theme="dark"] .highlight .c,
[data-theme="dark"] .highlight .c1,
[data-theme="dark"] .highlight .cm,
[data-theme="dark"] .highlight .cp,
[data-theme="dark"] .highlight .cs { color: #8b949e; }
[data-theme="dark"] .highlight .err { color: #ff7b72; }
[data-theme="dark"] .highlight .k,
[data-theme="dark"] .highlight .kc,
[data-theme="dark"] .highlight .kd,
[data-theme="dark"] .highlight .kn,
[data-theme="dark"] .highlight .kp,
[data-theme="dark"] .highlight .kr,
[data-theme="dark"] .highlight .kt { color: #ff7b72; }
[data-theme="dark"] .highlight .s,
[data-theme="dark"] .highlight .s1,
[data-theme="dark"] .highlight .s2,
[data-theme="dark"] .highlight .sb,
[data-theme="dark"] .highlight .sc,
[data-theme="dark"] .highlight .sd,
[data-theme="dark"] .highlight .se,
[data-theme="dark"] .highlight .sh,
[data-theme="dark"] .highlight .si,
[data-theme="dark"] .highlight .sr,
[data-theme="dark"] .highlight .ss,
[data-theme="dark"] .highlight .sx { color: #a5d6ff; }
[data-theme="dark"] .highlight .m,
[data-theme="dark"] .highlight .mb,
[data-theme="dark"] .highlight .mf,
[data-theme="dark"] .highlight .mh,
[data-theme="dark"] .highlight .mi,
[data-theme="dark"] .highlight .mo,
[data-theme="dark"] .highlight .il { color: #79c0ff; }
[data-theme="dark"] .highlight .na,
[data-theme="dark"] .highlight .nb,
[data-theme="dark"] .highlight .nc,
[data-theme="dark"] .highlight .nd,
[data-theme="dark"] .highlight .ne,
[data-theme="dark"] .highlight .nf,
[data-theme="dark"] .highlight .nl,
[data-theme="dark"] .highlight .nn,
[data-theme="dark"] .highlight .nt,
[data-theme="dark"] .highlight .nv,
[data-theme="dark"] .highlight .vc,
[data-theme="dark"] .highlight .vg,
[data-theme="dark"] .highlight .vi { color: #d2a8ff; }
[data-theme="dark"] .highlight .o,
[data-theme="dark"] .highlight .ow { color: #ff7b72; }
[data-theme="dark"] .highlight .gd { background: rgba(248, 81, 73, 0.15); color: #ffa198; }
[data-theme="dark"] .highlight .gi { background: rgba(46, 160, 67, 0.15); color: #7ee787; }
[data-theme="dark"] .highlight .gh,
[data-theme="dark"] .highlight .gu { color: #d2a8ff; }

.mermaid-figure {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 40px 0;
  overflow: hidden;
}

.mermaid-viewport {
  align-items: center;
  background: #f7f5ef;
  display: flex;
  justify-content: center;
  min-height: 220px;
  overflow: auto;
  padding: 28px;
}

[data-theme="dark"] .mermaid-viewport {
  background: #17191c;
}

.mermaid-viewport svg {
  height: auto;
  max-width: 100%;
}

.mermaid-viewport:fullscreen {
  background: #f7f5ef;
  padding: clamp(24px, 5vw, 80px);
}

[data-theme="dark"] .mermaid-viewport:fullscreen {
  background: #17191c;
}

.mermaid-viewport:fullscreen svg {
  max-height: 100%;
  max-width: 100%;
}

.mermaid-status {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  text-align: center;
}

.mermaid-figure.has-error {
  border-color: #c55;
}

.mermaid-source {
  border-top: 1px solid var(--line);
}

.mermaid-source summary {
  color: var(--muted);
  cursor: pointer;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.06em;
  padding: 14px 16px;
}

.article-content .mermaid-source pre {
  border: 0;
  border-radius: 0;
  margin: 0;
  max-height: 360px;
}

.article-content table,
.prose-page table {
  border-collapse: collapse;
  display: block;
  font-size: 14px;
  margin: 32px 0;
  max-width: 100%;
  overflow-x: auto;
}

.article-content th,
.article-content td,
.prose-page th,
.prose-page td {
  border: 1px solid var(--line);
  padding: 10px 13px;
  text-align: left;
}

.article-content img,
.prose-page img {
  border: 1px solid var(--line);
  height: auto;
  margin: 36px auto;
}

.article-content hr,
.prose-page hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 50px 0;
}

.article-footer {
  border-top: 1px solid var(--line);
  margin-top: 90px;
  padding-bottom: 110px;
  padding-top: 45px;
}

.author-card {
  align-items: start;
  display: flex;
  gap: 22px;
}

.author-card img {
  border-radius: 50%;
}

.author-card span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-card h2 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 3px 0 7px;
}

.author-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 10px;
  max-width: 560px;
}

.author-card a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.post-navigation {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
}

.post-navigation a {
  border: 1px solid var(--line);
  margin-right: -1px;
  min-height: 130px;
  padding: 21px;
}

.post-navigation a:hover {
  background: var(--paper-raised);
}

.post-navigation span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.post-navigation strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.comments {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding-top: 48px;
}

.comments .eyebrow {
  margin-bottom: 10px;
}

.comments h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
}

.comments-preview {
  color: var(--muted);
  font-size: 14px;
}

.comments-intro {
  color: var(--muted);
  margin: 0 0 1rem;
}

.comments-load {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  font: 700 0.74rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  min-height: 44px;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
}

.comments-load:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.comments-load:disabled {
  cursor: wait;
  opacity: 0.7;
}

.utterances {
  margin-left: 0;
  max-width: 100%;
}

.prose-page {
  font-size: 17px;
  line-height: 1.75;
  padding-bottom: 120px;
  padding-top: 58px;
}

.site-footer {
  background: #11110f;
  color: #f3f0e8;
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.footer-brand {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.accent-dot {
  color: #6685ff;
}

.footer-grid p {
  color: #c4c1b9;
  font-size: 13px;
  margin-top: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-label {
  color: #aaa79f;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 13px;
}

.footer-links a:hover {
  color: #7892ff;
}

.footer-bottom {
  border-top: 1px solid rgba(243, 240, 232, 0.18);
  color: #aaa79f;
  display: flex;
  font-family: var(--mono);
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.06em;
  margin-top: 70px;
  padding-top: 24px;
  text-transform: uppercase;
}

.search-dialog {
  inset: 0;
  position: fixed;
  z-index: 500;
}

.search-backdrop {
  backdrop-filter: blur(7px);
  background: rgba(9, 10, 9, 0.72);
  border: 0;
  inset: 0;
  position: absolute;
  width: 100%;
}

.search-panel {
  background: var(--paper);
  box-shadow: var(--shadow);
  left: 50%;
  max-height: min(680px, calc(100vh - 80px));
  overflow: auto;
  position: absolute;
  top: 40px;
  transform: translateX(-50%);
  width: min(720px, calc(100vw - 32px));
}

.search-field {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 15px 18px;
}

.search-field > span {
  margin-right: 10px;
}

.not-found {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 700px;
  padding-bottom: 90px;
  padding-top: 90px;
}

.not-found h1 {
  font-size: clamp(58px, 7vw, 104px);
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin: 0;
}

.not-found h1 span {
  color: var(--blue);
}

.not-found p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  margin: 30px 0;
  max-width: 590px;
}

.not-found-code {
  align-items: center;
  aspect-ratio: 1;
  background-color: var(--ink);
  background-image: radial-gradient(color-mix(in srgb, var(--paper) 20%, transparent) 1px, transparent 1px);
  background-size: 18px 18px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.not-found-code span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.not-found-code strong {
  font-size: clamp(90px, 12vw, 180px);
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.not-found-code i {
  border: 2px solid var(--blue);
  border-radius: 50%;
  height: 60%;
  position: absolute;
  width: 60%;
}

.search-field input {
  background: transparent;
  border: 0;
  font-size: 18px;
  min-width: 0;
  outline: 0;
  padding: 10px 0;
}

.search-field button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  padding: 5px 7px;
}

.search-results {
  padding: 12px;
}

.search-hint {
  color: var(--muted);
  font-size: 13px;
  margin: 20px;
}

.search-hint button {
  background: transparent;
  border: 0;
  color: var(--blue);
  padding: 0;
}

.search-result {
  border-bottom: 1px solid var(--line);
  display: block;
  padding: 17px 14px;
}

.search-result:hover {
  background: var(--paper-raised);
}

.search-result span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
}

.search-result strong {
  display: block;
  font-size: 16px;
  margin: 4px 0;
}

.search-result p {
  color: var(--muted);
  font-size: 11px;
  margin: 0;
}

@media (min-width: 1150px) {
  .post-card:nth-child(1),
  .post-card:nth-child(2) {
    display: grid;
    gap: 24px;
    grid-column: span 3;
    grid-template-columns: 1.3fr 1fr;
  }

  .post-card:nth-child(2) {
    grid-template-columns: 1fr 1.3fr;
  }

  .post-card:nth-child(2) .post-card-media {
    grid-column: 2;
    grid-row: 1;
  }

  .post-card:nth-child(2) .post-card-body {
    grid-column: 1;
    grid-row: 1;
  }

  .post-card:nth-child(-n+2) .post-card-body {
    padding: 15px 0;
  }

  .post-card:nth-child(-n+2) h3 {
    font-size: clamp(28px, 3vw, 44px);
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .hero {
    gap: 44px;
    grid-template-columns: 1fr 340px;
  }

  .hero h1 {
    font-size: clamp(50px, 7vw, 76px);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter {
    grid-template-columns: 1fr 2fr;
  }

  .newsletter .button {
    grid-column: 2;
    justify-self: start;
  }

  .article-layout {
    gap: 34px;
    grid-template-columns: 180px minmax(0, 720px);
  }

  .article-share {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
    --shell-narrow: calc(100vw - 32px);
  }

  .header-inner {
    height: 66px;
  }

  .desktop-nav,
  .search-trigger kbd {
    display: none;
  }

  .search-trigger {
    padding: 0;
    width: 38px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    background: var(--paper);
    display: flex;
    flex-direction: column;
    max-height: none;
    padding: 14px 0 18px;
  }

  .js .mobile-nav {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
    transition: max-height 0.3s;
  }

  .js .mobile-nav.is-open {
    border-top: 1px solid var(--line);
    max-height: 300px;
    padding: 14px 0 18px;
  }

  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 700;
    padding: 12px 0;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 64px 0 56px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 72px);
  }

  .hero-lede {
    font-size: 16px;
    margin-top: 28px;
  }

  .hero-actions {
    margin-bottom: 52px;
    margin-top: 30px;
  }

  .signal-card {
    min-height: 420px;
  }

  .topics-inner {
    display: block;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .topics-label {
    border: 0;
    display: block;
    margin-bottom: 12px;
    padding: 0;
  }

  .topic-ticker {
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: flex-start;
  }

  .articles-section {
    padding-bottom: 80px;
    padding-top: 78px;
  }

  .section-heading {
    align-items: start;
    display: block;
    margin-bottom: 32px;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .articles-grid {
    display: block;
  }

  .post-card {
    margin-bottom: 46px;
  }

  .newsletter {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 70px;
    padding: 34px 25px;
  }

  .newsletter h2 {
    font-size: 38px;
  }

  .page-hero {
    padding-bottom: 48px;
    padding-top: 60px;
  }

  .page-hero h1,
  .section-heading h2 {
    font-size: 45px;
  }

  .taxonomy-grid {
    display: block;
    padding-bottom: 80px;
    padding-top: 38px;
  }

  .taxonomy-card {
    display: block;
    min-height: 190px;
  }

  .archive-year {
    display: block;
  }

  .archive-row,
  .archive-year h2 + .archive-row {
    gap: 12px;
    grid-column: auto;
    grid-template-columns: 55px 1fr;
  }

  .archive-row span {
    display: none;
  }

  .simple-post-list > a {
    gap: 9px;
    grid-template-columns: 1fr auto;
  }

  .simple-post-list time {
    grid-column: 1 / -1;
  }

  .simple-post-list h2 {
    font-size: 19px;
  }

  .article-header {
    padding-bottom: 50px;
    padding-top: 48px;
  }

  .breadcrumbs {
    margin-bottom: 32px;
  }

  .article-header h1 {
    font-size: clamp(40px, 12vw, 60px);
  }

  .article-deck {
    font-size: 16px;
  }

  .article-byline {
    align-items: start;
    flex-wrap: wrap;
  }

  .byline-meta {
    border-top: 1px solid var(--line);
    margin-left: 0;
    margin-top: 17px;
    padding-top: 14px;
    width: 100%;
  }

  .article-hero {
    margin-bottom: 50px;
    width: 100%;
  }

  .article-layout {
    display: block;
  }

  .article-aside {
    display: none;
  }

  .article-content {
    font-size: 16px;
  }

  .article-content h2,
  .prose-page h2 {
    font-size: 29px;
  }

  .article-content .highlight,
  .article-content pre,
  .prose-page .highlight,
  .prose-page pre {
    margin-left: -16px;
    margin-right: -16px;
    padding: 21px 16px;
  }

  .article-content .code-frame,
  .article-content .mermaid-figure {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
  }

  .article-content .code-frame > .highlight,
  .article-content .code-frame > pre,
  .article-content .mermaid-source pre {
    margin-left: 0;
    margin-right: 0;
  }

  .article-content .code-frame > .highlight > pre,
  .article-content .code-frame > pre {
    padding: 19px 16px 22px;
  }

  .mermaid-viewport {
    justify-content: flex-start;
    padding: 20px 16px;
  }

  .author-card {
    display: block;
  }

  .author-card img {
    margin-bottom: 15px;
  }

  .post-navigation {
    display: block;
  }

  .post-navigation a {
    display: block;
    margin-bottom: -1px;
  }

  .footer-grid {
    display: block;
  }

  .not-found {
    display: block;
    min-height: auto;
    padding-bottom: 70px;
    padding-top: 60px;
  }

  .not-found-code {
    margin-top: 48px;
  }

  .footer-links {
    margin-top: 48px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
