body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.author-profile {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Banner & Avatar */
.banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
	margin-top: 20px;
}

.avatar-container {
    position: absolute;
    bottom: -50px;
    left: 40px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
}

/* Header & Button */
.content {
    padding: 20px 40px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

h1 {
    margin: 0;
    color: inherit;
    font-size: 30px;
	border-bottom: solid 3px #80c132;
	padding-bottom: 10px;
}

.job-title {
    margin: 5px 0;
    color: #666;
    font-size: 16px;
}

.contact-btn {
    background-color: #e66000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
.contact-btn a{
    color: white;
	text-decoration: none;
}

/* Tabelle */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 0.9rem;
}

.info-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-table td:first-child {
    font-weight: 500;
    color: #444;
}

.info-table td:last-child {
    text-align: right;
    color: #000;
}

.bio p {
    margin-bottom: 20px;
	font-size: 16px;
}

@media (max-width: 768px) {

    .header-main {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .contact-btn {
        margin-top: 15px;
        min-width: 160px; 
        white-space: nowrap;
    }
}
/* 容器基础设置 */
.news-list-container {
  max-width: 750px;
  margin: 20px 0;
  font-family: Arial, sans-serif; /* 匹配原网站字体 */
}

.list-heading {
  font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
	margin-top: 60px;
}

/* 条目样式：去掉阴影和背景，只留底线 */
.news-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.3s ease;
}

/* 最后一条不显示底线 */
.news-item:last-child {
  border-bottom: none;
}

/* 元数据：日期和分类 */
.news-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
  display: flex;
  gap: 15px;
}

.news-category {
  color: #86c332; /* TunePat 绿色 */
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 标题链接 */
.news-link {
  text-decoration: none;
}

.news-title {
  font-size: 18px;
  color: #333;
  margin: 5px 0 10px 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

/* 摘要文字 */
.news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 悬停交互体验 */
.news-item:hover {
  border-left: 4px solid #86c332; /* 悬停时左侧出现绿条 */
  padding-left: 15px; /* 为绿条腾出空间 */
  background-color: #f9f9f9; /* 极淡的背景色提升选中感 */
}

.news-item:hover .news-title {
  color: #e76e31; /* 悬停时标题变为 TunePat 橙色 */
}
