.content-hero {
  background:
    linear-gradient(90deg, rgba(10, 42, 30, 0.94), rgba(18, 63, 42, 0.82)),
    url("/site/assets/woodgrain-background.png") center / cover,
    var(--forest);
  color: #ffffff;
  padding: 74px 0 68px;
}

.content-hero h1,
.content-hero p,
.content-hero li {
  color: #ffffff;
}

.content-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 3.8rem;
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.content-hero-copy {
  min-width: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.content-hero .hero-lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.content-hero-media {
  display: grid;
  justify-items: end;
}

.content-hero-card {
  width: min(100%, 380px);
  border: 5px solid rgba(10, 18, 20, 0.92);
  border-radius: 28px;
  background: #fffaf0;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.content-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.content-hero-card.icon-card {
  display: grid;
  width: min(100%, 320px);
  place-items: center;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.content-hero-card.icon-card img {
  width: min(100%, 260px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.content-main {
  background: #f7f3e8;
}

.article-section {
  padding: 78px 0;
}

.article-section[id] {
  scroll-margin-top: 92px;
}

.article-section + .article-section {
  border-top: 1px solid var(--line);
}

.compact-section {
  padding: 58px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.74fr);
  gap: 46px;
  align-items: start;
}

.article-copy {
  max-width: 760px;
}

.article-copy p {
  font-size: 1.04rem;
}

.pull-answer {
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px 24px;
  box-shadow: 0 14px 38px rgba(15, 35, 27, 0.08);
}

.pull-answer p:last-child,
.content-card p:last-child,
.how-list p:last-child {
  margin-bottom: 0;
}

.intent-grid,
.detail-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

.intent-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

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

.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  padding: 24px;
  box-shadow: 0 14px 38px rgba(15, 35, 27, 0.08);
}

.content-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 16px;
}

.content-card a,
.inline-link {
  color: var(--forest);
  font-weight: 800;
}

.how-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.how-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: #ffffff;
  font-weight: 800;
}

.proof-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.proof-list li {
  margin-bottom: 10px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat-strip div {
  background: #ffffff;
  padding: 22px;
}

.stat-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.2rem;
}

.source-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.related-grid a {
  text-decoration: none;
}

.related-grid a:hover h3 {
  text-decoration: underline;
}

.section-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.section-jump-links a {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.section-jump-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 920px) {
  .content-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .content-hero h1 {
    font-size: 3.1rem;
  }

  .content-hero-media {
    justify-items: start;
  }

  .content-hero-card {
    max-width: 330px;
  }

  .intent-grid,
  .detail-grid,
  .related-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .content-hero {
    padding: 46px 0 50px;
  }

  .content-hero h1 {
    font-size: 2.45rem;
  }

  .article-section {
    padding: 56px 0;
  }

  .article-section[id] {
    scroll-margin-top: 78px;
  }

  .content-card,
  .pull-answer,
  .how-list li {
    padding: 18px;
  }
}
