:root {
  --st-ink: #f4f7f2;
  --st-ink-2: #dfe8e2;
  --st-muted: #98a8a2;
  --st-bg: #070a09;
  --st-panel: #101614;
  --st-panel-2: #151d1a;
  --st-border: #26302c;
  --st-teal: #20c7b8;
  --st-teal-dark: #5ce5d8;
  --st-lime: #d8f26c;
  --st-amber: #d68a2d;
  --st-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --st-wrap: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  scroll-padding-top: 92px;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(32, 199, 184, 0.17), transparent 30rem),
    radial-gradient(circle at 18% 12%, rgba(216, 242, 108, 0.1), transparent 24rem),
    var(--st-bg);
  color: var(--st-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

body.st-menu-open {
  overflow: hidden;
}

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

a:hover,
a:focus {
  color: var(--st-teal-dark);
}

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

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

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

.st-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 10, 9, 0.9);
  border-bottom: 1px solid var(--st-border);
  backdrop-filter: blur(18px);
}

.st-site-header__inner {
  display: grid;
  grid-template-columns: 42px minmax(160px, auto) minmax(0, 1fr);
  width: min(1320px, calc(100vw - 36px));
  min-height: 82px;
  align-items: center;
  gap: 18px;
  margin-inline: auto;
  padding-block: 10px;
  transition: min-height 180ms ease;
}

.st-header-condensed .st-site-header__inner {
  min-height: 62px;
  padding-block: 6px;
}

.st-menu-toggle {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.st-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--st-ink);
}

.st-menu-toggle span:nth-child(2) {
  margin-top: -13px;
}

.st-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--st-ink);
  font-weight: 900;
}

.st-brand__image {
  display: block;
  width: clamp(150px, 12vw, 210px);
  max-width: 36vw;
  height: auto;
  transition: width 180ms ease, transform 180ms ease;
}

.st-header-condensed .st-brand__image {
  width: clamp(105px, 8.4vw, 147px);
}

.st-brand__image--footer {
  width: clamp(320px, 28vw, 480px);
  max-width: 100%;
  transition: none;
}

.st-header-condensed .st-brand__image--footer {
  width: clamp(320px, 28vw, 480px);
}

.st-primary-nav {
  justify-self: start;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.st-primary-nav::-webkit-scrollbar {
  display: none;
}

.st-primary-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}

.st-primary-nav__list a {
  display: block;
  padding: 10px 11px;
  color: var(--st-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.st-primary-nav__list a:hover,
.st-primary-nav__list a:focus {
  color: var(--st-lime);
}

.st-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  background: rgba(0, 0, 0, 0);
  transition: background 160ms ease, visibility 160ms ease;
}

.st-mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: min(292px, 88vw);
  overflow-y: auto;
  background: var(--st-panel);
  transform: translateX(-100%);
  transition: transform 190ms ease;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.16);
}

.st-menu-open .st-mobile-backdrop {
  visibility: visible;
  background: rgba(0, 0, 0, 0.54);
}

.st-menu-open .st-mobile-drawer {
  transform: translateX(0);
}

.st-mobile-drawer__head {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--st-border);
}

.st-mobile-drawer__close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--st-ink);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.st-mobile-drawer__nav {
  padding: 14px 20px 28px;
}

.st-mobile-drawer__nav a {
  display: block;
  padding: 11px 0;
  color: var(--st-ink-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.st-mobile-drawer__nav section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--st-border);
}

