/* Scholar Pages - 统一样式文件 */
/* 适用于所有学者详情页面 */

/* 容器样式 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  padding: 8rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

/* 个人资料卡片 */
.profile-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 2rem;
  align-items: center;
}

.profile-image-container {
  position: relative;
  flex-shrink: 0;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.verification-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.verification-badge svg {
  width: 14px;
  height: 14px;
}

.profile-info {
  flex: 1;
}

.researcher-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  line-height: 1.2;
}

.researcher-title {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.researcher-affiliation {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 1rem 0;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.country-flag {
  font-size: 1.2rem;
}

.contact-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.email-link, .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.email-link:hover, .phone-link:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.email-icon, .phone-icon {
  width: 16px;
  height: 16px;
}

/* Content Section */
.content-section {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.content-card {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  font-size: 1.5rem;
}

.card-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.card-content {
  color: #374151;
  line-height: 1.6;
}

.card-content p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

/* 列表样式 */
.research-list, .education-list, .appointments-list, .roles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.research-list li, .education-list li, .appointments-list li, .roles-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.research-list li:last-child, .education-list li:last-child, .appointments-list li:last-child, .roles-list li:last-child {
  border-bottom: none;
}

.current-position {
  font-weight: 500;
  color: #3b82f6;
  margin-bottom: 1rem;
}

/* Accordion Items */
.accordion-item {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
  width: 100%;
  text-align: left;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-title h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
}

.accordion-content .content-card {
  margin-bottom: 0;
  box-shadow: none;
  border: 1px solid #f1f5f9;
}

/* Publications */
.publication-items {
  margin-bottom: 0;
}

.publication-items p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.publication-items p:last-child {
  margin-bottom: 0;
}

.publication-items em {
  color: #3b82f6;
  font-style: italic;
}

/* Projects */
.project-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.project-item:last-child {
  margin-bottom: 0;
}

.project-item h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}

.project-item p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.project-item p:last-child {
  margin-bottom: 0;
}

.project-item strong {
  color: #374151;
}

/* Research Tags */
.research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.research-tag {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .profile-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }

  .researcher-name {
    font-size: 1.5rem;
  }

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

  .content-card {
    padding: 1rem;
  }

  .accordion-header {
    padding: 1rem;
  }

  .accordion-content {
    padding: 0 1rem 1rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }
} 