:root {
  --bg: #f4efe6;
  --paper: rgba(255, 252, 247, 0.94);
  --paper-strong: #fffdfa;
  --paper-dark: #17181c;
  --ink: #111317;
  --muted: #686c72;
  --line: rgba(17, 19, 23, 0.1);
  --line-strong: rgba(17, 19, 23, 0.18);
  --accent: #d86c3c;
  --accent-2: #2e6bcb;
  --shadow: 0 16px 40px rgba(19, 22, 28, 0.07);
  --shadow-soft: 0 10px 26px rgba(19, 22, 28, 0.045);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1340px;
  --font-h1: 36px;
  --font-h2: 28px;
  --font-h3: 22px;
  --font-h4: 20px;
  --font-lead: 18px;
  --font-body: 17px;
  --font-small: 16px;
  --font-label: 14px;
  --font-article: 18px;
  --lh-h1: 1.14;
  --lh-h2: 1.2;
  --lh-h3: 1.26;
  --lh-h4: 1.24;
  --lh-body: 1.7;
  --fw-h1: 700;
  --fw-h2: 700;
  --fw-h3: 600;
  --fw-h4: 600;
  --fw-body: 400;
  --fw-body-strong: 500;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 108, 60, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe6 56%, #efe8dc 100%);
  font-family: "Manrope", sans-serif;
  font-size: var(--font-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
  text-rendering: optimizeLegibility;
}

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

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

.page-glow,
.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-glow--left,
.page-glow--right {
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.18;
}

.page-glow--left {
  left: -140px;
  top: 60px;
  background: rgba(216, 108, 60, 0.34);
}

.page-glow--right {
  right: -150px;
  top: 180px;
  background: rgba(46, 107, 203, 0.28);
}

.page-grain {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23000000' fill-opacity='.08'%3E%3Ccircle cx='16' cy='20' r='1'/%3E%3Ccircle cx='76' cy='42' r='1'/%3E%3Ccircle cx='138' cy='26' r='1'/%3E%3Ccircle cx='34' cy='92' r='1'/%3E%3Ccircle cx='104' cy='118' r='1'/%3E%3Ccircle cx='150' cy='84' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.site-topline,
.page,
.article-page,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid rgba(17, 19, 23, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.site-topline {
  position: relative;
  z-index: 41;
  background: rgba(251, 248, 242, 0.96);
}

.site-topline__inner,
.site-header__inner,
.site-nav,
.latest-strip__inner,
.home-hero__inner,
.news-deck,
.news-roundup,
.news-listing,
.spotlight-wall,
.home-sections,
.archive-section,
.category-hero__inner,
.category-feature,
.article-hero__inner,
.article-layout,
.article-related,
.site-footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-topline {
  border-bottom: 1px solid rgba(17, 19, 23, 0.06);
}

.site-topline__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-topline__inner span {
  color: var(--accent);
  font-weight: 800;
}

.site-topline__inner p,
.site-topline__inner time {
  margin: 0;
}

.latest-strip {
  border-top: 1px solid rgba(17, 19, 23, 0.04);
  border-bottom: 1px solid rgba(17, 19, 23, 0.06);
  background: linear-gradient(180deg, rgba(252, 249, 244, 0.96), rgba(246, 240, 231, 0.92));
}

.latest-strip__inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.latest-strip__inner strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8f6e57;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.latest-strip__inner strong::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(216, 108, 60, 0.12);
}

.latest-strip__items {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  overflow: hidden;
}

.latest-strip__items a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #31353b;
  font-size: 13px;
  opacity: 0.96;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 0;
  transition: color 0.16s ease, opacity 0.16s ease;
}

.latest-strip__items a + a {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(17, 19, 23, 0.08);
}

.latest-strip__items a:hover {
  color: var(--ink);
  opacity: 1;
}

.latest-strip__items a span:first-child {
  color: #8f6e57;
  font-size: 12px;
  font-weight: 700;
  flex: none;
}

.latest-strip__items a span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-strip__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8f6e57;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.16s ease;
}

.latest-strip__more::after {
  content: "→";
  font-size: 14px;
}

.latest-strip__more:hover {
  color: var(--accent);
}

.news-roundup {
  padding-top: 8px;
}

.news-roundup__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-roundup__card {
  padding: 16px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.news-roundup__card h3 {
  margin: 10px 0 0;
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
}

.news-roundup__card p:last-child {
  color: #43474d;
}

.site-header__inner {
  min-height: 102px;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  padding: 16px 0 14px;
}

.site-logo {
  display: inline-grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.site-logo__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, #181a1f, #2a2f37);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(15, 17, 21, 0.18);
  overflow: hidden;
}

.site-logo__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(180deg, transparent, rgba(216, 108, 60, 0.16));
}

.site-logo__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), #f1a05e);
}

.site-logo__mark-ring {
  position: absolute;
  inset: 8px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(216, 108, 60, 0.12), rgba(255, 255, 255, 0.02));
}

