.insights-hero {
  background-image: linear-gradient(rgba(0,0,0,.24), rgba(0,0,0,.62)), url('/img/parallax.jpg');
}

.insights-shell {
  width: min(calc(100% - 40px), 1120px);
}

.insights-intro .lead-copy {
  max-width: 880px;
}

.insight-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: end;
  padding: 34px 36px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #0c1117, #182331);
  box-shadow: 0 20px 50px rgba(17,17,17,.10);
}

.insight-kicker {
  margin: 0 0 12px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.insight-feature h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
}

.insight-feature p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

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

.insight-card {
  min-height: 100%;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 20px 50px rgba(17,17,17,.06);
  overflow: hidden;
}

.insight-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.insight-card-visual {
  position: relative;
  min-height: 168px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #ffffff;
  background-image:
    linear-gradient(180deg, rgba(3,8,14,.08), rgba(3,8,14,.42)),
    url('/img/insight01.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.insight-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,8,14,.04), rgba(3,8,14,.38));
  pointer-events: none;
}

.insight-card-visual::after {
  content: none;
}

.insight-card-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.insight-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.insight-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.insight-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0f2f5;
  color: #5f6670;
  font-size: 12px;
  font-weight: 700;
}

.insight-card h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 20px;
  line-height: 1.45;
}

.insight-card p {
  margin: 0;
  color: #4d5662;
  font-size: 14px;
  line-height: 1.75;
}

.insight-card-more {
  margin-top: auto;
  padding-top: 20px;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}

.insight-card-link:hover .insight-card-more {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.insights-notice code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(17,17,17,.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
}

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

@media (max-width: 760px) {
  .insights-shell {
    width: min(calc(100% - 28px), 1120px);
  }

  .insight-feature {
    padding: 24px;
    border-radius: 20px;
  }

  .insight-card-visual {
    min-height: 142px;
  }

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