.about {
  padding: 7rem 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(212, 175, 79, 0.06),
      transparent 40%
    ),
    #07090d;
}

.about__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 43.5rem);
  align-items: center;
  gap: 4.5rem;
}

.about__content {
  max-width: 45rem;
  margin-left: clamp(1.5rem, 4vw, 4rem);
}

.about__title {
  margin: 0 0 2.2rem;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.about__title span {
  display: block;
  color: var(--accent);
}

.about__text {
  max-width: 43rem;
  margin-bottom: 3.6rem;
}

.about__text p {
  margin: 0 0 1.6rem;
  color: #9ba3b7;
  font-size: 1.16rem;
  line-height: 1.75;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 2.6em;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about__stat strong {
  color: var(--accent);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700;
}

.about__stat span {
  color: #8f97ab;
  font-size: 0.92rem;
  line-height: 1.35;
}

.about__media {
  display: flex;
  justify-content: center;
}

.about__image {
  display: block;
  width: 100%;
  max-width: 43.5rem;
  height: 47rem;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 96rem) {
  .about {
    padding: 6rem 0;
  }

  .about__container {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 38rem);
    gap: 3rem;
  }

  .about__title {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
  }

  .about__text {
    margin-bottom: 3rem;
  }

  .about__text p {
    font-size: 1rem;
  }

  .about__stats {
    gap: 2.5rem;
  }

  .about__image {
    max-width: 38rem;
    height: 42rem;
  }
}

@media (max-width: 75rem) {
  .about {
    padding: 5rem 0;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__content {
    max-width: 100%;
    margin-left: 0;
  }

  .about__text {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .about__image {
    max-width: 100%;
    height: 36rem;
  }
}

@media (max-width: 48rem) {
  .about {
    padding: 4rem 0;
  }

  .about__title {
    margin-bottom: 1.6rem;
    font-size: clamp(1.9rem, 7vw, 2.9rem);
  }

  .about__text p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .about__stat strong {
    font-size: 1.75rem;
  }

  .about__stat span {
    font-size: 0.85rem;
  }

  .about__image {
    height: 28rem;
  }
}