ul.profile-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

ul.profile-list li {
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.2s;
}

ul.profile-list li:hover {
  transform: translateY(-4px);
}

/* 프로필 이미지 링크 스타일 */
.profile-list li a {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
}

/* 프로필 이미지 스타일 */
.profile-list li a .profile-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid #ccc;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.profile-desc {
  font-size: 15px;
  color: #555;
}

a.image-link {
  text-decoration: none;
} 