/* 整体容器 */
.home-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px;
}

/* 顶部个人信息区 */
.profile-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-info h1 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 600;
}

.profile-info .title {
  margin: 4px 0;
  font-size: 16px;
  color: #555;
}

.profile-info .affiliation {
  margin: 4px 0;
  font-size: 15px;
  color: #777;
}

.profile-info .contact {
  margin-top: 10px;
  font-size: 14px;
}

.profile-info .contact a {
  color: #0366d6;
  text-decoration: none;
  margin: 0 4px;
}

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

/* 正文内容 */
.home-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.home-content h3 {
  font-size: 17px;
  margin-top: 20px;
}

/* News 列表 */
.home-content ul {
  list-style: none;
  padding-left: 0;
}

.home-content ul li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.home-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #666;
}

/* 响应式：手机 */
@media (max-width: 600px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  .avatar {
    width: 130px;
    height: 130px;
  }
}