.stats-block {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.stats-block__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(240, 150, 32, 0.5) 0%, rgba(240, 150, 32, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.stats-block__inner {
  position: relative;
  z-index: 1;
}
.stats-block__header {
  position: absolute;
  top: clamp(32px, 4.44vw, 64px);
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 440px;
  pointer-events: auto;
}
.stats-block__heading {
  font-family: "Integral CF", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 2.22vw, 32px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #231f20;
  line-height: 1.2;
  margin: 0;
}
.stats-block__content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #231f20;
}
.stats-block__content p {
  margin: 0 0 12px;
}
.stats-block__content p:last-child {
  margin-bottom: 0;
}
.stats-block__carousel {
  position: relative;
  height: clamp(420px, 45vw, 600px);
  overflow: hidden;
}
.stats-block__slide {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  display: flex;
  align-items: center;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.65s ease;
  pointer-events: none;
}
.stats-block__slide.is-active {
  pointer-events: auto;
  z-index: 2;
}
.stats-block__number {
  width: 49%;
  text-align: right;
  padding-right: clamp(12px, 1vw, 16px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: italic;
  color: #f09620;
  line-height: 0.85;
  font-size: clamp(80px, 20vw, 300px);
  white-space: nowrap;
}
.stats-block__desc {
  width: 51%;
  padding-left: clamp(12px, 1vw, 16px);
  font-family: "Integral CF", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 2.78vw, 40px);
  line-height: 1.2;
  color: #f09620;
}
@media (max-width: 767px) {
  .stats-block__header {
    position: relative;
    top: auto;
    left: auto;
    padding-top: clamp(32px, 5vw, 48px);
    max-width: 100%;
  }
  .stats-block__carousel {
    height: 340px;
  }
  .stats-block__slide {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-block__number {
    width: 100%;
    text-align: left;
    padding-right: 0;
    font-size: clamp(56px, 18vw, 110px);
  }
  .stats-block__desc {
    width: 100%;
    padding-left: 0;
    font-size: clamp(14px, 4vw, 22px);
  }
}

/*# sourceMappingURL=stats-block.css.map */