/* ── Invest in Kinnevik page ── */
.invest-page .page-intro {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.invest-page__intro-copy {
  max-width: var(--page-intro-text-max);
  margin-inline: auto;
  text-align: left;
}

.invest-page__pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.invest-page__pill-row .btn-pill {
  min-width: 0;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
}

.invest-page .ir-invest__stats {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.invest-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--page-grid-gap);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.invest-insights__grid .news-card {
  min-height: clamp(18rem, 32vw, 22rem);
}

.invest-insights__grid .news-card--span-2,
.invest-insights__grid .news-card--span-3 {
  grid-column: auto;
}

@media (max-width: 1024px) {
  .invest-insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .invest-page__intro-copy .page-intro__text {
    font-size: 0.9375rem;
  }

  .invest-page__pill-row {
    flex-direction: column;
    align-items: stretch;
  }

  .invest-page__pill-row .btn-pill {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .invest-insights__grid {
    grid-template-columns: 1fr;
    gap: clamp(0.875rem, 2.5vw, 1rem);
  }

  .invest-insights__grid .news-card {
    min-height: clamp(16rem, 52vw, 20rem);
  }
}
