/* 玩物社区 专家详情页样式 */
.expert-detail-card {
  display: flex;
  gap: 32px;
  padding: 32px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.expert-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.expert-detail-img {
  flex-shrink: 0;
}
.expert-detail-img img {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid #E94560;
}
.expert-detail-info h3 {
  font-size: 24px;
  color: #1A1A2E;
  margin-bottom: 8px;
}
.expert-role {
  color: #E94560;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.expert-bio {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}
.expert-achievements h4 {
  color: #1A1A2E;
  font-size: 16px;
  margin-bottom: 10px;
}
.expert-achievements ul {
  list-style: none;
  padding: 0;
}
.expert-achievements li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #555;
  font-size: 14px;
}
.expert-achievements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E94560;
  font-weight: bold;
}
.expert-specialty {
  margin-top: 16px;
}
.expert-specialty h4 {
  color: #1A1A2E;
  font-size: 16px;
  margin-bottom: 8px;
}
.expert-specialty p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .expert-detail-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
  }
  .expert-detail-img img {
    width: 160px;
    height: 160px;
  }
  .expert-achievements li {
    text-align: left;
  }
}