.site-logo__mark-text {
  position: relative;
  z-index: 1;
  color: #fff7f1;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.site-logo__text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.site-logo__text strong {
  display: grid;
  gap: 0;
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.site-logo__name-line {
  display: block;
}

.site-logo__tagline {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 320px;
}

.site-header__center {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 6px;
  min-width: 0;
  padding: 8px 0 8px 28px;
  border-left: 1px solid rgba(17, 19, 23, 0.08);
}

.site-header__eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header__title,
.hero-lead h1,
.section-head h2,
.category-shelf__header h2,
.category-hero h1,
.article-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

.site-header__title {
  max-width: 640px;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.site-header__summary {
  max-width: 620px;
  color: #4f545b;
  font-size: 14px;
  line-height: 1.45;
}

.site-cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: var(--font-small);
  font-weight: 800;
}

.site-cta {
  justify-self: end;
}

.site-nav-wrap {
  border-top: 1px solid rgba(17, 19, 23, 0.06);
  background: rgba(255, 252, 247, 0.6);
}

.site-nav {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: none;
  color: #252930;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.site-nav a:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--nav-accent, var(--accent)) 38%, rgba(17, 19, 23, 0.08));
  background: color-mix(in srgb, var(--nav-accent-soft, rgba(216, 108, 60, 0.1)) 70%, #fffdfa);
  box-shadow: none;
}

.site-nav a.is-active {
  border-color: color-mix(in srgb, var(--nav-accent, var(--accent)) 44%, rgba(17, 19, 23, 0.08));
  background: color-mix(in srgb, var(--nav-accent-soft, rgba(216, 108, 60, 0.12)) 84%, #fffdfa);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--nav-accent, var(--accent)) 12%, transparent);
}

.site-nav a.is-active .site-nav__icon {
  background: color-mix(in srgb, var(--nav-accent-soft, rgba(216, 108, 60, 0.12)) 52%, #fff);
  color: color-mix(in srgb, var(--nav-accent, var(--accent)) 88%, #242830);
}

.site-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--nav-accent-soft, rgba(216, 108, 60, 0.1)) 76%, #fff);
  color: var(--nav-accent, var(--accent));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--nav-accent, var(--accent)) 8%, rgba(17, 19, 23, 0.02));
}

.site-nav__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-nav__icon text {
  letter-spacing: 0;
}

.site-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: var(--shadow);
  color: var(--ink);
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.eyebrow,
.kicker,
.site-footer__label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.author-chip,
.article-rail__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.author-chip img,
.article-rail__author img,
.author-card__avatar,
.author-profile__avatar,
.article-author-card__avatar {
  display: block;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 10px 24px rgba(17, 19, 23, 0.08);
}

.author-chip img,
.article-rail__author img {
  width: 52px;
  height: 52px;
}

.author-card__avatar-link {
  display: block;
}

.author-card__avatar {
  width: 132px;
  height: 132px;
  margin: 4px 0 0 4px;
}

.author-profile__avatar {
  width: 164px;
  height: 164px;
  margin-bottom: 18px;
}

.article-author-card__avatar {
  width: 112px;
  height: 112px;
  margin-bottom: 16px;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.button-primary + .text-link {
  margin-left: 16px;
}

.page {
  padding: 18px 0 42px;
}

.home-hero {
  margin-bottom: 8px;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.78fr);
  gap: 14px;
  align-items: start;
}

.hero-lead,
.hero-board,
.story-tile,
.category-shelf,
.archive-card,
.category-feature__article,
.article-sheet {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-lead {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  border-radius: var(--radius-xl);
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.hero-lead::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--story-accent, var(--accent));
}

.hero-lead h1 {
  width: 100%;
  max-width: none;
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-h1);
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: manual;
}

.home-hero__description,
.story-tile__body p,
.category-shelf__lead-body p,
.archive-card__body p,
.category-feature__body p,
.site-footer__copy,
.category-hero__copy p {
  color: #43474d;
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
}

.home-hero__description {
  max-width: 58ch;
  margin: 10px 0 0;
  font-size: 17px;
}

.hero-lead .meta-row {
  margin-top: 12px;
}

.hero-actions {
  margin-top: 14px;
}

.hero-board {
  padding: 10px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(17, 19, 23, 0.08);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.hero-board__feature-cover img,
.hero-mini__cover img,
.story-tile__cover img,
.category-shelf__lead-cover img,
.compact-story__cover img,
.archive-card__cover img,
.category-hero__main-cover img,
.category-hero__mini-cover img,
.category-feature__cover img,
.article-hero__cover {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.hero-board__feature-cover img,
.category-hero__main-cover img,
.article-hero__cover {
  aspect-ratio: 16 / 10;
}

.hero-board__feature-cover img {
  aspect-ratio: 16 / 8.5;
}

.hero-mini__cover img,
.story-tile__cover img,
.category-shelf__lead-cover img,
.compact-story__cover img,
.archive-card__cover img,
.category-hero__mini-cover img,
.category-feature__cover img {
  aspect-ratio: 4 / 3;
}

.hero-board__feature {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 0;
  background: rgba(255, 255, 255, 0.04);
}

.hero-board__feature-cover {
  display: block;
}

.hero-board__feature-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.06) 0%, rgba(10, 12, 16, 0.78) 100%);
}

