

:root {
  color-scheme: light;
  --page-bg: #f5f7f2;
  --surface: #ffffff;
  --surface-muted: #eef4ee;
  --surface-strong: #18372d;
  --text: #10231d;
  --muted: #5f7068;
  --line: rgba(16, 35, 29, 0.12);
  --brand: #1f5e48;
  --brand-strong: #123c2d;
  --accent: #d9b15c;
  --accent-soft: rgba(217, 177, 92, 0.16);
  --success-soft: rgba(78, 171, 118, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --shadow: 0 28px 80px -44px rgba(15, 31, 25, 0.45);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 520px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(130,205,135,0.28), transparent 42%),
    radial-gradient(circle at top right, rgba(2,124,122,0.16), transparent 38%),
    linear-gradient(180deg, #f8fbf6 0%, var(--page-bg) 100%);
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover { color: var(--brand-strong); }
img { max-width: 100%; }
.shell {
  position: relative;
  min-height: 100vh;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.public-shell-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 12px 36px -34px rgba(15, 23, 42, 0.42);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(140deg, #eef8ef 0%, #dff0df 54%, #f7ecd0 100%);
  border: 1px solid rgba(31, 94, 72, 0.1);
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.nav a, .nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 29, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.nav a.primary {
  background: linear-gradient(135deg, var(--brand) 0%, #1f7052 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 45px -28px rgba(18, 60, 45, 0.72);
}
.hero {
  padding: 46px 0 18px;
}
.hero-card,
.section-card,
.category-card,
.post-card,
.research-card,
.cta-card,
.toc-card,
.footer-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card {
  overflow: hidden;
  border-radius: 34px;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(217,177,92,0.18), transparent 28%),
    linear-gradient(155deg, rgba(255,255,255,0.98) 0%, rgba(241,247,242,0.98) 72%, rgba(229,239,232,0.98) 100%);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(31, 94, 72, 0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 24px;
}
.hero-card h1,
.hero-card h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero-copy {
  margin-top: 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}
.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(16,35,29,0.08);
  background: rgba(255,255,255,0.72);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}
.button.primary {
  background: linear-gradient(135deg, var(--brand) 0%, #1f7052 100%);
  border-color: transparent;
  color: #fff;
}
.button:hover {
  transform: translateY(-1px);
}
.hero-side {
  display: grid;
  gap: 14px;
}
.metric-card {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16,35,29,0.08);
}
.metric-card strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.section {
  padding: 18px 0 24px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section-header p {
  margin: 10px 0 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.72;
}
.grid {
  display: grid;
  gap: 18px;
}
.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-card,
.post-card,
.research-card,
.section-card,
.cta-card,
.toc-card {
  border-radius: var(--radius-xl);
  padding: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 94, 72, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}
.pill.is-active {
  background: linear-gradient(135deg, rgba(31,94,72,0.14) 0%, rgba(217,177,92,0.14) 100%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.category-card h3,
.post-card h3,
.research-card h3,
.cta-card h2,
.toc-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}
.category-card p,
.post-card p,
.research-card p,
.cta-card p,
.toc-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow: 0 32px 80px -48px rgba(15, 23, 42, 0.36);
}
.post-card-media {
  display: block;
  margin: -10px -10px 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}
.post-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease;
}
.post-card:hover .post-card-media img {
  transform: scale(1.025);
}
.post-card .button-link {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 700;
}
.post-card[hidden] {
  display: none !important;
}
.research-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}
.research-card.alt {
  background:
    radial-gradient(circle at top right, rgba(31,94,72,0.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(243,249,245,0.98) 100%);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.breadcrumb span.separator {
  color: rgba(95, 112, 104, 0.6);
}
.category-intro,
.article-layout {
  display: grid;
  gap: 22px;
}
.category-intro {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
}
.article-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.article-layout > *,
.prose,
.toc-card,
.cta-card.article-cta {
  min-width: 0;
}
.article-header {
  margin-bottom: 18px;
}
.article-header h1 {
  margin: 0;
  font-size: clamp(32px, 4.3vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.article-description {
  margin-top: 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.article-meta .pill {
  background: rgba(255,255,255,0.9);
}
.prose {
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(110, 231, 183, 0.08), transparent 28%),
    rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }
.prose h2,
.prose h3 {
  scroll-margin-top: 96px;
  color: var(--text);
}
.prose h2 {
  position: relative;
  margin: 44px 0 16px;
  padding-top: 16px;
  font-size: 28px;
  line-height: 1.16;
}
.prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981 0%, rgba(234, 168, 53, 0.82) 100%);
}
.prose h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.22;
}
.prose strong {
  color: #193d31;
}
.prose p,
.prose li,
.prose blockquote {
  color: #24342d;
  font-size: 17px;
  line-height: 1.84;
}
.prose ul,
.prose ol {
  margin: 18px 0;
  padding-left: 24px;
}
.prose li + li { margin-top: 8px; }
.prose blockquote {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(167, 243, 208, 0.78);
  border-left: 4px solid rgba(16,185,129,0.32);
  background: rgba(238, 244, 238, 0.75);
  border-radius: 20px;
}
.prose code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(18, 60, 45, 0.08);
  font-size: 0.92em;
}
.prose pre {
  overflow-x: auto;
  padding: 16px;
  border-radius: 18px;
  background: #11261f;
  color: #f6faf8;
}
.prose pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}
.prose-table-wrap {
  width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(110, 231, 183, 0.12), transparent 32%),
    #ffffff;
  box-shadow: 0 20px 52px -42px rgba(15, 23, 42, 0.35);
}
.prose table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.65;
}
.prose th,
.prose td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  vertical-align: top;
  text-align: left;
}
.prose th {
  background: rgba(236, 253, 245, 0.82);
  color: #264d3e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prose tbody tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.74);
}
.prose tbody tr:hover td {
  background: rgba(240, 253, 250, 0.7);
}
.prose tr:last-child td {
  border-bottom: 0;
}
.prose a {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.prose hr {
  height: 1px;
  margin: 34px 0;
  border: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.12) 18%, rgba(15, 23, 42, 0.12) 82%, transparent 100%);
}
.prose-figure {
  margin: 32px 0;
}
.prose-figure img {
  display: block;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
  box-shadow: 0 24px 60px -42px rgba(15, 23, 42, 0.45);
}
.prose-figure figcaption {
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}
.article-cover {
  margin: 26px 0 0;
}
.article-cover img {
  display: block;
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 28px 70px -46px rgba(15, 23, 42, 0.5);
}
.toc-card {
  position: sticky;
  top: 100px;
}
.toc-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}
.toc-list a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}
.toc-list a:hover {
  color: var(--brand);
}
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cta-card {
  margin-top: 22px;
  background:
    radial-gradient(circle at top right, rgba(217,177,92,0.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(240,247,241,0.98) 100%);
}
.cta-card.article-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 24px;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(110, 231, 183, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(234, 168, 53, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,250,246,0.98) 100%);
  color: #0f172a;
}
.article-cta::after {
  content: "";
  position: absolute;
  inset: auto -70px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  border: 38px solid rgba(16, 185, 129, 0.08);
}
.article-cta .eyebrow {
  width: fit-content;
  background: rgba(236, 253, 245, 0.92);
  border-color: rgba(167, 243, 208, 0.95);
  color: #047857;
}
.article-cta h2,
.article-cta p {
  color: #0f172a;
}
.article-cta p {
  max-width: 690px;
  color: #475569;
}
.article-cta .button {
  border-color: rgba(226, 232, 240, 1);
}
.article-cta .button.primary {
  background: #264d3e;
  color: #fff;
}
.article-cta .button:not(.primary) {
  background: #fff;
  color: #334155;
}
.article-cta-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(226, 232, 240, 0.96);
  backdrop-filter: blur(14px);
}
.article-cta-panel strong {
  display: block;
  color: #047857;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.article-cta-panel ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.article-cta-panel li {
  position: relative;
  padding-left: 22px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}
