.article-hero {
  padding-top: 92px;
}

.article-hero .breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin-bottom: 14px;
}

.article-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

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

.article-title {
  margin: 0;
  max-width: 880px;
}

.article-lead {
  margin-top: 12px;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.92);
}

.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--s-6);
  align-items: start;
}

.article-content {
  background: var(--cnv-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 2.2vw, 30px);
}

.article-content h2 {
  margin-top: 1.6em;
}

.article-content ul,
.article-content ol {
  padding-left: 20px;
}

.article-content p,
.article-content li {
  color: var(--cnv-charcoal);
}

.article-aside {
  position: sticky;
  top: 110px;
}

.article-card {
  background: var(--cnv-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.article-card h3 {
  margin: 0;
}

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

.article-image {
  margin: 14px 0 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.related-list {
  display: grid;
  gap: 10px;
}

.related-list a {
  text-decoration: none;
  color: var(--cnv-blue);
  font-weight: 700;
}

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

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

  .article-aside {
    position: static;
  }
}
