.article-hero {
  padding: 8rem 0 4rem;
  background: var(--bg);
}

.article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: 3rem;
  align-items: center;
}

.resource-hero .article-hero__inner {
  display: block;
  max-width: 920px;
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero h1 {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.article-hero p {
  max-width: 66ch;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.75;
}

.article-hero__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(34, 26, 43, 0.12);
}

.article-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  padding: 4rem 0 5rem;
}

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

.article-body h2 {
  margin: 2.8rem 0 1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.article-body h3 {
  margin: 2rem 0 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.article-body p,
.article-body li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body a {
  color: var(--plum);
  font-weight: 700;
}

.article-body .answer-box {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-left: 4px solid var(--mint-dark);
  background: rgba(124, 203, 195, 0.12);
}

.article-body .answer-box p {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.article-callout,
.article-sidebar {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(34, 26, 43, 0.06);
}

.article-callout {
  margin: 2rem 0;
  padding: 1.5rem;
}

.article-callout strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.article-sidebar {
  position: sticky;
  top: 6.5rem;
  align-self: start;
  padding: 1.25rem;
}

.article-sidebar h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.article-sidebar p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.article-sidebar .btn {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.resource-card {
  display: block;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(34, 26, 43, 0.05);
}

.resource-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.resource-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.resource-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

  .article-sidebar {
    position: static;
  }
}
