/* css styles */

/* ========================================
   About 페이지 - 프로필 헤더 (이미지 왼쪽 + 정보 오른쪽)
   ======================================== */

.profile-header {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 1.5rem 0 2.5rem 0;
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Quarto가 이미지를 figure로 감싸는 경우 대응 */
.profile-image figure,
.profile-image .figure {
  margin: 0;
}

.profile-image figcaption {
  display: none;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-info h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.profile-info p {
  margin-bottom: 0.75rem;
}

/* 모바일 대응: 세로 배치 */
@media (max-width: 600px) {
  .profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .profile-image img {
    width: 160px;
    height: 160px;
  }
}