.st-mobile-drawer__nav h2 {
  margin: 0 0 4px;
  color: var(--st-muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.st-site-main {
  min-height: 70vh;
}

.st-kicker {
  margin: 0 0 9px;
  color: var(--st-teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.st-masthead {
  position: relative;
  overflow: hidden;
  padding: 24px 0 22px;
  border-bottom: 1px solid var(--st-border);
  background:
    radial-gradient(circle at 90% 8%, rgba(216, 242, 108, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(16, 22, 20, 0.72) 0%, rgba(7, 10, 9, 0) 100%);
}

.st-masthead__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.74fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.st-masthead h1 {
  grid-column: 2;
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.st-masthead p:not(.st-kicker) {
  max-width: 430px;
  margin: 0;
  color: var(--st-muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.62;
}

.st-today-strip {
  border-bottom: 1px solid var(--st-border);
  background: rgba(7, 10, 9, 0.9);
}

.st-today-strip__inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 54px;
}

.st-today-strip .st-kicker {
  margin: 0;
  color: var(--st-lime);
}

.st-today-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
}

.st-today-strip li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  min-height: 54px;
  align-content: center;
  padding: 8px 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  counter-increment: st-today;
}

.st-today-strip ul {
  counter-reset: st-today;
}

.st-today-strip li::before {
  content: counter(st-today, decimal-leading-zero);
  grid-row: 1 / span 2;
  color: var(--st-teal-dark);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.2;
}

.st-today-strip li span {
  color: var(--st-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.st-today-strip li a {
  grid-column: 2;
  overflow: hidden;
  color: var(--st-ink-2);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.st-today-strip li a:hover,
.st-today-strip li a:focus {
  color: var(--st-lime);
}

.st-masthead .st-kicker,
.st-masthead p:not(.st-kicker) {
  grid-column: 1;
}

.st-section-strip {
  border-bottom: 1px solid var(--st-border);
  background: rgba(16, 22, 20, 0.76);
}

.st-section-strip__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
}

.st-section-strip__inner::-webkit-scrollbar {
  display: none;
}

.st-section-strip a {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: var(--st-ink-2);
  font-size: 0.84rem;
  font-weight: 800;
}

.st-section-strip a:hover,
.st-section-strip a:focus {
  background: var(--st-lime);
  color: var(--st-bg);
}

.st-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--st-lime);
  border-radius: 999px;
  background: var(--st-lime);
  color: var(--st-bg);
  font-weight: 850;
}

.st-button:hover,
.st-button:focus {
  border-color: var(--st-teal);
  background: var(--st-teal);
  color: var(--st-bg);
}

.st-front-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 34px;
  padding: 28px 0 34px;
}

.st-front-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.st-front-side > h2 {
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--st-border);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.st-latest-rail {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid var(--st-border);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(16, 22, 20, 0.96), rgba(8, 12, 11, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(32, 199, 184, 0.18), transparent 16rem);
}

.st-latest-rail__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--st-border);
}

.st-latest-rail__head .st-kicker {
  margin-bottom: 3px;
}

.st-latest-rail h2 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

.st-latest-rail ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
  counter-reset: st-latest;
}

.st-latest-rail li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  counter-increment: st-latest;
}

.st-latest-rail li:last-child {
  border-bottom: 0;
}