.hero-board__feature-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 13px 13px 11px;
  color: #fff;
}

.hero-board__feature h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.06;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-board__feature time {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-label);
  font-weight: var(--fw-body-strong);
}


.hero-mini h2 {
  margin: 0;
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
}

.hero-mini time {
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: var(--fw-body-strong);
}

.spotlight-wall,
.archive-section,
.article-related {
  padding-top: 4px;
}

.news-deck {
  padding-top: 2px;
  margin: 0 auto;
}

.news-deck__list {
  display: grid;
  gap: 10px;
}

.news-card,
.news-row {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.news-card::before,
.news-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}

.news-card {
  padding: 16px;
  border-radius: var(--radius-xl);
}

.news-card--lead {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(249, 243, 235, 0.98));
}

.news-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  align-items: start;
}

.news-card__body > div {
  min-width: 0;
}

.news-card__cover img,
.news-row__cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(0.18) contrast(1.02);
}

.news-card h3,
.news-row h3 {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: var(--lh-h3);
  font-weight: var(--fw-h3);
}

.news-card p:last-of-type,
.news-row__body p {
  color: #43474d;
}

.news-stamp {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.news-stamp span + span::before {
  content: "•";
  margin-right: 8px;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
}

.news-tags span,
.news-tags a {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(68, 93, 115, 0.1);
  color: #445d73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-listing {
  padding-top: 10px;
}

.news-listing__items {
  display: grid;
  gap: 12px;
}

.news-row {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) 220px;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
}

