@charset "utf-8";
/* ========== Hero 区域 ========== */
.hero-staff {
	position: relative;
	width: 100%;
	height: 45vh;
	min-height: 360px;
	margin-top: 64px;
	background: linear-gradient(135deg, #0a2a4a 0%, #1a3a5c 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}
.hero-staff::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('imges/staff-hero-bg.jpg') center/cover no-repeat;
	opacity: 0.25;
	z-index: 0;
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	padding: 0 24px;
}
.hero-content h1 {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
}
.hero-content .role {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.85);
	letter-spacing: 0.08em;
	font-weight: 400;
}
.hero-divider {
	width: 60px;
	height: 3px;
	background: #0066cc;
	margin: 16px auto;
	border-radius: 2px;
}
/* ========== 主内容 ========== */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 24px;
}
/* 图文混排块 */
.bio-block {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-bottom: 60px;
}
.bio-block.reverse {
	flex-direction: row-reverse;
}
.bio-text {
	flex: 1;
}
.bio-text h2 {
	font-size: 1.8rem;
	color: #0f172a;
	margin-bottom: 20px;
	letter-spacing: 0.03em;
}
.bio-text p {
	color: #475569;
	font-size: 1rem;
	line-height: 1.9;
	margin-bottom: 16px;
}
.bio-text strong {
	color: #0f172a;
}
.bio-image {
	flex: 1;
}
.bio-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.1);
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
	background: #e0e4e8;
}
.btn-back {
	display: inline-block;
	color: #0066cc;
	text-decoration: none;
	font-weight: 500;
	padding: 10px 24px;
	border: 1px solid #0066cc;
	border-radius: 30px;
	transition: all 0.3s;
	margin-top: 20px;
}
.btn-back:hover {
	background: #0066cc;
	color: #fff;
}
footer {
	text-align: center;
	padding: 28px 0;
	border-top: 1px solid #e0e4e8;
	color: #94a3b8;
	font-size: 0.9rem;
	margin-top: 40px;
}
 @media (max-width: 768px) {
.bio-block, .bio-block.reverse {
	flex-direction: column;
	gap: 30px;
}
.hero-content h1 {
	font-size: 2rem;
}
}
