.oh-stats {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  overflow: hidden;
}

.oh-stats__heading {
  display: grid;
  gap: 0.75rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.oh-stats__heading h2,
.oh-stats__heading .oh-subtitle,
.oh-stats__heading .oh-categories {
  margin: 0;
}

.oh-stats__slider {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-inline-end: clamp(32px, 7vw, 72px);
}

.oh-stats__slider:not(.swiper) {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  max-width: 860px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding-inline: 0;
}

.oh-stats__slider .swiper-slide {
  height: auto;
}

.oh-card-stats {
  background: var(--oh-surface, #fff);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  align-items: flex-start;
}

.oh-card-stats:hover {
  /* transform: translateY(-4px); */
}

.oh-card-stats:focus-within,
.oh-card-stats:focus-visible {
  outline: 2px solid var(--oh-primary, #12329e);
  outline-offset: 4px;
}

.oh-card-stats .oh-categories,
.oh-card-stats .oh-body-text {
  margin: 0;
}

.oh-card-stats .oh-subtitle {
  margin: 0;
}

.oh-card-stats__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 20px 0;
}

.oh-card-stats__icon--empty {
  background: transparent;
}

.oh-card-stats__icon-media {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.oh-number-emphasis {
  margin: 0;
  font-size: 48px;
  line-height: 40px;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #12329E;
}

/* .oh-number-emphasis__prefix,
.oh-number-emphasis__suffix {
  font-size: clamp(0.95rem, 0.8vw + 0.35rem, 1.125rem);
  font-weight: 500;
  color: rgba(7, 27, 68, 0.55);
} */

.oh-stats__cta {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .oh-stats__slider {
    padding-inline-end: clamp(24px, 4vw, 48px);
  }
}

@media (min-width: 1024px) {
  .oh-stats {
    padding-inline: clamp(48px, 6vw, 120px);
  }

  .oh-stats__slider {
    padding-inline: 0;
  }

  .oh-stats__slider:not(.swiper) {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .oh-card-stats__icon {
    margin: 10px 0 0 0;
  }
}
