.article-page,
.article-detail-page {
  background:
    radial-gradient(circle at 10% 15%, rgba(212, 175, 55, 0.16), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(11, 83, 69, 0.14), transparent 36%),
    linear-gradient(180deg, #f8fbf9 0%, #f2f8f5 100%);
}

.article-kicker {
  font-family: "Prompt", sans-serif;
  letter-spacing: .18em;
  font-size: .78em;
  color: var(--primary-color);
}

.article-header h1,
.article-detail-header h1,
.article-title a {
  color: var(--primary-color);
  font-family: "Prompt", sans-serif;
}

.article-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.article-card {
  border: 1px solid rgba(11, 83, 69, 0.12);
  border-radius: 1em;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 83, 69, 0.08);
}

.article-cover {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f4f7f5;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.article-card:hover .article-cover img {
  transform: scale(1.04);
}

.article-body {
  padding: 1em;
}

.article-title a {
  text-decoration: none;
}

.article-excerpt {
  color: #5f6a72;
}

.article-readmore {
  color: var(--link-color);
  font-weight: 600;
}

.article-detail-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-content {
  background: #fff;
  border: 1px solid rgba(11, 83, 69, 0.1);
  border-radius: 1em;
  padding: 1.25em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--primary-color);
  font-family: "Prompt", sans-serif;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: .75em;
}

.article-cta-box {
  border: 1px solid rgba(11, 83, 69, 0.12);
  border-radius: 1em;
  background: #fff;
  padding: 1.25em;
  box-shadow: 0 8px 24px rgba(11, 83, 69, 0.06);
}
