.about {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: 6rem clamp(1.25rem, 6vw, 5rem) 6.5rem;
  background: var(--surface-soft);
}

.about__media {
  position: relative;
  flex: 0 0 clamp(15rem, 26vw, 21rem);
}

.about__media .paint-reveal {
  border-radius: 28px;
  border: 1px solid var(--surface-line);
  box-shadow: 0 24px 60px -28px rgba(122, 31, 69, 0.55);
  aspect-ratio: 1 / 1;
}

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

.about__badge {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(255, 61, 143, 0.6);
  white-space: nowrap;
}

.about__badge i {
  font-size: 0.72rem;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  max-width: 34rem;
}

.about__content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0;
}

.about__bio {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}

.about__bio em {
  color: var(--accent-soft);
  font-style: normal;
  font-weight: var(--fw-semibold);
}

.about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.about__facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.about__facts i {
  color: var(--accent-soft);
}

@media (max-width: 1024px) {
  .about__content {
    align-items: center;
    text-align: center;
  }

  .about__facts {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .about {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: center;
  }

  .about__media {
    flex-basis: auto;
    width: clamp(14rem, 50vw, 18rem);
  }
}

@media (max-width: 480px) {
  .about {
    padding: 4rem 1.25rem 4.5rem;
    gap: 2rem;
  }

  .about__media {
    width: 60vw;
    max-width: 14rem;
  }

  .about__badge {
    left: -0.5rem;
    bottom: -0.5rem;
    font-size: 0.7rem;
    padding: 0.5rem 0.85rem;
  }
}

@media (max-width: 320px) {
  .about {
    padding: 3.5rem 1rem 4rem;
  }

  .about__media {
    width: 70vw;
  }
}