.article-cta-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}
.footer {
  padding: 26px 0 34px;
}
.footer-card {
  border-radius: 34px;
  padding: 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 800;
}
.muted-link {
  color: var(--muted);
}
@media (max-width: 960px) {
  .hero-grid,
  .category-intro,
  .article-layout,
  .article-cta,
  .research-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .category-grid,
  .post-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .toc-card {
    position: static;
  }
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, 100%);
  }
  .topbar-inner {
    min-height: 66px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-card,
  .section-card,
  .category-card,
  .post-card,
  .research-card,
  .cta-card,
  .toc-card,
  .footer-card,
  .prose {
    padding: 20px;
    border-radius: 24px;
  }
  .category-grid,
  .post-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .hero-card h1,
  .hero-card h2,
  .article-header h1 {
    font-size: 34px;
  }
  .hero-copy,
  .article-description,
  .prose p,
  .prose li,
  .prose blockquote {
    font-size: 16px;
  }
}

/* Landing shell overrides */
:root {
  --page-bg: #f3f7f1;
  --surface-muted: #f8fbf6;
  --surface-strong: #16372c;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --brand: #264d3e;
  --brand-strong: #1f4134;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --success-soft: rgba(110, 231, 183, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --shadow: 0 28px 70px -40px rgba(15, 23, 42, 0.25);
  --public-hero-title: clamp(2.35rem, 5vw, 3.85rem);
  --public-section-title: clamp(1.75rem, 3vw, 2rem);
  --public-card-title: 1.15rem;
  --public-card-body: 0.875rem;
  --public-body: clamp(1.02rem, 1.5vw, 1.125rem);
  --public-body-sm: 1rem;
  --public-section-y: 56px;
  --public-section-y-compact: 40px;
}
.container {
  width: min(1120px, calc(100% - 32px));
}
.topbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
}
.topbar-inner {
  min-height: 68px;
  padding: 13px 28px;
  gap: 14px;
}
.brand {
  gap: 12px;
}
.landing-logo {
  display: block;
  width: auto;
  height: 36px;
}
.brand-name {
  display: inline;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
@media (min-width: 640px) {
  .brand-name {
    display: inline;
  }
}
.topbar-nav-desktop,
.topbar-actions {
  display: flex;
  align-items: center;
}
.topbar-nav-desktop {
  gap: 8px;
}
.topbar-actions {
  gap: 12px;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(203, 213, 225, 0.94);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.96);
  padding: 3px;
}
.language-switch__option {
  display: inline-flex;
  min-width: 36px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.language-switch__option:hover {
  color: #0f172a;
}
.language-switch__option.is-active {
  background: #264d3e;
  color: #ffffff;
  box-shadow: 0 10px 22px -16px rgba(15, 23, 42, 0.46);
}
.language-switch--mobile {
  width: max-content;
  margin-bottom: 8px;
}
.topbar-link,
.topbar-link-secondary,
.topbar-link-primary,
.topbar-mobile-link,
.topbar-mobile-link-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.topbar-link {
  min-height: 38px;
  padding: 0 16px;
  color: #475569;
}
.topbar-link:hover {
  background: rgba(241, 245, 249, 0.92);
  color: #0f172a;
}
.topbar-link-secondary {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #fff;
  color: #334155;
  font-weight: 700;
  box-shadow: 0 10px 26px -22px rgba(15, 23, 42, 0.36);
}
.topbar-link-secondary:hover {
  border-color: rgba(203, 213, 225, 1);
  color: #0f172a;
}
.topbar-link-primary,
.topbar-mobile-link-primary {
  gap: 8px;
  border: 0;
  background: #264d3e;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 20px 40px -25px rgba(2, 8, 23, 0.32);
}
.topbar-link-primary {
  min-height: 38px;
  padding: 0 18px;
}
.topbar-link-primary:hover,
.topbar-mobile-link-primary:hover {
  background: #1f4134;
  color: #fff;
}
.topbar-link-arrow {
  font-size: 14px;
  line-height: 1;
}
.topbar-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  cursor: pointer;
}
.topbar-menu-button::-webkit-details-marker {
  display: none;
}
.topbar-menu-button::marker {
  content: "";
}
.topbar-menu-button span {
  font-size: 18px;
  line-height: 1;
}
.topbar-mobile-shell {
  display: none;
}
.topbar-mobile-panel {
  display: none;
  padding: 0 0 16px;
}
.topbar-mobile-shell[open] .topbar-mobile-panel {
  display: block;
}
.topbar-mobile-links,
.topbar-mobile-actions {
  display: grid;
  gap: 8px;
}
.topbar-mobile-link,
.topbar-mobile-link-primary {
  justify-content: flex-start;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
}
.topbar-mobile-link {
  color: #334155;
}
.topbar-mobile-link:hover {
  background: rgba(248, 250, 252, 0.92);
  color: #0f172a;
}
.topbar-mobile-actions {
  margin-top: 12px;
}
.hero {
  padding: 32px 0 var(--public-section-y);
}
.hero-card {
  border-radius: 40px;
  padding: clamp(32px, 4vw, 44px);
  background:
    radial-gradient(circle at top right, rgba(110,231,183,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,250,246,0.98) 100%);
}
.hero-card h1,
.hero-card h2 {
  font-size: var(--public-hero-title);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.hero-copy,
.article-description {
  font-size: var(--public-body);
  line-height: 1.78;
}
.section {
  padding: var(--public-section-y) 0;
}
.section-header {
  margin-bottom: 32px;
}
.section-header h2 {
  font-size: var(--public-section-title);
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.section-header p,
.cta-card p {
  font-size: var(--public-body);
  line-height: 1.78;
}
.category-card,
.post-card,
.research-card,
.section-card,
.cta-card,
.toc-card,
.prose {
  padding: clamp(24px, 3vw, 32px);
}
.category-card h3,
.post-card h3,
.research-card h3,
.toc-card h3 {
  font-size: var(--public-card-title);
  line-height: 1.55;
  letter-spacing: 0;
}
.category-card p,
.post-card p,
.research-card p,
.toc-card p,
.metric-card span {
  color: #475569;
  font-size: var(--public-card-body);
  line-height: 2;
}
.cta-card h2 {
  font-size: var(--public-section-title);
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.kicker,
.eyebrow {
  background: rgba(236, 253, 245, 0.9);
  border: 1px solid rgba(167, 243, 208, 0.9);
  color: #047857;
  letter-spacing: 0.2em;
  font-size: 11px;
}
.section-card,
.category-card,
.post-card,
.research-card,
.cta-card,
.toc-card,
.hero-card,
.prose {
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}
.metric-card {
  border-radius: 28px;
  background: rgba(248, 250, 252, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.metric-card strong {
  color: #047857;
  letter-spacing: 0.14em;
  font-size: 13px;
}
.button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #fff;
  color: #334155;
  box-shadow: 0 10px 30px -22px rgba(15, 23, 42, 0.25);
}
.button.primary {
  background: #264d3e;
  color: #fff;
}
.pill {
  border-color: rgba(226, 232, 240, 1);
  color: #264d3e;
}
.pill.is-active {
  background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(110,231,183,0.18) 100%);
}
.prose {
  border-radius: 36px;
}
.prose p,
.prose li,
.prose blockquote {
  color: #334155;
}
.prose blockquote {
  border-left-color: rgba(16,185,129,0.22);
  background: rgba(240, 253, 250, 0.92);
}
.cta-card {
  background:
    radial-gradient(circle at top right, rgba(110,231,183,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,250,246,0.98) 100%);
}
.cta-card.article-cta {
  background:
    radial-gradient(circle at top right, rgba(110, 231, 183, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(234, 168, 53, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,250,246,0.98) 100%);
}
.article-cta h2 {
  color: #0f172a;
}
.article-cta p,
.article-cta-panel li {
  color: #475569;
}
.article-cta-panel strong {
  color: #047857;
}
.landing-footer {
  padding: 20px 0 28px;
}
.landing-footer-card {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background:
    radial-gradient(circle at top left, rgba(110,231,183,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,250,246,0.98) 100%);
  box-shadow: var(--shadow);
  padding: 32px;
}
.landing-footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
}
.landing-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-footer-subtitle {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}
.landing-footer-section-title {
  margin: 0;
  color: #047857;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.landing-footer-copy {
  margin: 20px 0 0;
  max-width: 620px;
  color: #475569;
  font-size: 13px;
  line-height: 1.85;
}
.landing-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.landing-footer-links a {
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}
.landing-footer-links a:hover {
  color: #0f172a;
}
.landing-footer-note {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
}
.inweb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(167, 243, 208, 0.9);
  background: rgba(236, 253, 245, 0.9);
  color: #475569;
  font-size: 12px;
}
.inweb-pill a {
  color: #047857;
  font-weight: 900;
}
.landing-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  color: #64748b;
  font-size: 12px;
}
.provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.provider-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px -18px rgba(15, 23, 42, 0.35);
}
.provider-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}
.provider-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .topbar-nav-desktop,
  .topbar-actions {
    display: none;
  }
  .topbar-mobile-shell {
    display: block;
  }
  .topbar-mobile-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    border-top: 1px solid rgba(241, 245, 249, 1);
    background: #fff;
    box-shadow: 0 24px 54px -34px rgba(15, 23, 42, 0.42);
    padding: 12px max(16px, calc((100vw - 1120px) / 2 + 16px)) 16px;
  }
}
@media (max-width: 960px) {
  .landing-footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .topbar-inner {
    min-height: 72px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 0;
  }
  .landing-footer-card {
    padding: 20px;
    border-radius: 24px;
  }
  .landing-footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 24px 0 40px;
  }
  .hero-card {
    padding: 26px 22px;
    border-radius: 28px;
  }
  .hero-card h1,
  .hero-card h2,
  .article-header h1 {
    font-size: 2.35rem;
    line-height: 1.5;
  }
  .hero-copy,
  .article-description {
    font-size: 1.02rem;
    line-height: 2rem;
  }
  .section-header p,
  .cta-card p,
  .toc-card p {
    font-size: 1rem;
    line-height: 2rem;
  }
  .category-card p,
  .post-card p,
  .research-card p {
    font-size: var(--public-card-body);
    line-height: 2;
  }
  .section {
    padding: var(--public-section-y-compact) 0;
  }
  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .brand-name {
    display: none;
  }
}

