.insights-hero,
.article-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 246, 0.96)),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 34%);
}

.insights-hero h1,
.article-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1;
}

.insights-hero .lead,
.article-hero .lead {
  max-width: 70ch;
}

.insights-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.insights-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.insights-note h3 {
  margin-bottom: 10px;
}

.insights-note p,
.insights-note li,
.article-body p,
.article-body li,
.article-summary,
.article-cta p {
  color: var(--muted);
  line-height: 1.72;
}

.insights-note ul,
.article-body ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

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

.insight-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.insight-card .tag {
  margin-bottom: 0;
}

.insight-card h2,
.insight-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.insight-card p {
  color: var(--muted);
  line-height: 1.68;
}

.insight-card .button {
  width: fit-content;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 28px;
}

.article-side {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.article-meta,
.article-links {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.article-meta span,
.article-links span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 900;
}

.article-links a {
  display: block;
  margin-top: 10px;
  color: var(--deep);
  font-weight: 800;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-body section {
  display: grid;
  gap: 14px;
}

.article-body h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.article-body h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.article-summary {
  padding: 22px;
  border-left: 4px solid var(--green);
  background: #f4f8fb;
}

.article-cta {
  padding: 28px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
}

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

.article-cta .cta-actions {
  margin-top: 18px;
}

.article-back {
  margin-top: 10px;
}

.article-back .text-link {
  min-height: auto;
}

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

  .article-side {
    position: static;
  }
}

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

  .insight-card {
    padding: 22px;
  }
}