.st-latest-rail li::before {
  content: counter(st-latest, decimal-leading-zero);
  grid-row: 1 / span 2;
  color: var(--st-lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.st-latest-rail li span {
  color: var(--st-teal-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.st-latest-rail li a {
  grid-column: 2;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.st-lead-story,
.st-card,
.st-story-card,
.st-editorial-note,
.st-list-item {
  background: transparent;
}

.st-lead-story__image,
.st-card__image,
.st-story-card__image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--st-panel-2);
}

.st-lead-story__image,
.st-lead-story__image .st-card__placeholder {
  aspect-ratio: 16 / 9;
}

.st-card__image,
.st-story-card__image,
.st-card__image .st-card__placeholder,
.st-story-card__image .st-card__placeholder {
  aspect-ratio: 16 / 10;
}

.st-lead-story__image img,
.st-card__image img,
.st-story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-lead-story__body {
  padding-top: 22px;
}

.st-lead-story__body h2 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.st-lead-story__body p:not(.st-kicker),
.st-story-card__body p,
.st-card__body p,
.st-list-item p,
.st-editorial-note p {
  color: var(--st-muted);
  line-height: 1.58;
}

.st-lead-story__body span {
  color: var(--st-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.st-card,
.st-story-card {
  min-width: 0;
}

.st-card__body,
.st-story-card__body {
  padding-top: 13px;
}

.st-card__body h3,
.st-story-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.st-card--compact .st-card__body p,
.st-story-card--compact .st-story-card__body p {
  display: none;
}

.st-card--compact .st-card__body h3,
.st-story-card--compact .st-story-card__body h3 {
  font-size: 1.08rem;
}

.st-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(32, 199, 184, 0.66), rgba(12, 17, 16, 0.96)),
    radial-gradient(circle at 22% 18%, rgba(216, 242, 108, 0.72), transparent 11rem);
}

.st-section {
  padding: 42px 0;
  border-top: 1px solid var(--st-border);
}

.st-section__header {
  max-width: 760px;
  margin-bottom: 24px;
}

.st-section__header--compact {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  max-width: none;
}

.st-section__header h2,
.st-page-head h1 {
  margin: 0;
  color: var(--st-ink);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.st-channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--st-border);
  border-radius: 10px;
  background: var(--st-border);
}

.st-channel-grid a {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--st-panel);
  color: var(--st-ink);
}

.st-channel-grid a:nth-child(even) {
  background: #0d1210;
  color: var(--st-ink);
}

.st-channel-grid span {
  color: var(--st-teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.st-channel-grid a:nth-child(even) span {
  color: var(--st-lime);
}

.st-channel-grid strong {
  font-size: 1.16rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.st-more-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.st-more-aside {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 18px;
}

.st-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.st-editorial-note {
  padding: 22px;
  border: 1px solid var(--st-border);
  border-radius: 10px;
  background: var(--st-panel);
}

.st-editorial-note h2 {
  margin: 0 0 10px;
  font-size: 1.58rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.st-newsletter-card {
  padding: 22px;
  border: 1px solid rgba(216, 242, 108, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(216, 242, 108, 0.12), rgba(32, 199, 184, 0.07) 44%, rgba(16, 22, 20, 0.92)),
    var(--st-panel);
}

.st-newsletter-card h2 {
  max-width: 260px;
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.st-newsletter-card p {
  color: var(--st-muted);
  line-height: 1.6;
}

.st-newsletter-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 4px;
  padding: 0 14px;
  border: 1px solid var(--st-lime);
  border-radius: 999px;
  color: var(--st-lime);
  font-size: 0.86rem;
  font-weight: 850;
}

.st-newsletter-card a:hover,
.st-newsletter-card a:focus {
  background: var(--st-lime);
  color: var(--st-bg);
}

.st-page-head {
  padding: 52px 0 28px;
}

.st-page-head p {
  max-width: 740px;
  color: var(--st-muted);
  line-height: 1.7;
}

.st-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 56px;
}

.st-content-page {
  padding-bottom: 64px;
}

.st-entry-content {
  max-width: 820px;
  color: var(--st-ink-2);
  font-size: clamp(1.04rem, 0.32vw + 0.98rem, 1.14rem);
  line-height: 1.82;
}

.st-entry-content h2,
.st-entry-content h3 {
  scroll-margin-top: 92px;
  margin-top: 2.15em;
  margin-bottom: 0.65em;
  color: var(--st-ink);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.st-entry-content a {
  color: var(--st-teal-dark);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.st-single__hero-wrap {
  width: var(--st-wrap);
  margin-inline: auto;
  padding-top: 50px;
}

.st-single__header {
  max-width: 900px;
  padding: 0 0 26px;
}

.st-single__header h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.05rem, 4.35vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.062em;
}

.st-single__meta {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  color: var(--st-muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.st-single__image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--st-panel-2);
}

.st-single__image img {
  width: 100%;
}

.st-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 300px;
  gap: 56px;
  align-items: start;
  padding: 44px 0 70px;
}

.st-article-aside {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 16px;
}

.st-mobile-article-index {
  display: none;
}

.st-article-index,
.st-signal-check,
.st-article-tools {
  padding: 18px;
  border: 1px solid var(--st-border);
  border-radius: 10px;
  background: var(--st-panel);
  color: var(--st-muted);
  line-height: 1.6;
}

.st-article-tools {
  display: grid;
  gap: 12px;
}

.st-article-tools--mobile {
  display: none;
}

.st-share-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.st-share-links a,
.st-article-tools button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--st-ink-2);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.st-article-tools button {
  width: 100%;
}

.st-article-tools button[data-st-summarise-ai] {
  border-color: rgba(216, 242, 108, 0.38);
  color: var(--st-lime);
}

.st-share-links a:hover,
.st-share-links a:focus,
.st-article-tools button:hover,
.st-article-tools button:focus {
  border-color: var(--st-teal);
  background: rgba(32, 199, 184, 0.12);
  color: var(--st-teal-dark);
}

.st-article-tools button[data-st-summarise-ai]:hover,
.st-article-tools button[data-st-summarise-ai]:focus {
  border-color: var(--st-lime);
  background: rgba(216, 242, 108, 0.12);
  color: var(--st-lime);
}

.st-article-index ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: st-article-index;
}

.st-article-index li,
.st-mobile-article-index li {
  counter-increment: st-article-index;
}

.st-article-index a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--st-ink-2);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.32;
}

