.stats {
  background: #F5F3EE;
  padding-top: 48px;
  padding-bottom: 48px;
}

.stats__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  gap: 32px;
}

.stats__item {
  width: 280px;
  height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats__value-wrap {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.stats__value {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  color: #0f1b4c;
  letter-spacing: 0.3691px;
}

.stats__label-wrap {
  height: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding-top: 8px;
}

.stats__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #64748b;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .stats__item {
    width: auto;
  }
}
@media (max-width: 768px) {
  .stats {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    row-gap: 40px;
  }
  .stats__label {
    white-space: normal;
  }
}
@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats__value {
    font-size: 40px;
  }
}