.news-row__meta {
  display: grid;
  align-content: start;
  gap: 6px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.news-row__meta span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.news-row__body {
  min-width: 0;
}

.section-head {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
}

.section-head h2 {
  width: 100%;
  max-width: none;
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-h2);
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: manual;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.spotlight-grid--calm {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.story-tile {
  padding: 12px;
  border-radius: 20px;
  border-top: 3px solid var(--story-accent, var(--accent));
  background: linear-gradient(180deg, color-mix(in srgb, var(--story-soft, rgba(216,108,60,0.08)) 16%, #fffdf9), rgba(255,252,247,0.94));
}

.story-tile--wide,
.story-tile--portrait,
.story-tile--square {
  grid-column: span 1;
}

.story-tile--calm {
  padding: 10px;
  border-top-width: 2px;
  background: rgba(255, 252, 247, 0.86);
}

.story-tile--calm .story-tile__cover img {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.story-tile__body {
  padding-top: 8px;
}

.story-tile h3 {
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
  letter-spacing: -0.03em;
}

.story-tile__body p {
  margin: 8px 0 0;
}

.story-tile--calm .story-tile__body {
  padding-top: 7px;
}

.story-tile--calm h3 {
  font-size: 19px;
  line-height: 1.3;
}

.story-tile--calm .meta-row {
  margin-top: 8px;
}

.home-sections {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.page-title {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 18px;
  padding: 4px 0 12px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.1);
}

.page-title h1 {
  margin: 8px 0 0;
  width: 100%;
  max-width: none;
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: manual;
}

.page-title__lead {
  max-width: 820px;
  margin: 12px 0 0;
  color: #464b52;
}

.page-title__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.category-shelf {
  padding: 16px;
  border-radius: var(--radius-xl);
  border-top: 4px solid var(--section-accent, var(--accent));
  background: linear-gradient(180deg, color-mix(in srgb, var(--section-soft, rgba(216,108,60,0.08)) 14%, #fffdf9), rgba(255,252,247,0.96));
}

.category-shelf__header,
.category-feature__article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.category-shelf__header h2 {
  width: 100%;
  max-width: none;
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-h2);
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: manual;
}

.category-shelf__hubs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 12px;
}

.category-shelf__hubs a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 23, 0.1);
  background: rgba(255, 252, 247, 0.7);
  color: #2b2f36;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.category-shelf__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 16px;
  margin-top: 12px;
  align-items: start;
}

.category-shelf__lead {
  display: grid;
  gap: 10px;
}

.category-shelf__lead h3,
.category-feature__body h2 {
  font-size: var(--font-h3);
  line-height: var(--lh-h3);
  font-weight: var(--fw-h3);
}

.category-shelf__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.compact-story {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
}

.compact-story__cover img {
  border-radius: 12px;
  aspect-ratio: 4 / 3;
}

.compact-story__body {
  padding-right: 0;
  min-width: 0;
}

.compact-story h3 {
  font-size: 17px;
  line-height: 1.24;
  font-weight: var(--fw-h4);
  margin: 0;
}

.compact-story time {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: var(--fw-body-strong);
}

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

.archive-card {
  padding: 14px;
  border-radius: 22px;
  border-top: 3px solid var(--story-accent, var(--accent));
  background: linear-gradient(180deg, color-mix(in srgb, var(--story-soft, rgba(216,108,60,0.08)) 12%, #fffdf9), rgba(255,252,247,0.95));
}

.archive-card__body {
  padding-top: 10px;
}

.archive-card h3 {
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
}

.archive-card__body p {
  margin: 10px 0 0;
}

.authors-card__meta {
  color: #6a6f76;
  font-size: 13px;
}

.category-hero {
  margin-bottom: 18px;
}

.category-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: stretch;
}

.category-hero__copy,
.category-hero__board,
.category-feature__article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.category-hero__copy {
  padding: 28px;
  border-radius: var(--radius-xl);
  border-top: 3px solid var(--section-accent, var(--accent));
}

.category-hero h1 {
  width: 100%;
  max-width: none;
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-h1);
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: manual;
}

.category-hero__copy p:last-of-type {
  margin-top: 16px;
}

.category-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.category-hero__board {
  padding: 14px;
  border-radius: var(--radius-xl);
  display: block;
  background: linear-gradient(180deg, #15171d, #1f242c);
}

.category-hero__single-cover {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  filter: grayscale(1) contrast(1.06) brightness(0.94);
}

.category-feature__article {
  padding: 24px;
  border-radius: var(--radius-xl);
  align-items: stretch;
}

.category-feature__cover,
.category-feature__body {
  flex: 1 1 0;
}

.category-hubs,
.hub-supporting {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 18px;
}

.category-hubs__grid,
.hub-supporting__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category-hub-card,
.hub-supporting-card,
.hub-feature__article,
.hub-hero__copy,
.hub-hero__aside {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.category-hub-card {
  padding: 20px;
  border-radius: var(--radius-xl);
}

.category-hub-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.category-hub-card__meta span {
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.category-hub-card h3,
.hub-supporting-card h3,
.hub-feature__body h2,
.hub-hero h1 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.category-hub-card h3 {
  font-size: 26px;
  line-height: 1.18;
}

.category-hub-card > p,
.hub-supporting-card__body p,
.hub-feature__body > p,
.hub-hero__lead {
  margin: 14px 0 0;
  color: #464b52;
}

.category-hub-card__points,
.hub-hero__points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.category-hub-card__points li,
.hub-hero__points li {
  position: relative;
  padding-left: 18px;
  color: #2f343b;
}

.category-hub-card__points li + li,
.hub-hero__points li + li {
  margin-top: 10px;
}

.category-hub-card__points li::before,
.hub-hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--section-accent, var(--accent));
  transform: translateY(-50%);
}

.hub-hero {
  margin-bottom: 18px;
}

.hub-hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.hub-hero__copy,
.hub-hero__aside {
  border-radius: var(--radius-xl);
}

.hub-hero__copy {
  padding: 26px 28px;
  border-top: 3px solid var(--section-accent, var(--accent));
}

.hub-hero h1 {
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-h1);
}

.hub-hero__aside {
  padding: 22px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--section-soft, #ead2c8) 32%, #fffdfa), rgba(255, 252, 247, 0.92));
}

.hub-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.hub-feature {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 18px;
}

.hub-brief {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 18px;
}

.hub-brief__inner {
  display: block;
}

.hub-brief__links {
  padding: 20px 22px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hub-brief__links p {
  margin: 14px 0 0;
  color: #444951;
  max-width: 78ch;
  font-size: 16px;
  line-height: 1.65;
}

.hub-brief__links p:first-child {
  margin-top: 0;
}

.hub-brief__links a {
  color: var(--section-accent, var(--accent));
  font-weight: 700;
}

.hub-brief__list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hub-brief__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.hub-brief__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--section-soft, #ead2c8) 38%, #fffdfa);
  color: color-mix(in srgb, var(--section-accent, var(--accent)) 72%, #6b7078);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hub-brief__item-body {
  display: grid;
  gap: 6px;
}

.hub-brief__item strong {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #20252c;
}

.hub-brief__item span:last-child {
  color: #4a4f57;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.hub-feature__article {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-xl);
}

.hub-feature__cover img,
.hub-supporting-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.hub-feature__cover img {
  aspect-ratio: 16 / 10;
}

.hub-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hub-feature__body h2 {
  font-size: 34px;
  line-height: 1.16;
}

.hub-supporting-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
}

.hub-supporting-card__cover img {
  aspect-ratio: 1 / 1;
}

.article-page {
  padding: 24px 0 64px;
}

.article-hero {
  margin-bottom: 24px;
}

.article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 340px);
  gap: 24px;
  align-items: start;
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--line-strong);
}

.article-hero__copy {
  min-width: 0;
  max-width: none;
  position: relative;
  padding-left: 22px;
}

.article-hero__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 14px;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: var(--font-small);
}

.breadcrumbs a,
.breadcrumbs > span:not(.breadcrumbs__current) {
  flex: 0 0 auto;
}

.breadcrumbs__current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-hero h1 {
  width: 100%;
  max-width: none;
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-h1);
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  hyphens: manual;
}

