:root {
  color-scheme: light;
  --ink: #17242b;
  --muted: #5f6e73;
  --paper: #faf8f3;
  --panel: #ffffff;
  --panel-tint: #f2f8f4;
  --line: #dde4dd;
  --sage: #24624f;
  --sage-light: #e4f1e9;
  --sky: #5d8eaa;
  --clay: #d57556;
  --amber: #e8b95c;
  --berry: #a65d72;
  --mint: #d7eee2;
  --cream: #fffaf0;
  --shadow: 0 20px 46px rgba(23, 36, 43, 0.11);
  --shadow-soft: 0 8px 24px rgba(23, 36, 43, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(250, 248, 243, 0) 360px),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.72;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 243, 0.9);
  border-bottom: 1px solid rgba(31, 45, 53, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1140px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 300px;
}

.brand-logo {
  width: 150px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  max-width: 180px;
  padding-left: 13px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  flex: 0 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--sage);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #e8f0eb;
}

.hero-scenes {
  position: absolute;
  inset: 0;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.scene-primary {
  animation: heroPrimary 14s ease-in-out infinite;
}

.scene-secondary {
  opacity: 0;
  object-position: center;
  animation: heroSecondary 14s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.97), rgba(250, 248, 243, 0.76) 42%, rgba(250, 248, 243, 0.25) 70%),
    radial-gradient(circle at 76% 28%, rgba(36, 98, 79, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(23, 36, 43, 0.22), rgba(23, 36, 43, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 70px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--clay);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  font-weight: 800;
}

.hero h1 {
  max-width: 680px;
  margin-top: 16px;
  font-size: 58px;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: #33444b;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-stats {
  width: min(610px, 100%);
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(47, 95, 77, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-stats div {
  min-height: 70px;
  padding: 14px 18px;
  border-right: 1px solid rgba(47, 95, 77, 0.14);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--sage);
  font-size: 21px;
  line-height: 1.1;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(31, 45, 53, 0.16);
}

.hero-moments {
  width: min(620px, 100%);
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.moment {
  min-height: 116px;
  padding: 15px;
  border: 1px solid rgba(23, 36, 43, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.moment:nth-child(2) {
  background: rgba(255, 248, 232, 0.76);
}

.moment:nth-child(3) {
  background: rgba(244, 237, 240, 0.78);
}

.moment.is-active {
  border-color: rgba(36, 98, 79, 0.32);
  background: rgba(255, 255, 255, 0.92);
  opacity: 1;
  transform: translateY(-4px);
}

.moment span {
  display: block;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.moment strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.42;
}

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

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.disclosure {
  background: #fff8e8;
  border-block: 1px solid #eadbbd;
}

.disclosure p {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  color: #5a462d;
  font-size: 13px;
}

.section {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 66px 0;
}

.concern-section {
  padding-bottom: 38px;
}

.concern-grid,
.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.concern-card,
.routine-card {
  min-height: 208px;
  padding: 22px;
  border: 1px solid rgba(31, 45, 53, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.concern-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.concern-card:hover,
.routine-card:hover {
  border-color: rgba(36, 98, 79, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.concern-card span,
.routine-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sage);
  font-weight: 800;
}

.concern-card:nth-child(2) span,
.routine-card:nth-child(2) span {
  background: var(--clay);
}

.concern-card:nth-child(3) span,
.routine-card:nth-child(3) span {
  background: var(--berry);
}

.concern-card:nth-child(4) span,
.routine-card:nth-child(4) span {
  background: var(--sky);
}

.concern-card h3,
.routine-card h3 {
  margin-top: 22px;
  font-size: 20px;
}

.concern-card p,
.routine-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pillar-section {
  padding-top: 34px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar-card {
  min-height: 218px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31, 45, 53, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.pillar-card:hover {
  border-color: rgba(36, 98, 79, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pillar-card:nth-child(2),
.pillar-card:nth-child(5) {
  background: linear-gradient(180deg, #ffffff, #fff8ea);
}

.pillar-card:nth-child(3),
.pillar-card:nth-child(6) {
  background: linear-gradient(180deg, #ffffff, #f6f0f3);
}

.pillar-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sage);
  font-weight: 800;
}

.pillar-card:nth-child(2) .pillar-number,
.pillar-card:nth-child(5) .pillar-number {
  background: var(--clay);
}

.pillar-card:nth-child(3) .pillar-number,
.pillar-card:nth-child(6) .pillar-number {
  background: var(--berry);
}

.pillar-card h3 {
  margin-top: 22px;
  font-size: 20px;
}

.pillar-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.topic-strip {
  margin-top: 16px;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(31, 45, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.topic-strip strong {
  margin-right: 4px;
  color: var(--sage);
  font-size: 13px;
}

.topic-strip span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: #384850;
  background: var(--sage-light);
  font-size: 13px;
  font-weight: 700;
}

.visual-runway {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding: 24px 0 18px;
}

.runway-copy {
  padding: 28px 0;
}

.runway-copy h2 {
  max-width: 460px;
  margin-top: 10px;
  font-size: 31px;
}

.runway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.runway-card {
  min-height: 168px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(31, 45, 53, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.runway-card:hover,
.article-card:hover,
.affiliate-item:hover {
  border-color: rgba(36, 98, 79, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.runway-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, #eef7f1);
}

.runway-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #fff5e4);
}

.runway-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #f4edf0);
}

.runway-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sage);
  font-weight: 800;
}

.runway-card:nth-child(2) span {
  background: var(--clay);
}

.runway-card:nth-child(3) span {
  background: var(--berry);
}

.runway-card h3 {
  margin-top: 22px;
  font-size: 19px;
}

.runway-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section.tight {
  padding-top: 32px;
}

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

.affiliate-subheading {
  margin-top: 30px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: 32px;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
}

.article-card,
.side-panel,
.affiliate-item,
.notice,
.article-body {
  border: 1px solid rgba(31, 45, 53, 0.1);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.article-card {
  padding: 28px;
}

.article-card .meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--sage);
  background: var(--sage-light);
  font-size: 12px;
  font-weight: 800;
}

.article-card h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: 30px;
}

.article-card p {
  color: var(--muted);
}

.side-panel {
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 18px;
  background: linear-gradient(180deg, #fffdfa, #f8fbf7);
}

.metric {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.metric-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--sky);
  font-weight: 800;
}

.metric:nth-child(2n) .metric-icon {
  background: var(--sage);
}

.metric h3 {
  font-size: 16px;
}

.metric p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.supplement-grid {
  grid-template-columns: repeat(4, 1fr);
}

.nutrition-lead {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 45, 53, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fbf8ef);
  box-shadow: var(--shadow-soft);
}

.nutrition-lead img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.nutrition-lead div {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nutrition-lead h3 {
  margin-top: 14px;
  font-size: 26px;
}

.nutrition-lead p {
  margin: 16px 0 0;
  color: var(--muted);
}

.affiliate-item {
  padding: 18px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.affiliate-item h3 {
  margin-top: 10px;
  font-size: 17px;
}

.affiliate-item p {
  color: var(--muted);
  font-size: 14px;
}

.affiliate-item .button {
  width: 100%;
  margin-top: 12px;
  color: var(--sage);
  background: var(--panel-tint);
}

.affiliate-visual {
  position: relative;
  display: block;
  margin: -18px -18px 16px;
  border-bottom: 1px solid rgba(31, 45, 53, 0.08);
  background: var(--panel-tint);
}

.affiliate-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.visual-cta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(47, 95, 77, 0.92);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(31, 45, 53, 0.18);
}

.supplement-item {
  display: flex;
  flex-direction: column;
}

.supplement-item .affiliate-visual img {
  aspect-ratio: 4 / 3;
}

.supplement-item p {
  margin-bottom: 0;
}

.affiliate-visual:hover img {
  transform: scale(1.025);
}

.notice {
  margin-top: 18px;
  padding: 18px 20px;
  color: #513929;
  background: #fff8e8;
  box-shadow: none;
}

.routine-section {
  padding-top: 34px;
}

.routine-card {
  min-height: 190px;
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
}

@keyframes heroPrimary {
  0%,
  44% {
    opacity: 1;
    transform: scale(1);
  }
  52%,
  92% {
    opacity: 0;
    transform: scale(1.035);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSecondary {
  0%,
  44% {
    opacity: 0;
    transform: scale(1.035);
  }
  52%,
  92% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.035);
  }
}

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

.article-layout {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 84px;
}

.article-hero {
  padding: 58px 0 34px;
}

.article-hero h1 {
  max-width: 880px;
  margin-top: 16px;
  font-size: 50px;
}

.article-body {
  padding: 52px;
}

.article-body h2 {
  margin-top: 40px;
  font-size: 31px;
}

.article-body h3 {
  margin-top: 26px;
  font-size: 20px;
}

.article-body p,
.article-body li {
  color: #384850;
  font-size: 17px;
}

.article-body ol {
  padding-left: 22px;
}

.quote-band {
  margin: 34px 0;
  padding: 24px;
  border-left: 5px solid var(--clay);
  background: var(--panel-tint);
}

.next-step-box {
  margin: 36px 0;
  padding: 26px;
  border: 1px solid rgba(47, 95, 77, 0.18);
  border-radius: 8px;
  background: #f7fbf8;
}

.next-step-box h2 {
  margin-top: 10px;
}

.affiliate-cta-box {
  margin: 36px 0;
  padding: 16px;
  border-radius: 8px;
  background: #f8f5f0;
}

.affiliate-cta-box h3 {
  margin: 0;
  font-size: 20px;
}

.affiliate-cta-box p {
  margin: 10px 0 0;
}

.affiliate-cta-box .button {
  margin-top: 14px;
  margin-right: 8px;
}

.affiliate-box {
  background: #f8f5f0;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}

.affiliate-box h3 {
  font-size: 0.95rem;
  margin: 0 0 8px;
}

.affiliate-box p {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 12px;
}

.affiliate-box a {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  margin-right: 8px;
  margin-bottom: 4px;
}

.footer {
  border-top: 1px solid rgba(31, 45, 53, 0.1);
  background: #fff;
}

.footer-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 960px) {
  .header-inner {
    align-items: start;
    flex-direction: column;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 8px 14px;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(250, 248, 243, 0.96), rgba(250, 248, 243, 0.78) 74%, rgba(250, 248, 243, 0.5)),
      linear-gradient(0deg, rgba(23, 36, 43, 0.12), rgba(23, 36, 43, 0));
  }

  .hero-scene {
    object-position: 64% center;
  }

  .feature-grid,
  .affiliate-grid,
  .supplement-grid,
  .visual-runway,
  .nutrition-lead,
  .concern-grid,
  .pillar-grid,
  .routine-grid {
    grid-template-columns: 1fr;
  }

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

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

  .runway-card {
    min-height: 160px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-body {
    padding: 34px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .hero-content,
  .disclosure p,
  .section,
  .article-layout,
  .footer-inner {
    width: min(100% - 24px, 1140px);
  }

  .header-inner {
    min-height: auto;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 138px;
  }

  .brand span {
    max-width: 150px;
    padding-left: 10px;
    font-size: 11px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 12px;
    font-size: 13px;
    white-space: normal;
  }

  .nav a {
    padding: 6px 0;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding: 44px 0 34px;
  }

  .hero h1 {
    max-width: calc(100vw - 24px);
    font-size: 29px;
    line-height: 1.28;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 16px;
    max-width: calc(100vw - 24px);
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .cta-row {
    flex-direction: column;
    margin-top: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-stats div {
    min-height: auto;
    padding: 12px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 95, 77, 0.14);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-stats strong {
    font-size: 18px;
  }

  .hero-stats span {
    font-size: 11px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
  }

  .disclosure p {
    padding: 12px 0;
    font-size: 12px;
  }

  .section {
    padding: 42px 0;
  }

  .section.tight {
    padding-top: 28px;
  }

  .visual-runway {
    padding: 34px 0 18px;
  }

  .runway-copy {
    padding: 0;
  }

  .runway-copy h2 {
    font-size: 25px;
  }

  .nutrition-lead img {
    min-height: 190px;
  }

  .nutrition-lead div {
    padding: 22px;
  }

  .nutrition-lead h3 {
    font-size: 24px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .article-card,
  .side-panel,
  .affiliate-item,
  .pillar-card,
  .next-step-box {
    padding: 18px;
  }

  .pillar-card {
    min-height: 190px;
  }

  .topic-strip {
    padding: 12px;
    gap: 8px;
  }

  .topic-strip strong {
    width: 100%;
  }

  .affiliate-visual {
    margin: -18px -18px 14px;
  }

  .article-card h2 {
    font-size: 25px;
  }

  .metric {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .metric-icon {
    width: 36px;
    height: 36px;
  }

  .article-layout {
    padding: 26px 0 54px;
  }

  .article-hero {
    padding: 30px 0 24px;
  }

  .article-hero h1 {
    font-size: 31px;
  }

  .article-body {
    padding: 22px;
  }

  .article-body h2 {
    margin-top: 30px;
    font-size: 25px;
  }

  .article-body h3 {
    font-size: 18px;
  }

  .article-body p,
  .article-body li {
    font-size: 15px;
  }

  .quote-band {
    margin: 24px 0;
    padding: 18px;
  }
}
