.insights-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(31, 227, 242, 0.12), transparent 28%),
    var(--black);
}

.service-breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.service-breadcrumbs a:hover,
.service-breadcrumbs a:focus-visible {
  color: var(--cyan);
}

.insights-hero {
  max-width: 920px;
  padding-block: 100px 76px;
}

.insights-hero h1,
.article-header h1 {
  margin: 14px 0 24px;
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.91;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.insights-hero h1 span,
.article-header h1 span {
  color: var(--cyan);
}

.insights-hero > p:last-child,
.article-deck {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

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

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 32px;
  border: 1px solid var(--soft-line);
  background: rgba(9, 13, 21, 0.82);
  transition: border-color 180ms ease, transform 180ms ease;
}

.insight-card:hover,
.insight-card:focus-visible {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.insight-card > span,
.article-meta {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-card h2 {
  margin: 22px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

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

.insight-card strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--cyan);
}

.article-header {
  max-width: 980px;
  padding-block: 76px 56px;
}

.article-header h1 {
  font-size: clamp(48px, 7vw, 90px);
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 320px);
  gap: 76px;
  align-items: start;
  padding-bottom: 110px;
}

.article-content {
  color: #e6e8ef;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.article-content h2 {
  margin: 64px 0 20px;
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.article-content h3 {
  margin: 38px 0 12px;
  color: var(--white);
  font-size: 24px;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 24px;
}

.article-content li {
  margin-bottom: 12px;
}

.answer-box,
.article-note {
  padding: 26px;
  border-left: 3px solid var(--cyan);
  background: rgba(16, 22, 34, 0.8);
}

.answer-box strong,
.article-note strong {
  color: var(--cyan);
}

.article-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.article-content th,
.article-content td {
  padding: 15px;
  border: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: var(--cyan);
  background: rgba(16, 22, 34, 0.9);
}

.article-aside {
  position: sticky;
  top: 116px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(9, 13, 21, 0.9);
}

.article-aside h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.article-aside p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .article-body {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .insights-hero,
  .article-header {
    padding-block: 64px 42px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    padding-bottom: 76px;
  }

  .insight-card {
    min-height: 300px;
    padding: 25px;
  }

  .article-content {
    font-size: 17px;
  }
}
