/* 콘텐츠 */
.content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; 
  padding: 60px 20px; 
  min-width: 0;
  min-height: 100vh; 
}

/* 프로필 카드 */
.profile-card {
  display: flex;
  flex-direction: column;
  max-width: 850px;
  width: 90%; 
  margin: auto; 
  background: white;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

/* 내부 구조 */
.profile-main {
  display: flex;
  width: 100%;
  align-items: center;
}

/* 이미지 */
.profile-left {
  flex: 0 0 40%;
  max-width: 350px;
}

.profile-left img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 텍스트 */
.profile-right {
  flex: 1;
  padding: 40px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fdfdfd;
}

.profile-right h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #333;
}

.title {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 30px;
}

/* 상세 정보 */
.info {
  list-style: none;
  padding: 0;
}

.info li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
  flex-wrap: wrap;
}

.info li strong {
  width: 80px;
  flex-shrink: 0;
  color: #222;
}

/* 링크 스타일 */
.info li a {
  color: #444;
  text-decoration: none;
  cursor: pointer;
}

.info li a:hover {
  text-decoration: underline;
}

/* 반응형 모바일 레이아웃 */
@media (max-width: 768px) {
  .content {
    padding: 40px 15px;
  }

  .profile-main {
    flex-direction: column; 
  }

  .profile-left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .profile-left img {
    max-height: 250px; 
    object-fit: cover;
  }

  .profile-right {
    width: 100%;
    padding: 30px 20px;
    text-align: center; 
  }

  .info li {
    justify-content: center; 
  }
}