.article-card__lead {
  max-width: 62ch;
  margin: 16px 0 0;
  color: #43474d;
  font-size: var(--font-lead);
  line-height: 1.62;
  font-weight: var(--fw-body);
}

.article-hero__credit {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--font-label);
  line-height: 1.5;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.article-share__label {
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-share__link,
.article-share__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 22, 29, 0.12);
  background: rgba(255, 252, 247, 0.92);
  color: #1c2026;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.article-share__button {
  cursor: pointer;
  font-family: inherit;
}

.article-share__link:hover,
.article-share__button:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 108, 60, 0.28);
  background: rgba(255, 248, 241, 0.98);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(176px, 210px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.article-rail {
  position: sticky;
  top: 160px;
  display: grid;
  gap: 8px;
}

.article-rail__block {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.article-rail__block span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-rail__author {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.article-rail__author strong,
.article-rail__block strong {
  display: block;
  line-height: 1.35;
}

.article-rail__block strong {
  font-size: 15px;
}

.article-sheet {
  width: 100%;
  max-width: none;
  padding: 36px 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(251, 247, 241, 0.98));
  border-top: 5px solid color-mix(in srgb, var(--accent) 78%, #fffdfa);
}

.article-intro-quote {
  margin: 0 0 30px;
  padding: 0 0 0 22px;
  border-left: 3px solid rgba(216, 108, 60, 0.55);
  font-family: "Source Serif 4", serif;
  font-size: 31px;
  line-height: 1.26;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #2a2d33;
}

.article-quick-nav {
  margin: 0 0 30px;
  padding: 20px 22px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(246, 239, 230, 0.9));
  border: 1px solid rgba(216, 108, 60, 0.14);
}

.article-quick-nav h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.article-quick-nav__items {
  display: grid;
  gap: 10px;
}

.article-quick-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #20252c;
  font-size: 16px;
  line-height: 1.45;
}

.article-quick-nav__item::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 80%, #f8f4ee);
}

.article-quick-nav__item--level-3 {
  padding-left: 18px;
  color: #4a5058;
}

.article-topic-cluster {
  margin: 0 0 30px;
  padding: 20px 22px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 241, 232, 0.92));
  border: 1px solid rgba(216, 108, 60, 0.14);
}

.article-topic-cluster h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.article-topic-cluster__items {
  display: grid;
  gap: 10px;
}

.article-topic-cluster__item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.article-topic-cluster__item strong {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: #20252c;
}

.article-topic-cluster__item span:last-child {
  color: #4c5158;
}

.article-topic-cluster__eyebrow {
  color: var(--accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-body {
  max-width: 86ch;
}

.article-body p {
  margin: 0 0 20px;
  font-family: "Source Serif 4", serif;
  font-size: var(--font-article);
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
}

.article-body__heading {
  margin: 42px 0 18px;
  font-family: "Sora", sans-serif;
  font-size: var(--font-h3);
  line-height: var(--lh-h3);
  font-weight: var(--fw-h3);
  letter-spacing: -0.03em;
}

.article-body__subheading {
  margin: 28px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
  letter-spacing: -0.02em;
}

.article-body__heading,
.article-body__subheading {
  scroll-margin-top: 110px;
}

.article-inline-list {
  margin: 34px 0 36px;
  padding: 24px 26px;
  border-top: 4px solid color-mix(in srgb, var(--accent) 74%, #fffdfa);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(247, 241, 234, 0.9));
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.05);
}

.article-inline-list h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
  letter-spacing: -0.03em;
}

.article-inline-list ul {
  margin: 0;
  padding-left: 22px;
}

.article-inline-list h2 + ul {
  margin-top: 2px;
}

.article-inline-list li {
  margin: 0 0 12px;
  font-family: "Source Serif 4", serif;
  font-size: var(--font-article);
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
}

.article-inline-list li:last-child {
  margin-bottom: 0;
}

.article-inline-media {
  margin: 38px 0 40px;
}

.article-inline-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}

.article-inline-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.5;
}

.article-inline-chart {
  margin: 38px 0 40px;
  padding: 26px 26px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(246, 248, 251, 0.98), rgba(234, 239, 245, 0.92));
  border-top: 4px solid rgba(46, 107, 203, 0.58);
  border-left: 1px solid rgba(42, 111, 136, 0.08);
  border-right: 1px solid rgba(42, 111, 136, 0.08);
  border-bottom: 1px solid rgba(42, 111, 136, 0.08);
}

.article-inline-chart__head {
  margin-bottom: 18px;
}

.article-inline-chart__head h2 {
  margin: 6px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
  letter-spacing: -0.03em;
}

.article-inline-chart__head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.55;
}

.article-inline-chart__rows {
  display: grid;
  gap: 14px;
}

.article-inline-chart__row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 210px;
  gap: 14px;
  align-items: center;
}

.article-inline-chart__label {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.article-inline-chart__track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(17, 19, 23, 0.08);
}

.article-inline-chart__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--chart-accent) 76%, #ffffff), var(--chart-accent));
}

