.article-shell {
  padding-top: 20px;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.article-hero__copy {
  padding: 8px 0;
}

.article-hero__copy h1 {
  max-width: 12ch;
}

.article-hero__dek {
  max-width: 46rem;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
}

.article-hero__art {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: var(--radius-xl);
  overflow: clip;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-hero__art picture {
  display: block;
  width: 100%;
  height: 100%;
}

.article-hero__credit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(16, 16, 16, 0.78);
  font-size: 0.72rem;
  line-height: 1.2;
}

.article-hero__credit a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

.affiliate-cta {
  display: grid;
  gap: 13px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--paper);
  background: var(--ink);
  border-top: 5px solid var(--accent);
}

.affiliate-cta h2,
.affiliate-cta p {
  color: inherit;
}

.affiliate-cta .button {
  justify-self: start;
  margin-top: 4px;
}

.affiliate-cta__note {
  max-width: 68ch;
  font-size: 0.78rem;
  opacity: 0.76;
}

.article-hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 340px;
  gap: 24px;
  align-items: start;
}

.article-layout__main {
  display: grid;
  gap: 18px;
}

.article-layout__aside {
  position: sticky;
  top: 138px;
}

.article-intro {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.86);
  box-shadow: var(--shadow-soft);
}

.article-intro p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.article-section {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.84);
  box-shadow: var(--shadow-soft);
}

.article-section p {
  color: var(--ink-soft);
}

.article-related {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.article-related .card-grid {
  margin-top: 0;
}

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

.product-section .section__head {
  margin-bottom: 0;
}

.article-shell .section__head h2,
.product-section h2,
.callout h2,
.faq-section h2 {
  line-height: 1.04;
}

.article-shell .section__head p,
.product-section p,
.callout p,
.faq-section p {
  color: var(--muted);
}

.article-shell .story-card--default .story-card__art {
  aspect-ratio: 4 / 3;
}

.article-shell .story-card--default .story-card__body {
  padding: 16px 16px 18px;
}

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

  .article-layout__aside {
    position: static;
  }
}

@media (max-width: 780px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .article-intro,
  .article-section,
  .checklist-section {
    padding: 18px;
  }
}
