.insight-section + .insight-section {
  margin-top: 82px;
  padding-top: 72px;
  border-top: 1px solid var(--divider);
}

.insight-section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 48px;
  align-items: end;
}

.insight-section-header h2 {
  margin-top: 14px;
}

.insight-section-header p {
  margin: 0;
}

.insights-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insights-grid--three .insight-card {
  min-height: 390px;
  padding: 34px;
}

.insights-grid--three .insight-card h3 {
  font-size: clamp(25px, 2.3vw, 32px);
}

.hub-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: 82px;
}

.hub-actions .cta-box {
  margin: 0;
  text-align: left;
}

.hub-actions .cta-box p {
  margin-left: 0;
}

@media (max-width: 900px) {
  .insights-grid--three,
  .hub-actions {
    grid-template-columns: 1fr;
  }

  .insights-grid--three .insight-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .insight-section + .insight-section {
    margin-top: 64px;
    padding-top: 56px;
  }

  .insight-section-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hub-actions {
    margin-top: 64px;
  }
}