/* Article layout */
.article-page {
  --article-bg: #eef1ea;
  --article-surface: #ffffff;
  --article-text: #0e1f17;
  --article-copy: #33433b;
  --article-muted: #7c867d;
  --article-line: #dfe4d9;
  --article-brand: #1f7a52;
  --article-dark: #022e20;
  --article-accent: #7fbf6a;
  position: relative;
  overflow: clip;
  background: var(--article-bg);
  color: var(--article-text);
  font-family: "Space Grotesk", sans-serif;
}
.article-reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 3px;
  pointer-events: none;
}
.article-reading-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #1f8a6e, var(--article-accent));
  transition: width 80ms linear;
}
.article-container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.article-container--reading {
  width: min(820px, calc(100% - 64px));
}
.article-page__lead {
  padding: 30px 0 64px;
}
.article-page .breadcrumb {
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #9aa39a;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-page .breadcrumb a {
  color: inherit;
}
.article-page .breadcrumb a:last-of-type {
  color: var(--article-brand);
}
.article-page .article-header {
  margin: 18px 0 0;
}
.article-page .article-header h1 {
  max-width: 810px;
  margin: 0;
  color: var(--article-text);
  font-size: clamp(38px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.article-page .article-description {
  max-width: 790px;
  margin: 18px 0 0;
  color: #5a665e;
  font-size: 20px;
  line-height: 1.6;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--article-line);
}
.article-author {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.article-author__avatar {
  display: inline-flex;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--article-dark);
  color: var(--article-accent);
  font-size: 13px;
  font-weight: 700;
}
.article-author__name {
  color: #1a2620;
  font-size: 13.5px;
  font-weight: 700;
}
.article-author__role,
.article-meta-item {
  color: var(--article-muted);
  font-family: "Space Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
}
.article-author__role {
  margin-top: 2px;
}
.article-byline__divider {
  width: 1px;
  height: 28px;
  background: var(--article-line);
}
.article-meta-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
}
.article-meta-item svg {
  flex: 0 0 auto;
  color: #9aa39a;
}
.article-cover {
  position: relative;
  overflow: hidden;
  margin: 30px 0 0;
  border: 1px solid #d9e1d2;
  border-radius: 18px;
  background: #f7faf4;
}
.article-cover img {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.article-cover__label {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(2, 46, 32, 0.86);
  color: #d5efc7;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-page .prose {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  counter-reset: article-section;
}
.article-page .prose p,
.article-page .prose li,
.article-page .prose blockquote {
  color: var(--article-copy);
  font-size: 18px;
  line-height: 1.78;
}
.article-page .prose p {
  margin: 0 0 20px;
}
.article-page .prose h2 {
  display: flex;
  align-items: baseline;
  margin: 54px 0 18px;
  padding: 0;
  color: var(--article-text);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  counter-increment: article-section;
}
.article-page .prose h2::before {
  content: counter(article-section, decimal-leading-zero);
  position: static;
  width: auto;
  height: auto;
  margin-right: 12px;
  border-radius: 0;
  background: none;
  color: var(--article-brand);
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.article-page .prose h3 {
  margin: 34px 0 14px;
  color: var(--article-text);
  font-size: 21px;
  line-height: 1.3;
}
.article-page .prose strong {
  color: var(--article-text);
}
.article-page .prose a {
  color: var(--article-brand);
  font-weight: 600;
  text-decoration-color: #b9d6a8;
  text-decoration-thickness: 1.5px;
}
.article-page .prose ul,
.article-page .prose ol {
  margin: 22px 0 28px;
}
.article-page .prose li + li {
  margin-top: 10px;
}
.article-page .prose blockquote {
  margin: 26px 0;
  padding: 18px 24px;
  border: 0;
  border-left: 3px solid var(--article-accent);
  border-radius: 0 12px 12px 0;
  background: #fff;
  color: #1a2620;
  font-style: italic;
}
.article-page .prose-table-wrap {
  margin: 26px 0 30px;
  border-color: #e4e8df;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}
.article-page .prose table {
  color: var(--article-copy);
  font-size: 14px;
}
.article-page .prose th,
.article-page .prose td {
  padding: 12px 16px;
  border-color: #eef1ea;
}
.article-page .prose th {
  background: #f4f7f0;
  color: var(--article-text);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
.article-page .prose tbody tr:nth-child(even) td,
.article-page .prose tbody tr:hover td {
  background: transparent;
}
.article-page .prose-figure {
  margin: 30px 0;
}
.article-page .prose-figure img {
  border-color: #dfe4d9;
  border-radius: 18px;
  box-shadow: none;
}
.article-page .prose-figure figcaption {
  margin-top: 8px;
  color: #9aa39a;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  text-align: left;
}
.article-page .prose .article-tool-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  gap: 30px;
  margin: 34px 0;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(127, 191, 106, 0.35);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(127, 191, 106, 0.16), transparent 34%),
    var(--article-dark);
  box-shadow: 0 22px 55px -40px rgba(2, 46, 32, 0.75);
}
.article-tool-cta__copy {
  position: relative;
  z-index: 1;
  align-self: center;
}
.article-page .prose .article-tool-cta__eyebrow {
  display: block;
  color: var(--article-accent);
  font-family: "Space Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-page .prose .article-tool-cta strong {
  display: block;
  max-width: 430px;
  margin-top: 12px;
  color: #fff;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.article-page .prose .article-tool-cta p {
  max-width: 480px;
  margin: 12px 0 0;
  color: #a9c6b6;
  font-size: 14px;
  line-height: 1.65;
}
.article-page .prose .article-tool-cta__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 0 17px;
  border: 1px solid var(--article-accent);
  border-radius: 10px;
  background: var(--article-accent);
  color: var(--article-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.article-page .prose .article-tool-cta__button:hover,
.article-page .prose .article-tool-cta__button:focus-visible {
  background: #9bd987;
  color: var(--article-dark);
  transform: translateY(-2px);
}
.article-tool-cta__button svg {
  transition: transform 180ms ease;
}
.article-tool-cta__button:hover svg {
  transform: translateX(3px);
}
.article-tool-cta__preview {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(203, 232, 190, 0.2);
  border-radius: 14px;
  background: #082f23;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transform: rotate(1.5deg);
}
.article-tool-cta__file-head {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(203, 232, 190, 0.12);
  background: rgba(255, 255, 255, 0.035);
}
.article-tool-cta__file-head > span {
  display: flex;
  gap: 5px;
}
.article-tool-cta__file-head i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #5b806f;
}
.article-tool-cta__file-head i:nth-child(2) {
  background: #7fbf6a;
}
.article-tool-cta__file-head code {
  padding: 0;
  background: transparent;
  color: #8fb4a2;
  font-family: "Space Mono", monospace;
  font-size: 9.5px;
}
.article-tool-cta__file-body {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: #8fb4a2;
  font-family: "Space Mono", monospace;
  font-size: 9.5px;
  line-height: 1.45;
}
.article-tool-cta__file-body b {
  color: #d5efc7;
  font-weight: 700;
}
.article-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid #e4e8df;
  border-radius: 16px;
  background: #fff;
}
.article-author-card .article-author__avatar {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  font-size: 16px;
}
.article-author-card__copy {
  min-width: 0;
}
.article-author-card__copy strong {
  color: #1a2620;
  font-size: 15px;
}
.article-author-card__copy p {
  margin: 5px 0 0;
  color: #5a665e;
  font-size: 13px;
  line-height: 1.6;
}
.article-toc-inline,
.article-toc-dock__panel {
  border: 1px solid #e4e8df;
  background: #fff;
}
.article-toc-inline {
  display: none;
  margin: 26px 0 34px;
  padding: 20px;
  border-radius: 16px;
}
.article-toc__eyebrow {
  color: #8a948d;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-toc-list {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}
.article-toc-list a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 10px;
  border-left: 2px solid transparent;
  border-radius: 10px;
  color: #5a665e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.article-toc-list a::before {
  content: attr(data-toc-number);
  color: #aab4ab;
  font-family: "Space Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
}
.article-toc-list a:hover,
.article-toc-list a.is-active {
  border-left-color: var(--article-brand);
  background: #eef4e7;
  color: var(--article-text);
}
.article-toc-list a.is-active::before {
  color: var(--article-brand);
}
.article-toc-dock {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 45;
  width: 286px;
}
.article-toc-dock__panel {
  margin-bottom: 12px;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(2, 40, 25, 0.22);
}
.article-toc-dock:not([open]) .article-toc-dock__panel {
  display: none;
}
.article-toc-dock__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.article-toc-dock__progress {
  color: var(--article-brand);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
}
.article-toc-dock__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--article-dark);
  color: #fff;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  list-style: none;
  box-shadow: 0 14px 34px rgba(2, 40, 25, 0.3);
}
.article-toc-dock__toggle::-webkit-details-marker {
  display: none;
}
.article-toc-dock__toggle svg {
  color: var(--article-accent);
}
.article-related {
  padding: 0 0 56px;
}
.article-related__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.article-related__eyebrow,
.article-cta__eyebrow {
  color: var(--article-brand);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-related__header h2 {
  margin: 8px 0 0;
  color: var(--article-text);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.article-related__all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--article-brand);
  font-size: 13.5px;
  font-weight: 700;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.article-related-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid #dde5d8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2, 40, 25, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.article-related-card:hover,
.article-related-card:focus-within {
  border-color: #b9cfac;
  box-shadow: 0 16px 36px rgba(2, 40, 25, 0.1);
  transform: translateY(-3px);
}
.article-related-card > a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.article-related-card__media {
  position: relative;
  display: block;
  height: 168px;
  overflow: hidden;
  border-bottom: 1px solid #e6ebe2;
  background: linear-gradient(135deg, #e8f0e3, #d4e2d3);
}
.article-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.article-related-card:hover .article-related-card__media img {
  transform: scale(1.035);
}
.article-related-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  overflow: hidden;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--article-brand);
  font-size: 10.5px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-related-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.article-related-card h3 {
  margin: 0;
  color: #1a2620;
  font-size: 16px;
  line-height: 1.4;
}
.article-related-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.article-related-card__meta time,
.article-related-card__read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.article-related-card__meta time {
  color: #78847c;
  font-size: 12px;
  line-height: 1.35;
}
.article-related-card__meta time svg {
  flex: none;
  color: #8ba090;
}
.article-related-card__read {
  color: var(--article-brand);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}
.article-related-card__read svg {
  transition: transform 180ms ease;
}
.article-related-card:hover .article-related-card__read svg {
  transform: translateX(3px);
}
.article-cta-section {
  padding: 0 0 56px;
}
.article-page .article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0;
  padding: 52px 48px;
  border: 0;
  border-radius: 22px;
  background: radial-gradient(120% 140% at 76% 12%, rgba(120, 191, 106, 0.17), rgba(2, 46, 32, 0) 55%), var(--article-dark);
  box-shadow: none;
}
.article-page .article-cta::after {
  display: none;
}
.article-page .article-cta__copy {
  max-width: 640px;
}
.article-page .article-cta__eyebrow {
  color: var(--article-accent);
}
.article-page .article-cta h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}
.article-page .article-cta p {
  margin: 12px 0 0;
  color: #a9c6b6;
  font-size: 15px;
  line-height: 1.6;
}
.article-page .article-cta .button.primary {
  flex: 0 0 auto;
  min-height: 52px;
  border: 1.5px solid var(--article-accent);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.article-page .article-cta .button.primary:hover,
.article-page .article-cta .button.primary:focus-visible {
  background: rgba(127, 191, 106, 0.12);
  color: #fff;
}
@media (max-width: 960px) {
  .article-toc-dock {
    display: none;
  }
  .article-toc-inline {
    display: block;
  }
  .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .article-container,
  .article-container--reading {
    width: min(100% - 32px, 100%);
  }
  .article-page__lead {
    padding: 24px 0 44px;
  }
  .article-page .article-header h1 {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.08;
  }
  .article-page .article-description {
    font-size: 17px;
    line-height: 1.65;
  }
  .article-byline {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .article-byline__divider {
    display: none;
  }
  .article-meta-list {
    order: 3;
    width: 100%;
  }
  .article-related-grid {
    grid-template-columns: 1fr;
  }
  .article-related-card__media {
    height: 190px;
  }
  .article-cover {
    margin-top: 24px;
    border-radius: 14px;
  }
  .article-cover__label {
    top: 10px;
    left: 10px;
  }
  .article-page .prose p,
  .article-page .prose li,
  .article-page .prose blockquote {
    font-size: 16.5px;
    line-height: 1.72;
  }
  .article-page .prose h2 {
    margin-top: 44px;
    font-size: 24px;
  }
  .article-page .prose .article-tool-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }
  .article-page .prose .article-tool-cta strong {
    font-size: 23px;
  }
  .article-page .prose .article-tool-cta__button {
    width: 100%;
    justify-content: center;
  }
  .article-tool-cta__preview {
    width: 100%;
    transform: none;
  }
  .article-author-card {
    align-items: flex-start;
    padding: 18px;
  }
  .article-related__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .article-page .article-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 24px;
  }
  .article-page .article-cta h2 {
    font-size: 27px;
  }
  .article-page .article-cta .button.primary {
    width: 100%;
  }
}