.article-inline-chart__caption {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.article-inline-table {
  margin: 38px 0 40px;
  padding: 22px 22px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.98));
  border-top: 4px solid rgba(17, 19, 23, 0.18);
  border-left: 1px solid rgba(17, 19, 23, 0.08);
  border-right: 1px solid rgba(17, 19, 23, 0.08);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.06);
}

.article-inline-table__head {
  margin-bottom: 14px;
}

.article-inline-table__head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
  letter-spacing: -0.03em;
}

.article-inline-table__head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--font-small);
  line-height: 1.55;
}

.article-inline-table__wrap {
  overflow-x: auto;
}

.article-inline-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.article-inline-table th,
.article-inline-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
  font-size: calc(var(--font-article) - 2px);
  line-height: 1.55;
}

.article-inline-table th {
  border-top: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-inline-table td {
  color: #353941;
}

.article-read-more {
  margin: 38px 0 40px;
  padding: 22px 24px;
  border: 1px solid rgba(166, 75, 47, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 235, 0.97));
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.06);
}

.article-read-more .eyebrow {
  margin-bottom: 10px;
}

.article-read-more__items {
  display: grid;
  gap: 16px;
}

.article-read-more__item {
  padding-top: 14px;
  border-top: 1px solid rgba(17, 18, 21, 0.08);
}

.article-read-more__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-read-more__item h3 {
  margin: 6px 0 8px;
  font-size: var(--font-h4);
  line-height: var(--lh-h3);
}

.article-read-more__item p:last-child {
  margin-bottom: 0;
  color: #4a4f56;
  font-size: calc(var(--font-article) - 2px);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .article-inline-chart {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .article-inline-chart__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-inline-chart__caption {
    font-size: 14px;
  }

  .article-inline-table {
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .article-inline-table table {
    min-width: 560px;
  }

  .article-read-more {
    padding: 20px 18px;
  }
}

.article-body p:first-child::first-letter {
  float: left;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 4.5rem;
  line-height: 0.78;
  font-weight: 800;
}

.archive-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  padding: 30px 0 38px;
  margin-top: 28px;
  background:
    linear-gradient(180deg, rgba(16, 18, 22, 0.98), rgba(24, 27, 33, 0.98));
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand strong {
  display: block;
  max-width: 24ch;
  font-family: "Source Serif 4", serif;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.site-footer__copy {
  margin: 0;
  max-width: 480px;
  color: rgba(232, 235, 241, 0.72);
}

.site-footer__content {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: flex-end;
  font-size: var(--font-small);
  color: rgba(232, 235, 241, 0.68);
}

.site-footer__nav a:hover {
  color: #fff;
}

.info-page {
  padding: 24px 0 64px;
}

.info-hero,
.info-layout {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.info-hero {
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line-strong);
}

.services-hero {
  border-bottom: 0;
}

.info-hero__inner {
  max-width: 860px;
}

.info-hero h1 {
  margin-bottom: 12px;
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
  font-weight: var(--fw-h1);
}

.info-hero__lead {
  margin: 0 0 14px;
  color: #43474d;
  font-size: var(--font-lead);
  line-height: var(--lh-body);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  gap: 28px;
  padding-top: 24px;
}

.services-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.service-tool__sheet {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(252, 250, 245, 0.98), rgba(245, 240, 231, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(91, 111, 63, 0.14);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #5b6f3f;
}

.service-tool__sheet {
  border-top: 4px solid rgba(91, 111, 63, 0.48);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #5b6f3f, #93a56b);
  opacity: 0.7;
}

.service-card h2,
.service-tool__sheet h2 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.service-card p,
.service-note,
.service-tool__aside p {
  color: #464b52;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #5b6f3f, #93a56b);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 18px 34px rgba(91, 111, 63, 0.22);
}

.service-card .button-primary {
  margin-top: auto;
  align-self: flex-start;
}

.service-card > p:last-of-type {
  margin-bottom: 20px;
}

.service-tool {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.service-tool__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
}

.service-tool__aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contacts-layout {
  align-items: start;
}

.contacts-sheet p:first-of-type {
  font-size: var(--font-lead);
  line-height: 1.5;
}

.contacts-map {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contacts-map iframe {
  display: block;
}

.service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-form label {
  display: grid;
  gap: 8px;
}

.service-form label span {
  color: var(--muted);
  font-size: var(--font-small);
  font-weight: var(--fw-body-strong);
}

.service-form input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 254, 251, 0.96);
  font: inherit;
  color: var(--ink);
}

.service-form button {
  align-self: end;
}

.service-results {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-result-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1b1f27, #262b33);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-result-card span {
  display: block;
  color: rgba(236, 240, 246, 0.62);
  font-size: var(--font-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-result-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #fff;
}

.service-note {
  margin: 18px 0 0;
  font-size: var(--font-small);
}

.info-sheet {
  padding: 36px 42px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border-top: 3px solid rgba(17, 19, 23, 0.12);
}

.info-sheet h2 {
  margin: 0 0 12px;
}

.info-sheet p + h2,
.info-sheet ul + h2 {
  margin-top: 28px;
}

.info-sheet p,
.info-list li {
  font-family: "Source Serif 4", serif;
  font-size: var(--font-body);
  line-height: var(--lh-body);
}

.info-list p,
.info-list a {
  font-family: "Source Serif 4", serif;
  font-size: var(--font-body);
  line-height: var(--lh-body);
}

.info-list {
  margin: 0;
  padding-left: 22px;
}

.sitemap-sheet {
  display: grid;
  gap: 28px;
}

.sitemap-section__meta {
  margin: -2px 0 14px;
  color: var(--muted);
  font-size: var(--font-small);
}

.sitemap-section h3 {
  margin: 18px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-h4);
  letter-spacing: -0.03em;
}

.info-aside {
  display: grid;
  gap: 12px;
  align-content: start;
}

.info-aside__card,
.article-author-card,
.article-sources,
.article-disclaimer {
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid rgba(17, 19, 23, 0.12);
}

.info-aside__card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-aside__card strong a {
  color: inherit;
}

.info-aside__card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--font-small);
}

.article-sheet > section {
  margin-top: 28px;
}

.article-sources h2,
.article-disclaimer h2,
.article-author-card h2 {
  margin-bottom: 12px;
}

.article-sources__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.article-sources__list li,
.article-disclaimer p,
.article-author-card p {
  font-size: var(--font-article);
  line-height: var(--lh-body);
}

.article-author-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
}

