.msp-stats-highlight {
  position: relative;
  z-index: 2;
  --msp-stats-overlap: clamp(3.5rem, 5vw, 5.5rem);
  padding-top: 0;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(235, 243, 250, 0.68) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.msp-stats-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 3.25fr) minmax(20rem, 1.75fr);
  align-items: start;
  gap: clamp(1.5rem, 2.5vw, 3rem);
}

.msp-stats-highlight__items {
  min-width: 0;
  margin-top: calc(var(--msp-stats-overlap) * -1.6);
}

.msp-stats-highlight__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(20, 58, 90, 0.12);
}

.msp-stats-highlight__grid-label {
  display: none;
}

.msp-stats-highlight__grid-item {
  min-width: 0;
}

.msp-stats-highlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: clamp(2.75rem, 3vw, 3.75rem) 0;
  text-align: center;
}

.msp-stats-highlight__title {
  margin: 0;
  font-size: clamp(2.6rem, 3.7vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--color-text);
}

.msp-stats-highlight__text {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  line-height: 1.5;
  color: var(--color-text);
}

.msp-stats-highlight__text .field,
.msp-stats-highlight__text .field__item,
.msp-stats-highlight__text p:last-child {
  margin-bottom: 0;
}

.msp-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 18.5rem;
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.98);
  border-right: 1px solid rgba(20, 58, 90, 0.06);
}

.msp-stats-highlight__grid-item:last-child .msp-stat-card {
  border-right: 0;
}

.msp-stat-card__icon {
  margin-bottom: 1.25rem;
}

.msp-stat-card__icon .field,
.msp-stat-card__icon .field__item {
  margin: 0;
}

.msp-stat-card__icon img {
  display: block;
  width: auto;
  max-width: 6rem;
  max-height: 6rem;
  margin-left: auto;
  margin-right: auto;
}

.msp-stat-card__value {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 3vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--color-secondary);
}

.msp-stat-card__label {
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-text);
}

@media (min-width: 64rem) {
  .msp-stats-highlight__inner {
    gap: clamp(1.5rem, 1.8vw, 2.25rem);
  }

  .msp-stats-highlight__title {
    font-size: clamp(1.75rem, 1.25rem + 1.15vw, 2rem);
  }

  .msp-stats-highlight__text {
    font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.05rem);
  }
}

@media (max-width: 74rem) {
  .msp-stats-highlight {
    --msp-stats-overlap: clamp(2.75rem, 4vw, 4rem);
  }

  .msp-stats-highlight__inner {
    grid-template-columns: minmax(0, 3fr) minmax(18rem, 1.7fr);
  }

  .msp-stat-card {
    min-height: 16.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 63.9375rem) {
  .msp-stats-highlight {
    --msp-stats-overlap: 0rem;
    padding-top: 1.25rem;
    padding-bottom: 0;
  }

  .msp-stats-highlight__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .msp-stats-highlight__content {
    order: 1;
    padding: 0;
  }

  .msp-stats-highlight__items {
    order: 2;
  }

  .msp-stats-highlight__grid {
    border-radius: 1.5rem;
  }

  .msp-stat-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 40rem) {
  .msp-stats-highlight__grid {
    grid-template-columns: 1fr;
  }

  .msp-stat-card {
    border-right: 0;
    border-bottom: 1px solid rgba(20, 58, 90, 0.08);
  }

  .msp-stats-highlight__grid-item:last-child .msp-stat-card {
    border-bottom: 0;
  }
}