/* Blog landing — scoped so the shared public header and footer stay unchanged. */
.blog-home {
  --blog-ink: #13201a;
  --blog-deep: #022e20;
  --blog-green: #1f7a52;
  --blog-accent: #7fbf6a;
  --blog-muted: #5a665e;
  --blog-line: #e4e8df;
  --blog-surface: #ffffff;
  background:
    radial-gradient(circle at 8% 7%, rgba(127, 191, 106, 0.09), transparent 24rem),
    #eef1ea;
  color: var(--blog-ink);
  font-family: 'Space Grotesk', sans-serif;
  padding: 36px 0 56px;
}
.blog-home *,
.blog-home *::before,
.blog-home *::after {
  box-sizing: border-box;
}
.blog-home-container {
  width: min(1176px, calc(100% - 64px));
  margin: 0 auto;
}
.blog-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
  overflow: hidden;
  margin-bottom: 56px;
  border: 1px solid var(--blog-line);
  border-radius: 24px;
  background: var(--blog-surface);
  box-shadow: 0 18px 55px rgba(2, 46, 32, 0.05);
  animation: blog-home-rise 0.55s ease-out both;
}
.blog-home-hero__copy {
  padding: 48px 46px;
}
.blog-home-badge,
.blog-home-eyebrow,
.blog-home-card__badge,
.blog-home-count {
  font-family: 'Space Mono', monospace;
}
.blog-home-badge,
.blog-home-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1f7a52;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}
.blog-home-badge::before,
.blog-home-eyebrow::before {
  margin-right: 8px;
  content: '//';
}
.blog-home-badge > svg,
.blog-home-arrow svg {
  flex: 0 0 auto;
}
.blog-home-badge > svg {
  display: none;
}
.blog-home-hero h1 {
  max-width: 570px;
  margin: 22px 0 0;
  color: #0e1f17;
  font-size: clamp(38px, 4.1vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.blog-home-hero__description {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--blog-muted);
  font-size: 16px;
  line-height: 1.65;
}
.blog-home-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.blog-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid var(--blog-deep);
  border-radius: 12px;
  background: var(--blog-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.blog-home-button:hover,
.blog-home-button:focus-visible {
  color: #fff;
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.blog-home-count {
  color: #8a948d;
  font-size: 11px;
}
.blog-home-hero__topics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 40px;
  background:
    radial-gradient(circle at 90% 10%, rgba(127, 191, 106, 0.15), transparent 15rem),
    var(--blog-deep);
}
.blog-home-topic {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #eaf3ea;
  text-decoration: none;
}
.blog-home-topic:last-child {
  border-bottom: 0;
}
.blog-home-topic small {
  display: block;
  color: var(--blog-accent);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-home-topic strong {
  display: block;
  margin-top: 8px;
  color: inherit;
  font-size: 14.5px;
  line-height: 1.5;
}
.blog-home-topic:hover strong,
.blog-home-topic:focus-visible strong {
  color: #fff;
  transform: translateX(4px);
}
.blog-home-topic strong {
  transition: transform 0.18s ease, color 0.18s ease;
}
.blog-home-section {
  margin-bottom: 60px;
}
.blog-home-section:last-child {
  margin-bottom: 0;
}
.blog-home-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 24px;
}
.blog-home-section__header h2 {
  margin: 0;
  color: var(--blog-ink);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.blog-home-section__header p {
  max-width: 470px;
  margin: 0;
  color: var(--blog-muted);
  font-size: 13.5px;
  line-height: 1.55;
  text-align: right;
}
.blog-home-cta .blog-home-eyebrow {
  color: var(--blog-accent);
}
.blog-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.blog-home-category,
.blog-home-card,
.blog-home-market {
  border: 1px solid var(--blog-line);
  border-radius: 20px;
  background: var(--blog-surface);
  box-shadow: 0 8px 28px rgba(2, 40, 25, 0.035);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.blog-home-category:hover,
.blog-home-category:focus-visible,
.blog-home-card:hover,
.blog-home-card:focus-within,
.blog-home-market:hover,
.blog-home-market:focus-visible {
  border-color: #bfd4b3;
  box-shadow: 0 15px 34px rgba(2, 40, 25, 0.1);
  transform: translateY(-3px);
}
.blog-home-category {
  display: block;
  padding: 28px;
  color: inherit;
  text-decoration: none;
}
.blog-home-category__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-home-category__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #eef4e7;
  color: var(--blog-green);
}
.blog-home-category:nth-child(2) .blog-home-category__icon {
  background: #e6f2ec;
}
.blog-home-category:nth-child(3) .blog-home-category__icon {
  background: #f5efdd;
  color: #9c761a;
}
.blog-home-category h3 {
  margin: 22px 0 0;
  color: #1a2620;
  font-size: 19px;
}
.blog-home-category p {
  min-height: 65px;
  margin: 10px 0 0;
  color: var(--blog-muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.blog-home-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--blog-green);
  font-size: 13px;
  font-weight: 700;
}
.blog-home-category:hover .blog-home-arrow,
.blog-home-card:hover .blog-home-arrow,
.blog-home-market:hover .blog-home-arrow {
  gap: 11px;
}
.blog-home-arrow {
  transition: gap 0.18s ease;
}
.blog-home-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}
.blog-home-card[hidden] {
  display: none;
}
.blog-home-card__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.blog-home-card__media {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: linear-gradient(135deg, #dfe9d8, #b9d0bd);
}
.blog-home-card--popular .blog-home-card__media {
  height: 158px;
}
.blog-home-card--catalog .blog-home-card__media {
  height: 150px;
}
.blog-home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-home-card:hover .blog-home-card__media img {
  transform: scale(1.035);
}
.blog-home-card__badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--blog-green);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-home-card--popular .blog-home-card__badge {
  background: var(--blog-accent);
  color: var(--blog-deep);
}
.blog-home-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.blog-home-card--catalog .blog-home-card__body {
  padding: 20px;
}
.blog-home-card h3 {
  margin: 0;
  color: #1a2620;
  font-size: 16.5px;
  line-height: 1.4;
}
.blog-home-card--catalog h3 {
  font-size: 15.5px;
}
.blog-home-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: var(--blog-muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog-home-card--catalog .blog-home-card__excerpt {
  font-size: 12.5px;
  -webkit-line-clamp: 2;
}
.blog-home-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f1f3ed;
}
.blog-home-card__footer time {
  color: #8a948d;
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
}
.blog-home-card__footer .blog-home-arrow {
  margin-top: 0;
  white-space: nowrap;
}
.blog-home-market {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  overflow: hidden;
  border-color: var(--blog-deep);
  background: var(--blog-deep);
  color: #fff;
  text-decoration: none;
}
.blog-home-market__media {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: linear-gradient(150deg, #0c4730, #022e20);
}
.blog-home-market__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(2, 46, 32, 0.55));
  content: '';
}
.blog-home-market__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-home-market__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px;
}
.blog-home-market__body .blog-home-badge {
  align-self: flex-start;
  background: rgba(127, 191, 106, 0.18);
  color: var(--blog-accent);
}
.blog-home-market h3 {
  max-width: 650px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
}
.blog-home-market p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #a9c6b6;
  font-size: 14px;
  line-height: 1.65;
}
.blog-home-market__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}
.blog-home-market__meta .blog-home-arrow {
  margin-top: 0;
  color: var(--blog-accent);
}
.blog-home-market__meta time {
  color: #7f9a89;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
}
.blog-home-catalog-head {
  align-items: flex-end;
  flex-wrap: wrap;
}
.blog-home-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.blog-home-filter,
.blog-home-load-more {
  border: 1px solid #cdd7c3;
  border-radius: 999px;
  background: #fff;
  color: var(--blog-deep);
  cursor: pointer;
  font: 700 12.5px 'Space Grotesk', sans-serif;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.blog-home-filter {
  padding: 9px 16px;
}
.blog-home-filter:hover,
.blog-home-filter:focus-visible {
  border-color: #9ec4ad;
}
.blog-home-filter.is-active {
  border-color: var(--blog-deep);
  background: var(--blog-deep);
  color: #fff;
}
.blog-home-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.blog-home-load-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
}
.blog-home-load-more:hover,
.blog-home-load-more:focus-visible {
  border-color: var(--blog-deep);
  transform: translateY(-2px);
}
.blog-home-load-more[hidden] {
  display: none;
}
.blog-home-cta {
  position: relative;
  overflow: hidden;
  padding: 62px 48px;
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 76% 12%, rgba(120, 191, 106, 0.2), transparent 55%),
    var(--blog-deep);
  text-align: center;
}
.blog-home-cta h2 {
  max-width: 680px;
  margin: 18px auto 0;
  color: #fff;
  font-size: clamp(31px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.blog-home-cta p {
  max-width: 590px;
  margin: 18px auto 0;
  color: #a9c6b6;
  font-size: 15.5px;
  line-height: 1.65;
}
.blog-home-cta .blog-home-button {
  margin-top: 30px;
  border-color: var(--blog-accent);
  background: transparent;
}
.blog-home-cta .blog-home-button:hover,
.blog-home-cta .blog-home-button:focus-visible {
  background: rgba(127, 191, 106, 0.12);
}
.blog-category-page .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #7c8880;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-category-page .breadcrumb a {
  color: var(--blog-green);
  text-decoration: none;
}
.blog-category-page .breadcrumb a:hover,
.blog-category-page .breadcrumb a:focus-visible {
  color: var(--blog-deep);
}
.blog-category-page .breadcrumb .separator {
  color: #b2bbb4;
}
.blog-category-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 46px 44px;
}
.blog-category-hero__copy .blog-home-badge {
  align-self: flex-start;
}
.blog-category-hero h1 {
  max-width: 650px;
  font-size: clamp(39px, 4.2vw, 52px);
}
.blog-category-hero__facts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 40px;
  background:
    radial-gradient(circle at 88% 8%, rgba(127, 191, 106, 0.16), transparent 16rem),
    var(--blog-deep);
}
.blog-category-hero__fact {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.blog-category-hero__fact:last-child {
  border-bottom: 0;
}
.blog-category-hero__fact small {
  display: block;
  color: var(--blog-accent);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-category-hero__fact strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}
.blog-category-hero__fact p {
  margin: 9px 0 0;
  color: #a9c6b6;
  font-size: 13.5px;
  line-height: 1.6;
}
.blog-category-materials-grid--single {
  grid-template-columns: minmax(0, 520px);
}
.blog-category-other-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.blog-category-page .blog-home-card--category .blog-home-card__media {
  height: 172px;
}
.blog-category-page .blog-home-card--category .blog-home-card__body {
  padding: 22px;
}
.blog-category-page .blog-home-card--category h3 {
  font-size: 16.5px;
}
.blog-category-page .blog-home-card--category .blog-home-card__excerpt {
  font-size: 13px;
  -webkit-line-clamp: 3;
}
@keyframes blog-home-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .blog-home *,
  .blog-home *::before,
  .blog-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
@media (max-width: 980px) {
  .blog-home-hero {
    grid-template-columns: 1fr;
  }
  .blog-home-hero__topics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .blog-home-topic {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
    padding-right: 20px;
  }
  .blog-home-topic:last-child {
    border-right: 0;
  }
  .blog-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-home-market {
    grid-template-columns: 260px minmax(0, 1fr);
  }
  .blog-category-hero {
    grid-template-columns: 1fr;
  }
  .blog-category-hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .blog-category-hero__fact {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 0;
    padding-right: 24px;
  }
  .blog-category-hero__fact:last-child {
    border-right: 0;
  }
}
@media (max-width: 720px) {
  .blog-home {
    padding: 24px 0 36px;
  }
  .blog-home-container {
    width: min(100% - 32px, 1176px);
  }
  .blog-home-hero {
    margin-bottom: 44px;
    border-radius: 19px;
  }
  .blog-home-hero__copy {
    padding: 30px 24px;
  }
  .blog-category-hero__copy {
    padding: 24px 24px 32px;
  }
  .blog-category-page .breadcrumb {
    margin-bottom: 22px;
  }
  .blog-home-hero h1 {
    font-size: clamp(34px, 11vw, 42px);
  }
  .blog-home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-home-hero__topics {
    display: block;
    padding: 22px 24px;
  }
  .blog-category-hero__facts {
    display: block;
    padding: 20px 24px;
  }
  .blog-category-hero__fact {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    padding: 18px 0;
  }
  .blog-category-other-grid,
  .blog-category-materials-grid--single {
    grid-template-columns: 1fr;
  }
  .blog-home-topic {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
  }
  .blog-home-section {
    margin-bottom: 46px;
  }
  .blog-home-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .blog-home-section__header p {
    text-align: left;
  }
  .blog-home-grid {
    grid-template-columns: 1fr;
  }
  .blog-home-category p {
    min-height: 0;
  }
  .blog-home-card__media,
  .blog-home-card--popular .blog-home-card__media,
  .blog-home-card--catalog .blog-home-card__media {
    height: 190px;
  }
  .blog-home-market {
    grid-template-columns: 1fr;
  }
  .blog-home-market__media {
    min-height: 210px;
  }
  .blog-home-market__body {
    padding: 28px 24px 30px;
  }
  .blog-home-market h3 {
    font-size: 22px;
  }
  .blog-home-market__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .blog-home-catalog-head {
    align-items: flex-start;
  }
  .blog-home-filters {
    width: 100%;
  }
  .blog-home-cta {
    padding: 44px 24px;
    border-radius: 20px;
  }
  .blog-home-cta .blog-home-button {
    width: 100%;
  }
}
