/* ========================================
   About Me
   ======================================== */
.about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  padding-top: 180px;
  padding-bottom: 104px;
}

.about-copy {
  width: 635px;
  max-width: 100%;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-title {
  font-size: 52px;
  font-weight: var(--weight-medium);
  line-height: 1.15;
}

.about-body {
  font-size: 18px;
  font-weight: var(--weight-light);
  color: var(--color-text-secondary);
  line-height: 35px;
}

.about-photo {
  width: 635px;
  max-width: 100%;
  height: 847px;
  border-radius: 80px;
  overflow: hidden;
  flex-shrink: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1200px) {
  .about {
    flex-direction: column;
    gap: 48px;
    padding-top: 80px;
  }

  .about-copy {
    width: 100%;
    padding-top: 0;
  }

  .about-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 635 / 847;
    border-radius: 48px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
  }

  .about-photo {
    border-radius: 32px;
  }
}
