.stats__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.stats__wrap {
    container: stats / inline-size;
}
.stats__content {
  margin-bottom: 6rem;
}
.stats__stat-card {
  text-transform: uppercase;
  padding: 4rem 2rem 2rem;
  background-color: var(--c-third);
  color: var(--c-second) !important;
  width: 100%;
  max-width: 34rem;
  position: relative;
  text-align: center;
  border-radius: 4rem;
}
.stats__stat-card:nth-child(2n) {
  background-color: var(--c-highlight);
}
.stats__stat-card:nth-child(3n) {
  background-color: var(--c-light);
}
.stats__stat-icon {
  position: absolute;
  width: 7rem;
  height: 7rem;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-second);
  border-radius: 50%;
  padding: 2rem;
}
.stats__stat,
.stats__stat-pre,
.stats__stat-post {
  display: inline-block;
  font-size: clamp(4.8rem, 5vw, 8rem);
  margin: 0;
}
.stats__stat-label {
  display: block;
  width: 100%;
  font-weight: 900;
  color: var(--c-second) !important;
}
.stats__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@container stats (min-width: 840px) {
  .stats__stats.stats-count--2 .stats__stat-card {
    max-width: 40%;
  }
  .stats__stats.stats-count--4 .stats__stat-card {
    max-width: 22%;
  }
  .st
}