@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
/* stylelint-disable */
.section-stats {
  background: transparent;
  margin: calc(var(--section-stats) / -2) 0;
  z-index: 1;
  position: relative;
}
.section-stats__list {
  margin: 0;
  padding: clamp(10px, 0.9765625vw, 2.4rem);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--section-bg, #ffffff);
  border: 0.16rem solid #d9dde2;
}
.section-stats__item {
  padding: clamp(10px, 0.9765625vw, 2.4rem) clamp(10px, 0.9765625vw, 2.8rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.section-stats__item strong {
  color: var(--color-accent);
  font-family: var(--font-title);
  font-size: clamp(40px, 4.8828125vw, 7.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.section-stats__item span {
  color: #3f454f;
  font-family: var(--font-title);
  font-size: clamp(18px, 1.7578125vw, 2.4rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  display: grid;
  gap: 0.48rem;
}
.section-stats__item span em {
  color: var(--color-text-main);
  opacity: 0.5;
  font-style: normal;
}
@media (min-width: 767px){
  .section-stats__item {
    border-left: 0.1rem solid #d9dde2;
  }
  .section-stats__item:first-child {
    border-left: none;
  }
}
@media (max-width: 766.98px){
  .section-stats__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .section-stats__item {
    width: 100%;
    justify-content: center;
    padding: 24px;
    border-bottom: 0.1rem solid #d9dde2;
  }
  .section-stats__item:last-child {
    border: none;
  }
}
/*# sourceMappingURL=section-counter.css.map */