.blog-page {
  position: relative;
  --blog-hero-title-size: clamp(2.2rem, 4.4vw, 4.1rem);
  --blog-section-title-size: clamp(2.45rem, 4.8vw, 4rem);
  --blog-card-title-size: clamp(1.45rem, 2vw, 1.85rem);
  --blog-copy-size: 18px;
  --blog-copy-line-height: 29px;
  background: #fbfcff;
}

.blog-page p {
  font-size: var(--blog-copy-size);
  line-height: var(--blog-copy-line-height);
}

.blog-hero-section {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  background: var(--color-blue);
}

.blog-hero-section::before,
.blog-hero-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
}

.blog-hero-section::before {
  left: -170px;
  bottom: -170px;
  border: 26px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 52px rgba(255, 255, 255, 0.06),
    0 0 0 104px rgba(255, 255, 255, 0.04);
}

.blog-hero-section::after {
  right: -170px;
  top: -170px;
  border: 24px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.06),
    0 0 0 96px rgba(255, 255, 255, 0.04);
}

.blog-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.blog-hero-shell .page-breadcrumbs {
  justify-content: center;
}

.blog-hero-shell h1 {
  margin: 0;
  color: var(--color-white);
  font-size: var(--blog-hero-title-size);
  line-height: 1;
  letter-spacing: -0.055em;
}

.insights-section {
  padding: 5.5rem 0;
  background: var(--color-white);
}

.insights-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.75rem;
}

.insights-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--color-blue);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.insights-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--blog-section-title-size);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.insights-intro {
  max-width: 30rem;
  margin: 1.1rem 0 0 auto;
  color: var(--color-muted);
}

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

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(71, 36, 240, 0.08);
  border-radius: 32px;
  background: var(--color-white);
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(71, 36, 240, 0.18);
}

.insight-card-media {
  min-height: 265px;
  background: #e9edf8;
}

.insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.65rem 1.75rem 1.9rem;
}

.insight-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(71, 36, 240, 0.08);
  color: var(--color-blue);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-card-body h3 {
  margin: 1.15rem 0 0;
  color: var(--color-text);
  font-size: var(--blog-card-title-size);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.insight-card-body p {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.55rem;
  color: var(--color-text);
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.insight-card-link span {
  color: var(--color-orange);
  font-size: 1.1em;
}

.insight-card-link:hover {
  color: var(--color-blue);
}

@media (width <=1199.98px) {
  .insights-header {
    grid-template-columns: 1fr;
  }

  .insights-intro {
    margin: 0;
  }
}

@media (width <=767.98px) {
  .blog-page {
    --blog-hero-title-size: 32px;
    --blog-section-title-size: 30px;
    --blog-card-title-size: clamp(1.35rem, 6vw, 1.6rem);
    --blog-copy-size: 14px;
    --blog-copy-line-height: 24px;
  }

  .blog-hero-section {
    padding: 2.5rem 0;
  }

  .insights-section {
    padding: 2.5rem 0;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card-media {
    min-height: 230px;
  }

  .insight-card-body {
    padding: 1.35rem 1.25rem 1.45rem;
  }
}