.about-stats {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}

.about-stats__image {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.about-stats__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats__text {
  position: absolute;
  max-width: 487px;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 110%;
}

.about-stats__text--top-left {
  top: 16px;
  left: 16px;
}

.about-stats__text--bottom-left {
  bottom: 16px;
  left: 16px;
}

.about-stats__stats {
  position: absolute;
  top: 16px;
  right: 268px;
  display: flex;
  gap: 75px;
}

.about-stats__stat-number {
  color: #ffffff;
  font-size: 96px;
  line-height: 100%;
}

.about-stats__stat-label {
  margin-top: 8px;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-stats {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100svh;
    padding: 32px;
  }

  .about-stats__image {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 0;
  }

  .about-stats__text {
    position: static;
    z-index: 1;
    max-width: none;
    font-size: 48px;
  }

  .about-stats__text--top-left {
    margin-bottom: 32px;
  }

  .about-stats__stats {
    position: static;
    z-index: 1;
    flex-wrap: wrap;
    margin-top: auto;
    gap: 32px 64px;
  }

  .about-stats__stat {
    min-width: 0;
  }

  .about-stats__stat-number {
    font-size: 128px;
  }

  .about-stats__stat-label {
    font-size: 28px;
    line-height: 110%;
  }
}

@media (max-width: 480px) {
  .about-stats {
    padding: 20px;
  }

  .about-stats__text {
    font-size: 22px;
  }

  .about-stats__text--top-left {
    margin-bottom: 20px;
  }

  .about-stats__stat-number {
    font-size: 64px;
  }

  .about-stats__stat-label {
    font-size: 16px;
  }

  .about-stats__stats {
    gap: 20px 32px;
  }
}
