.hero {
	height: 50vh;
	min-height: 300px;
	/* 防止小屏幕高度过低 */
	/* background: url('/img/life/background.jpg') center/cover; */
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	margin-top: 100px;
	/* 移除固定边距，改用内边距 */
	padding: 0 5%;
	position: relative;
	z-index: 1;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(89, 87, 86, 0.3);
	z-index: -1;
}

.hero-content h1 {
	font-size: 31px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 1);
}

.hero-content h2 {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 1);
}

/* ========== 核心修改：News模块样式（对齐领导团队页面） ========== */
/* 自定义CSS变量（复用领导团队页面） */
:root {
	--color-primary: #0F3460;
	--color-secondary: #1A5F7A;
	--color-neutral: #F5F7FA;
	--color-gray-light: #e5e7eb;
	--color-gray: #6b7280;
	--color-gray-dark: #374151;
	--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--transition-base: all 0.3s ease;
}

/* News模块整体容器 */
.news-section {
	padding: 80px 16px;
	/* 对齐领导团队页面内边距 */
	background-color: var(--color-neutral);
	/* 复用领导团队页面背景色 */
	text-align: center;
}

/* 模块标题（对齐领导团队page-title样式） */
.section-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	/* 响应式字号 */
	font-weight: 700;
	color: var(--color-primary);
	/* 替换为领导团队主色 */
	margin-bottom: 48px;
	/* 对齐领导团队标题间距 */
	line-height: 1.6;
}

/* 新闻列表容器（对齐领导团队card-container栅格） */
.news-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	/* 手机端1列 */
	gap: 32px;
	/* 对齐领导团队卡片间距 */
}

/* 平板端（768px+）2列 */
@media (min-width: 768px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* PC端（1024px+）3列 */
@media (min-width: 1024px) {
	.news-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* 新闻卡片（对齐领导团队leader-card样式） */
.news-item {
	background: #fff;
	border-radius: 8px;
	/* 圆角对齐 */
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	/* 初始阴影 */
	transition: var(--transition-base);
	/* 复用过渡动画 */
	cursor: pointer;
	position: relative;
}

/* 卡片hover效果（对齐领导团队hover） */
.news-item:hover {
	box-shadow: var(--shadow-lg);
	/* 加深阴影 */
	transform: scale(1.02);
	/* 轻微缩放 */
}

/* 新闻图片（对齐领导团队卡片图片尺寸） */
.news-img {
	width: 100%;
	min-height: 272px;
	max-height: 373px;
	object-fit: cover;
	/* 保持图片比例 */
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

/* 新闻卡片内容区（对齐领导团队card-content） */
.news-card-content {
	padding: 24px;
	/* 内边距对齐 */
	text-align: left;
	/* 文字左对齐，和领导团队一致 */
}

/* 新闻标题（对齐领导团队name样式） */
.news-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.5;
	margin-bottom: 8px;
	/* 对齐领导团队name间距 */
	max-width: 100%;
	/* 取消宽度限制 */
	text-align: left;
	/* 左对齐 */
}

/* 新闻描述（对齐领导团队shortbio样式） */
.news-desc {
	font-size: 0.875rem;
	color: var(--color-gray);
	/* 替换为领导团队灰色 */
	line-height: 1.5;
	padding: 0;
	/* 清空原有内边距 */
	margin-bottom: 0;
	/* 文本溢出省略（2行） */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
}