.article-author-card__role {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--font-small);
}

.article-faq {
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid rgba(46, 107, 203, 0.44);
}

.article-faq h2 {
  margin-bottom: 14px;
}

.article-faq__items {
  display: grid;
  gap: 14px;
}

.article-faq__item {
  padding-top: 14px;
  border-top: 1px solid rgba(17, 18, 21, 0.08);
}

.article-faq__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-faq__item h3 {
  margin: 0 0 8px;
  font-size: var(--font-h4);
  line-height: var(--lh-h3);
}

.article-faq__item p {
  margin: 0;
  font-size: var(--font-article);
  line-height: var(--lh-body);
}

@media (max-width: 1200px) {
  .site-header__inner,
  .home-hero__inner,
  .news-card__body,
  .news-row,
  .category-hero__inner,
  .category-shelf__grid,
  .article-hero__inner,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .site-header__center {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.08);
  }

  .hero-board,
  .category-hero__board {
    grid-template-columns: 1fr;
  }

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

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

  .story-tile--wide,
  .story-tile--portrait,
  .story-tile--square {
    grid-column: span 1;
  }

  .article-rail {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-share {
    margin-top: 16px;
    padding-top: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --font-h1: 32px;
    --font-h2: 26px;
    --font-h3: 22px;
    --font-h4: 18px;
    --font-lead: 18px;
    --font-body: 16px;
    --font-article: 16px;
    --font-small: 14px;
    --font-label: 14px;
  }

  .site-topline__inner,
  .site-header__inner,
  .site-nav,
  .latest-strip__inner,
  .page-title,
  .home-hero__inner,
  .news-deck,
  .news-roundup,
  .spotlight-wall,
  .home-sections,
  .news-listing,
  .archive-section,
  .category-hero__inner,
  .category-feature,
  .category-hubs,
  .hub-brief,
  .article-hero__inner,
  .article-layout,
  .article-related,
  .hub-hero__inner,
  .hub-feature,
  .hub-supporting,
  .site-footer__inner {
    width: min(var(--max), calc(100% - 20px));
  }

  .site-topline {
    display: none;
  }

  .latest-strip {
    border-top: 1px solid rgba(17, 19, 23, 0.06);
  }

  .latest-strip__inner,
  .latest-strip__items {
    grid-template-columns: 1fr;
  }

  .latest-strip__inner {
    padding: 10px 0;
    gap: 8px;
  }

  .latest-strip__items {
    display: grid;
    gap: 8px;
  }

  .latest-strip__items a {
    white-space: normal;
    align-items: baseline;
  }

  .latest-strip__items a + a {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(17, 19, 23, 0.08);
  }

  .latest-strip__more {
    justify-self: start;
  }

  .page-title__lead {
    margin-top: 10px;
  }

  .site-header {
    position: static;
    box-shadow: none;
    border-bottom: 0;
    background: transparent;
  }

  .site-header__inner {
    padding: 14px 0 10px;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    justify-items: stretch;
  }

  .site-header__center,
  .site-nav-wrap {
    display: none;
  }

  .site-logo {
    min-width: 0;
  }

  .site-logo__mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .site-logo__mark-ring {
    inset: 6px;
    border-radius: 10px;
  }

  .site-logo__mark-text {
    font-size: 18px;
  }

  .site-logo__text {
    gap: 2px;
  }

  .site-logo__text strong {
    font-size: 18px;
  }

  .site-logo__tagline {
    display: none;
  }

  .site-menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-header.is-menu-open .site-nav-wrap {
    display: block;
    padding-bottom: 8px;
  }

  .site-nav {
    display: grid;
    gap: 8px;
    min-height: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 10px 24px rgba(17, 19, 23, 0.06);
  }

  .site-topline__inner,
  .site-footer__inner,
  .meta-row,
  .category-meta-line {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .page,
  .article-page,
  .info-page {
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .home-hero,
  .category-hero,
  .article-hero {
    margin-bottom: 18px;
  }

  .hero-lead,
  .news-card,
  .news-row,
  .story-tile,
  .category-shelf,
  .archive-card,
  .category-hero__copy,
  .category-feature__article,
  .category-hub-card,
  .hub-supporting-card,
  .hub-feature__article,
  .hub-hero__copy,
  .hub-hero__aside,
  .hub-brief__copy,
  .hub-brief__links,
  .article-topic-cluster,
  .article-sheet,
  .info-sheet,
  .article-author-card,
  .article-sources,
  .article-disclaimer {
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(19, 22, 28, 0.06);
  }

  .hero-board,
  .category-hero__board {
    padding: 10px;
    border-radius: 20px;
  }

  .article-sheet {
    padding: 20px 18px;
  }

  .article-quick-nav {
    padding: 18px;
  }

  .story-tile,
  .archive-card {
    padding: 14px;
    border-radius: 18px;
  }

  .category-hubs__grid,
  .hub-supporting__grid,
  .hub-brief__inner,
  .hub-hero__inner,
  .hub-feature__article,
  .hub-supporting-card {
    grid-template-columns: 1fr;
  }

  .story-tile__body,
  .archive-card__body,
  .category-shelf__lead-body,
  .compact-story__body,
  .hub-supporting-card__body {
    padding-top: 10px;
  }

  .author-card__avatar {
    width: 104px;
    height: 104px;
    margin: 0 0 2px;
  }

  .author-profile__avatar {
    width: 124px;
    height: 124px;
    margin-bottom: 14px;
  }

  .article-author-card__avatar {
    width: 92px;
    height: 92px;
    margin-bottom: 14px;
  }

  .hero-board__feature-body {
    padding: 16px 16px 14px;
  }

  .hero-board__feature h2 {
    max-width: none;
    font-size: 22px;
  }

  .hero-board__grid {
    grid-template-columns: 1fr;
  }

  .spotlight-grid,
  .news-roundup__grid,
  .category-shelf__cards,
  .category-shelf__archive {
    grid-template-columns: 1fr;
  }

  .news-row__cover {
    order: -1;
  }

  .news-card__body {
    grid-template-columns: 1fr;
  }

  .news-card__cover {
    order: -1;
  }

  .info-hero,
  .info-layout {
    width: min(var(--max), calc(100% - 24px));
  }

  .info-layout,
  .article-author-card {
    grid-template-columns: 1fr;
  }

  .site-footer__content {
    justify-items: start;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(17, 19, 23, 0.03);
    font-size: var(--font-small);
    box-shadow: none;
  }

  .site-nav__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 10px;
  }

  .site-nav__icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .button-primary + .text-link {
    margin-left: 0;
  }

  .home-hero__description,
  .story-tile__body p,
  .archive-card__body p,
  .category-shelf__lead-body p,
  .category-feature__body p,
  .hub-feature__body p,
  .hub-supporting-card__body p,
  .category-hub-card > p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
  }

  .story-tile__body p,
  .archive-card__body p,
  .category-shelf__archive,
  .article-hero__credit {
    display: none;
  }

  .section-head {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .section-head h2 {
    font-size: 22px;
    line-height: 1.22;
  }

  .hero-lead h1,
  .page-title h1,
  .category-hero h1,
  .article-hero h1,
  .hub-hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .article-share__actions {
    gap: 8px;
  }

  .article-share__link,
  .article-share__button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .page-title h1 {
    max-width: none;
  }

  .page-title__meta {
    gap: 6px 10px;
  }

  .category-shelf__header h2,
  .category-feature__body h2,
  .hub-feature__body h2 {
    font-size: 22px;
    line-height: 1.24;
  }

  .story-tile h3,
  .archive-card h3,
  .compact-story h3,
  .category-hub-card h3,
  .hub-supporting-card h3 {
    font-size: 18px;
    line-height: 1.28;
  }

  .site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .story-tile--wide,
  .story-tile--portrait,
  .story-tile--square {
    grid-column: span 1;
  }

  .archive-grid,
  .archive-grid--related {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-topline__inner {
    gap: 8px;
  }

  .hero-lead h1,
  .category-hero h1,
  .article-hero h1,
  .hub-hero h1 {
    max-width: none;
  }

  .article-rail {
    grid-template-columns: 1fr;
  }

  .article-sheet {
    padding: 24px;
  }

  .article-intro-quote {
    padding-left: 18px;
    font-size: 24px;
    line-height: 1.3;
  }

  .service-results {
    grid-template-columns: 1fr;
  }
}