.st-article-index a::before,
.st-mobile-article-index a::before {
  content: counter(st-article-index, decimal-leading-zero);
  color: var(--st-teal);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.st-article-index a:hover,
.st-article-index a:focus {
  color: var(--st-teal-dark);
}

.st-signal-check p:last-child {
  margin-bottom: 0;
}

.st-related-posts {
  padding: 0 0 72px;
  border-top: 1px solid var(--st-border);
}

.st-related-posts .st-section__header {
  padding-top: 38px;
}

.st-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.st-related-posts__empty {
  max-width: 620px;
  color: var(--st-muted);
  line-height: 1.7;
}

.st-category-return {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 30px;
  padding: 0 15px;
  border: 1px solid rgba(216, 242, 108, 0.42);
  border-radius: 999px;
  color: var(--st-lime);
  font-size: 0.9rem;
  font-weight: 850;
}

.st-category-return:hover,
.st-category-return:focus {
  border-color: var(--st-teal);
  background: var(--st-teal);
  color: var(--st-bg);
}

.st-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(216, 242, 108, 0.46);
  border-radius: 999px;
  background: rgba(16, 22, 20, 0.82);
  color: var(--st-lime);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.st-back-to-top svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.st-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.st-back-to-top:hover,
.st-back-to-top:focus {
  border-color: var(--st-teal);
  background: rgba(21, 29, 26, 0.95);
  color: var(--st-teal);
  transform: translateY(-3px);
}

.st-pagination {
  padding-bottom: 60px;
}

.st-site-footer {
  margin-top: 36px;
  padding: 42px 0 24px;
  background: #050706;
  color: var(--st-ink);
}

.st-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(180px, 0.45fr));
  gap: 34px;
}

.st-brand--footer {
  color: var(--st-ink);
}

.st-site-footer p,
.st-site-footer li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.st-site-footer h2 {
  margin: 0 0 12px;
  color: var(--st-ink);
  font-size: 1rem;
}

.st-site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.st-site-footer a:hover,
.st-site-footer a:focus {
  color: var(--st-lime);
}

.st-site-footer__bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.st-site-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .st-front-page-grid,
  .st-more-layout,
  .st-single__layout {
    grid-template-columns: 1fr;
  }

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

  .st-related-posts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-editorial-note,
  .st-more-aside,
  .st-article-aside {
    position: static;
  }

  .st-article-aside .st-article-index {
    display: none;
  }

  .st-mobile-article-index {
    display: block;
    padding: 18px;
    border: 1px solid var(--st-border);
    border-radius: 10px;
    background: var(--st-panel);
    color: var(--st-muted);
  }

  .st-mobile-article-index ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: st-article-index;
  }

  .st-mobile-article-index a {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--st-ink-2);
    font-size: 0.92rem;
    font-weight: 760;
    line-height: 1.3;
  }

  .st-article-tools--aside {
    display: none;
  }

  .st-article-tools--mobile {
    display: grid;
    margin-top: 12px;
    padding-top: 20px;
    border-top-color: rgba(216, 242, 108, 0.28);
  }
}

@media (max-width: 900px) {
  .st-site-header__inner {
    grid-template-columns: 42px 1fr;
    min-height: 76px;
  }

  .st-primary-nav {
    display: none;
  }

  .st-brand {
    justify-self: center;
    margin-right: 42px;
  }

  .st-masthead__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .st-masthead h1,
  .st-masthead .st-kicker,
  .st-masthead p:not(.st-kicker) {
    grid-column: auto;
  }

  .st-today-strip__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .st-today-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-front-side,
  .st-channel-grid,
  .st-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-latest-rail {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --st-wrap: min(100vw - 24px, 1180px);
  }

  .st-site-header__inner {
    width: min(100vw - 20px, 1320px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .st-entry-content h2,
  .st-entry-content h3 {
    scroll-margin-top: 72px;
  }

  .st-brand__image {
    width: clamp(150px, 42vw, 210px);
    max-width: 54vw;
  }

  .st-header-condensed .st-brand__image {
    width: clamp(105px, 29vw, 147px);
  }

  .st-masthead {
    padding: 24px 0 20px;
  }

  .st-masthead h1 {
    font-size: clamp(3.05rem, 17vw, 4.85rem);
  }

  .st-front-page-grid {
    padding-top: 22px;
  }

  .st-today-strip ul {
    grid-template-columns: 1fr;
  }

  .st-today-strip li {
    min-height: 46px;
    padding-inline: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .st-front-side,
  .st-channel-grid,
  .st-related-posts__grid,
  .st-more-grid,
  .st-archive-grid {
    grid-template-columns: 1fr;
  }

  .st-lead-story__body h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .st-section__header--compact {
    display: block;
  }

  .st-latest-rail li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
  }

  .st-channel-grid a {
    min-height: 150px;
  }

  .st-single__header h1 {
    font-size: clamp(2.1rem, 11vw, 3.15rem);
  }

  .st-mobile-article-index ol {
    grid-template-columns: 1fr;
  }

  .st-back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .st-single__hero-wrap {
    width: min(100vw - 24px, 1180px);
    padding-top: 34px;
  }

  .st-site-footer__grid {
    grid-template-columns: 1fr;
  }
}
