.contentPage {
  background: var(--cream-100);
}

.contentHero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
  background:
    linear-gradient(rgba(216, 155, 43, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 155, 43, 0.07) 1px, transparent 1px),
    var(--cream-100);
  background-size: 4rem 4rem;
  border-bottom: 1px solid var(--line);
}

.contentShell,
.contentBandInner,
.articleShell,
.relatedSection,
.authorSection {
  width: min(calc(100% - 3rem), 76rem);
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.5rem;
  color: var(--amber);
  content: "/";
}

.breadcrumb a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.contentHeroGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.contentHeroCopy h1,
.articleHeader h1,
.contentBand h2,
.articleBody h2,
.relatedSection h2,
.authorSection h2 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.contentHeroCopy h1,
.articleHeader h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.94;
}

.contentLead,
.articleDek {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  color: #4d5b56;
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.contentActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contentVisual {
  margin: 0;
  padding: 1.1rem;
  background: var(--forest-800);
  box-shadow: var(--shadow);
}

.contentVisual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contentBand {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.contentBandAlt {
  background: var(--cream-200);
  border-block: 1px solid var(--line);
}

.contentBandDark {
  color: #fff;
  background: var(--forest-950);
}

.contentBandHeader {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.contentBand h2,
.relatedSection h2,
.authorSection h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1;
}

.contentBandDark h2,
.contentBandDark h3 {
  color: #fff;
}

.contentBandHeader > p:last-child,
.contentBandIntro {
  margin: 1.1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contentBandDark .contentBandHeader > p:last-child,
.contentBandDark .contentBandIntro {
  color: rgba(255, 255, 255, 0.7);
}

.factGrid,
.guideGrid,
.linkGrid,
.comparisonGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.factCard,
.guideCard,
.linkCard {
  min-width: 0;
  padding: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--line);
}

.factCard h3,
.guideCard h2,
.guideCard h3,
.linkCard h3 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.factCard p,
.guideCard p,
.linkCard p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.factCard a,
.guideCard a,
.linkCard a,
.articleBody a,
.articleAside a,
.authorCard a {
  color: var(--forest-700);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.cardLink {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 1rem;
  font-size: 0.84rem;
}

.numberedList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: content-step;
  list-style: none;
}

.numberedList li {
  min-height: 11rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-increment: content-step;
}

.numberedList li::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.05rem;
  content: counter(content-step, decimal-leading-zero);
}

.numberedList strong {
  display: block;
  color: var(--forest-950);
  font-size: 0.98rem;
}

.numberedList p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.callout {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: var(--sage);
  border-left: 4px solid var(--forest-700);
}

.calloutAmber {
  background: var(--amber-soft);
  border-left-color: var(--amber);
}

.callout strong {
  color: var(--forest-950);
}

.callout p {
  margin: 0.45rem 0 0;
  color: #40504a;
  line-height: 1.65;
}

.articleHero {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--cream-200);
  border-bottom: 1px solid var(--line);
}

.articleHeader {
  width: min(calc(100% - 3rem), 68rem);
  margin-inline: auto;
}

.articleMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.articleShell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.articleAside {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding-top: 0.25rem;
}

.articleAside strong {
  color: var(--forest-950);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.articleAside nav {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.articleAside a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.articleAside a:hover {
  color: var(--forest-700);
}

.articleBody {
  min-width: 0;
  max-width: 48rem;
}

.articleBody section + section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.articleBody h2 {
  scroll-margin-top: 7rem;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.1;
}

.articleBody h3 {
  margin: 1.8rem 0 0;
  color: var(--forest-950);
  font-size: 1.05rem;
}

.articleBody p,
.articleBody ul,
.articleBody ol {
  margin: 1rem 0 0;
  color: #46534e;
  font-size: 0.98rem;
  line-height: 1.82;
}

.articleBody ul,
.articleBody ol {
  padding-left: 1.35rem;
}

.articleBody li + li {
  margin-top: 0.65rem;
}

.diagnosticTable {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.diagnosticTable th,
.diagnosticTable td {
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
}

.diagnosticTable th {
  color: var(--forest-950);
  background: var(--cream-200);
}

.relatedSection,
.authorSection {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.relatedSection h2,
.authorSection h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.authorCard {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  max-width: 48rem;
  padding: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--line);
}

.authorMark {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  background: var(--forest-800);
  border-radius: 50%;
}

.authorCard strong {
  color: var(--forest-950);
}

.authorCard p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.compactNav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

.compactNav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: #44524d;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.compactNav a:hover,
.compactNav a[aria-current="page"] {
  color: var(--forest-700);
}

.contentFooterNote {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 64rem) {
  .contentHeroGrid {
    grid-template-columns: 1fr;
  }

  .contentHeroCopy {
    max-width: 50rem;
  }

  .contentVisual {
    width: min(100%, 54rem);
  }

  .factGrid,
  .guideGrid,
  .linkGrid,
  .comparisonGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .contentShell,
  .contentBandInner,
  .articleShell,
  .relatedSection,
  .authorSection,
  .articleHeader {
    width: min(calc(100% - 2rem), 76rem);
  }

  .compactNav a:not(.navCta):nth-child(-n + 2) {
    display: none;
  }

  .articleShell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .articleAside {
    position: static;
    padding: 1rem;
    background: var(--cream-200);
    border: 1px solid var(--line);
  }

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

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

@media (max-width: 36rem) {
  .contentHeroCopy h1,
  .articleHeader h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .factGrid,
  .guideGrid,
  .linkGrid,
  .comparisonGrid,
  .articleAside nav {
    grid-template-columns: 1fr;
  }

  .contentActions,
  .contentActions .button {
    width: 100%;
  }

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

  .diagnosticTable {
    display: block;
    overflow-x: auto;
  }
}
