.profile-intro {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 1rem auto 3rem auto;
}

.profile-photo {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.profile-text {
  max-width: 650px;
}

.profile-text h3 {
  margin-top: 0;
  font-size: 1.8rem;
}

.profile-text p {
  font-size: 1.08rem;
  line-height: 1.7;
}

main {
  max-width: 1050px;
  margin: 0 auto;
}

.btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .profile-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-photo {
    width: 210px;
    height: 260px;
  }
}