.about-section {
  width: 100%;
  padding: 6rem 5%;
  padding-top: 7rem;
}

.about-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  overflow: visible;
}

.about-wrapper .left,
.about-wrapper .right {
  flex: 1;
  min-width: 300px;
}

.about-wrapper .left {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.about-wrapper .img-wrapper {
  width: 100%;
  max-width: 70%;
  aspect-ratio: 1 / 1;
  padding: 0.4rem;
  border-radius: 50%;
  overflow: visible;
  background: linear-gradient(135deg, #F97794 10%, #623AA2 100%);
  box-shadow: 0 0 3rem rgb(0, 0, 0);
}

.about-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-wrapper .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  max-width: 55rem;
}

.about-wrapper .right h1 {
  font-size: var(--font-heading);
  color: #2e2e2e;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.about-wrapper .right p {
  font-size: var(--font-paragraph);
  color: #444;
  text-align: left;
}

/* -------------------- Tablet (max-width: 1200px) -------------------- */
@media (max-width: 1200px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-wrapper .left,
  .about-wrapper .right {
    max-width: 100%;
  }

  .about-wrapper .right h1 {
    font-size: var(--font-heading);
    text-align: center;
  }

  .about-wrapper .right p {
    font-size: var(--font-paragraph);
  }
}

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

  .about-wrapper .img-wrapper {
    max-width: 25rem;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .about-wrapper .right {
    align-items: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .about-wrapper .right h1 {
    font-size: var(--font-heading);
    text-align: center;
  }

  .about-wrapper .right p {
    font-size: var(--font-paragraph);
    text-align: justify;
    line-height: 1.7;
  }
}
