* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--header-offset: 80px;
}

body {
	font-family: "Microsoft YaHei", "SimHei", sans-serif;
	overflow-x: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.container {
	width: 100%;
	position: relative;
	padding-top: var(--header-offset);
}


/* ========== 全局导航样式 ========== */
.header-container {
	width: 100%;
	background:
		linear-gradient(90deg, rgba(120, 0, 0, 0.96), rgba(175, 12, 12, 0.92) 48%, rgba(108, 0, 0, 0.96));
	border-bottom: 1px solid rgba(255, 226, 208, 0.28);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 0 12px 28px rgba(77, 19, 19, 0.18);
}

.header-container::before,
.header-container::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.header-container::before {
	inset: 0;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.08)),
		radial-gradient(circle at 18% 50%, rgba(255, 214, 190, 0.12), transparent 18%),
		radial-gradient(circle at 82% 20%, rgba(255, 214, 190, 0.14), transparent 16%);
	opacity: 0.95;
}

.header-container::after {
	right: 68px;
	top: 50%;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
	transform: translateY(-50%);
	animation: headerGlow 5.5s ease-in-out infinite;
}

.header-main {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 30px;
	background: transparent;
}

.logo{
	display: flex;
	flex-direction: row;
}

.logo img {
	width:90px;
	height: 90px;
	border-radius:50%;
	margin-right:15px;
	display: block;
	filter: drop-shadow(0 6px 18px rgba(63, 0, 0, 0.18));
	animation: logoFloat 5s ease-in-out infinite;
}

.logo div{
	line-height: 50px;
	color:#FFFFFF;
	font-size:32px;
	margin-top: 20px;	
}

/* ========== PC端默认样式 ========== */
/* 隐藏移动端抽屉按钮 */
.drawer-btn {
	display: none !important;
}

/* 显示PC端横向导航 */
.pc-nav {
	display: flex !important;
	list-style: none;
	margin-top:40px;
}

/* PC导航项 */
.nav-item {
	position: relative;
	margin-left: 4px;
}

.nav-item>a {
	display: block;
	position: relative;
	padding: 14px 18px;
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	letter-spacing: 0.4px;
	transition: color 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
}

.nav-item>a::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 8px;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 231, 196, 0), #ffe7c4 22%, #ffe7c4 78%, rgba(255, 231, 196, 0));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.28s ease;
}

.nav-item>a:hover {
	color: #ffe7c4;
	transform: translateY(-2px);
}

.nav-item.active>a {
	color: #ffe7c4;
	font-weight: bold;
}

.nav-item:hover>a::after,
.nav-item.active>a::after {
	transform: scaleX(1);
}

/* PC端下拉菜单（丝滑动画） */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: linear-gradient(180deg, rgba(123, 0, 0, 0.98), rgba(155, 12, 12, 0.96));
	list-style: none;
	min-width: 150px;
	box-shadow: 0 14px 28px rgba(70, 10, 10, 0.24);
	z-index: 999;
	border: 1px solid rgba(255, 226, 208, 0.22);
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
	z-index: 200;
}

.nav-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
	white-space: nowrap;
	display: block;
	padding: 12px 16px;
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	text-align: center;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown-menu li a:hover {
	background-color: rgba(255, 231, 196, 0.14);
	color: #ffe7c4;
	transform: translateX(2px);
}

@media (min-width : 992px) {
	.mobile-drawer {
		display: none;
	}
}

/* ========== 移动端适配（992px以下） ========== */
@media (max-width : 992px) {

	/* 显示移动端抽屉按钮 */
	.drawer-btn {
		display: flex !important;
		width: 36px;
		height: 36px;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		cursor: pointer;
	}

	.drawer-btn span {
		width: 26px;
		height: 3px;
		background: #fff4eb;
		border-radius: 2px;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	/* 隐藏PC端横向导航 */
	.pc-nav {
		display: none !important;
	}

	/* 遮罩层 */
	.drawer-mask {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.drawer-mask.show {
		opacity: 1;
		visibility: visible;
	}

	/* 右侧抽屉主体 */
	.mobile-drawer {
		position: fixed;
		top: 0;
		right: 0;
		width: 100vw;
		height: 100vh;
		background: linear-gradient(180deg, #7b0000, #aa0f0f 58%, #6a0000);
		z-index: 1000;
		transform: translateX(100%);
		transition: transform 0.35s cubic-bezier(0.3, 0, 0, 1);
		overflow-y: auto;
	}

	.mobile-drawer.open {
		transform: translateX(0);
	}

	/* 抽屉头部 */
	.drawer-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 20px 15px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}
	
	.drawer-logo{
		display: flex;
		flex-direction:row;
	}

	.drawer-logo img {
		width:80px;
		height: 80px;
		border-radius:50%;
		margin-right: 15px;
	}
	
	.drawer-logo div{
		line-height: 40px;
		color:#FFFFFF;
		font-size:30px;
		margin-top: 20px;
	}

	.drawer-close {
		font-size: 32px;
		color: #fff;
		cursor: pointer;
	}

	/* 抽屉导航列表 */
	.drawer-nav {
		list-style: none;
		padding: 10px 0;
	}

	.drawer-item a,
	.drawer-title {
		display: block;
		padding: 24px 25px;
		color: #fff;
		font-size: 18px;
		text-decoration: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	/* 抽屉子菜单 */
	.drawer-submenu {
		list-style: none;
		background: rgba(82, 0, 0, 0.4);
		display: none;
	}

	.drawer-submenu.show {
		display: block;
	}

	.drawer-submenu li a {
		padding-left: 40px;
		font-size: 16px;
	}
}

@keyframes headerGlow {

	0%,
	100% {
		opacity: 0.5;
		transform: translateY(-50%) scale(0.96);
	}

	50% {
		opacity: 0.95;
		transform: translateY(-50%) scale(1.08);
	}
}

@keyframes logoFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

.slideshow {
	overflow: hidden;
	height: calc(100vh - var(--header-offset));
}

@media (max-width: 991px) {
	:root {
		--header-offset: 80px;
	}

	.slideshow {
		height: calc(74vh - var(--header-offset));
		min-height: 400px;
	}

	.header-container {
		box-shadow: 0 14px 30px rgba(77, 19, 19, 0.22);
	}

	.header-container::after {
		right: 18px;
		width: 138px;
		height: 138px;
	}

	.header-main {
		min-height: var(--header-offset);
		padding: 18px 20px 16px;
	}

	.logo {
		display: flex;
		align-items: center;
		max-width: calc(100% - 84px);
	}

	.logo img {
		width:80px;
		height: 80px;
		border-radius: 50%;
	}
	
	.logo div{
		line-height: 40px;
		color:#FFFFFF;
		font-size:30px;
		margin-top: 0px;
	}

	.drawer-btn {
		width: 52px !important;
		height: 52px;
		gap: 5px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.08);
		box-shadow: inset 0 0 0 1px rgba(255, 228, 214, 0.12);
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.drawer-btn span {
		width: 24px;
		height: 3px;
	}
}

.news {
	position: relative;
	padding: 90px 40px 110px;
	background:
		radial-gradient(circle at top left, rgba(185, 0, 0, 0.16), transparent 28%),
		linear-gradient(180deg, #f8f3ec 0%, #f5ede3 52%, #b60000 52%, #d10f0f 100%);
	overflow: hidden;
}

.news-shell {
	position: relative;
	max-width: 1680px;
	margin: 0 auto;
	z-index: 1;
}

.news-decor {
	position: absolute;
	width: 86px;
	height: 86px;
	background-image: radial-gradient(circle, #d70000 34%, transparent 36%);
	background-size: 10px 10px;
	opacity: 0.95;
	animation: newsFloat 6s ease-in-out infinite;
}

.news-decor-left {
	left: -20px;
	top: 92px;
}

.news-decor-right {
	right: 164px;
	bottom: 18px;
	animation-delay: -2s;
}

.news-heading {
	display: flex;
	align-items: flex-end;
	/* justify-content: space-between; */
	gap: 50px;
	margin: 0 auto 50px;
	/* padding-left: 760px; */
	/* padding-right: 120px; */
}

.news-title-wrap {
	position: relative;
	padding-right: 60px;
}

.news-title-wrap::before,
.news-title-wrap::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(220, 80, 80, 0.18);
	animation: pulseGlow 4.5s ease-in-out infinite;
}

.news-title-wrap::before {
	right: 16px;
	top: -16px;
	width: 60px;
	height: 60px;
}

.news-title-wrap::after {
	right: -8px;
	top: 14px;
	width: 36px;
	height: 36px;
	animation-delay: -1.8s;
}

.news-kicker {
	font-size: 22px;
	line-height: 1;
	color: #cbbfb2;
	margin-bottom: 8px;
}

.news-title {
	position: relative;
	font-size: 54px;
	line-height: 1.1;
	font-weight: 700;
	color: #2f2a26;
}

.news-title::after {
	content: "";
	position: absolute;
	left: -24px;
	bottom: -18px;
	width: 170px;
	height: 2px;
	background: linear-gradient(90deg, #d11414, rgba(209, 20, 20, 0));
}

.news-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 12px;
	font-size: 18px;
	color: #403837;
	text-decoration: none;
	transition: transform 0.35s ease, color 0.35s ease;
}

.news-more::before {
	content: "";
	width: 4px;
	height: 24px;
	background: #d11414;
}

.news-more:hover {
	color: #b50000;
	transform: translateX(6px);
}

.news-board {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 708px;
	grid-template-areas:
		"list feature"
		"actions feature";
	gap: 34px;
	align-items: start;
	min-height: 560px;
}

.reveal-card {	
	transition: opacity 0.8s ease, transform 0.8s ease;
	color: #FFFFFF;	
}

.reveal-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.news-feature {
	grid-area: feature;
	position: relative;
	order: 2;
	margin: 0;
	background: #fff;
	box-shadow: 0 32px 54px rgba(93, 46, 34, 0.18);
	overflow: hidden;
	transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.news-feature:hover {
	transform: translateY(-10px);
	box-shadow: 0 40px 72px rgba(93, 46, 34, 0.24);
}

.news-feature::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent 32%, transparent 72%, rgba(255, 255, 255, 0.18));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.news-feature:hover::after {
	opacity: 1;
}

.news-feature-media {
	height: 610px;
	overflow: hidden;
	border: 1px solid rgba(193, 178, 162, 0.75);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 234, 0.92)),
		repeating-linear-gradient(0deg, transparent 0, transparent 34px, rgba(210, 20, 20, 0.08) 35px, transparent 36px),
		repeating-linear-gradient(90deg, transparent 0, transparent 34px, rgba(210, 20, 20, 0.08) 35px, transparent 36px);
}

.news-feature-media img,
.news-side-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.news-feature:hover .news-feature-media img,
.news-side-card:hover .news-side-thumb img {
	transform: scale(1.06);
}

.news-feature-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 28px;
	color: #b40000;
}

.news-feature-body h3 {
	position: relative;
	display: inline-block;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
}

.news-feature-meta {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 18px;
	font-size: 16px;
	white-space: nowrap;
}

.news-feature-meta span {
	padding: 6px 12px;
	border: 1px solid rgba(180, 0, 0, 0.2);
	border-radius: 999px;
	font-size: 14px;
	color: #8d0000;
}

.news-list-panel {
	grid-area: list;
	position: relative;
	order: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 44px;
	margin: 0;
	padding: 42px 44px 42px 36px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 30px 54px rgba(95, 63, 56, 0.14);
	backdrop-filter: blur(6px);
}

.news-list {
	position: relative;
	display: grid;
	gap: 8px;
}

.news-item {
	position: relative;
	display: grid;
	grid-template-columns: 108px minmax(0, 1fr);
	gap: 26px;
	padding: 12px 0;
	text-decoration: none;
	border-radius: 18px;
	transition: transform 0.35s ease, background-color 0.35s ease;
}

.news-item:hover {
	transform: translateX(10px);
	background: linear-gradient(90deg, rgba(213, 238, 255, 0.12), rgba(255, 255, 255, 0));
}

.news-item :hover .news-item-title::after {
	transform: scaleX(1);
}

.news-item::before {
	content: "";
	position: absolute;
	left: 29px;
	top: 36px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d11414;
	box-shadow: 0 0 0 8px rgba(209, 20, 20, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-item:hover::before {
	transform: scale(1.18);
	box-shadow: 0 0 0 12px rgba(209, 20, 20, 0.12);
}

.news-date-block {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 4px;
	color: #a30000;
	font-family: "Georgia", serif;
}

.news-date-block strong {
	font-size: 50px;
	line-height: 0.92;
	font-weight: 700;
}

.news-date-block span {
	margin-top: 10px;
	font-size: 14px;
	letter-spacing: 1px;
	font-family: "Open Sans", "Microsoft YaHei", sans-serif;
}

.news-item-body {
	padding-right: 12px;
	min-width: 0;
}

.news-item-body h3 {
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	padding-bottom: 6px;
	color: #38312f;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 500;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-item-body h3::after,
.news-feature-body h3::after,
.news-side-card h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #d11414;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.32s ease;
}

.news-item-body:hover h3::after,
.news-item-body h3:hover::after,
.news-feature:hover .news-feature-body h3::after,
.news-feature-body h3:hover::after,
.news-side-card:hover h3::after {
	transform: scaleX(1);
}

.news-item-body p {
	color: #8f8882;
	font-size: 15px;
	line-height: 1.8;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-side-card {
	align-self: center;
	padding-top: 18px;
	transition: transform 0.4s ease;
}

.news-side-card:hover {
	transform: translateY(-8px);
}

.news-side-card h3 {
	position: relative;
	display: inline-block;
	color: #403838;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 16px;
}

.news-side-card time {
	display: block;
	margin-bottom: 12px;
	color: #9c9893;
	font-size: 14px;
}

.news-side-card p {
	color: #8f8882;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 24px;
}

.news-side-thumb {
	height: 208px;
	overflow: hidden;
	box-shadow: 0 18px 32px rgba(37, 37, 37, 0.14);
}

.news-actions {
	grid-area: actions;
	display: flex;
	justify-content: end;
	margin-top: 0px;
	padding-left: 0;
	gap: 0;
	position: relative;
	z-index: 2;
}

.news-action-btn {
	width: 90px;
	height: 68px;
	border: 0;
	background: #9f0000;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease;
}

.news-action-btn:hover {
	background: #c40000;
	transform: translateY(-6px);
}

.news-action-btn.is-light {
	background: #f5f2ed;
	color: #d11414;
}

.news-action-btn.is-light:hover {
	background: #fff;
}

@keyframes revealUp {
	from {
		opacity: 0;
		transform: translateY(34px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes newsFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

@keyframes pulseGlow {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.14);
		opacity: 1;
	}
}

@media (max-width: 1440px) {
	.news-heading {
		/* padding-left: 620px; */
		/* padding-right: 40px; */
	}

	.news-board {
		grid-template-columns: minmax(0, 1fr) 560px;
	}

	.news-feature-media {
		height: 610px;
	}

	.news-list-panel {
		grid-template-columns: minmax(0, 1fr) 310px;
		padding-right: 28px;
	}
}

@media (max-width: 1200px) {
	.news {
		padding: 80px 24px 90px;
	}

	.news-heading {
		padding: 0;
		align-items: center;
	}

	.news-title {
		font-size: 42px;
	}

	.news-board {
		grid-template-columns: 1fr;
		grid-template-areas:
			"list"
			"actions"
			"feature";
		gap: 28px;
	}

	.news-feature {
		margin: 0;
	}

	.news-list-panel {
		grid-template-columns: 1fr;
		margin: 0;
		padding: 28px;
		gap: 28px;
	}

	.news-side-card {
		padding-top: 0;
	}

	.news-actions {
		padding-left: 0;
		justify-content: flex-end;
		margin-top: 0;
	}

	.news::before {
		right: -180px;
		width: 340px;
	}
}

@media (max-width: 768px) {
	.news {
		padding: 64px 16px 72px;
	}

	.news-heading {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 24px;
	}

	.news-title-wrap {
		padding-right: 42px;
	}

	.news-kicker {
		font-size: 18px;
	}

	.news-title {
		font-size: 34px;
	}

	.news-title::after {
		left: 0;
		width: 120px;
	}

	.news-feature-media {
		height: 610px;
	}

	.news-feature-body {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px;
	}

	.news-feature-body h3 {
		font-size: 18px;
	}

	.news-feature-meta {
		flex-wrap: wrap;
		gap: 10px;
	}

	.news-list-panel {
		padding: 18px 16px;
	}


	.news-item {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 16px;
	}

	.news-item::before {
		left: 15px;
		top: 30px;
	}

	.news-date-block strong {
		font-size: 38px;
	}

	.news-item-body h3 {
		font-size: 17px;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	.news-item-body p,
	.news-side-card p {
		font-size: 14px;
	}

	.news-side-thumb {
		height: 180px;
	}

	.news-action-btn {
		width: 72px;
		height: 56px;
		font-size: 22px;
	}

	.news-decor-left {
		left: -14px;
		top: 128px;
	}

	.news-decor-right {
		right: 8px;
		bottom: 92px;
	}

	.news::before {
		display: none;
	}
}

.production {
	position: relative;
	padding: 96px 40px 110px;
	background:
		radial-gradient(circle at 12% 18%, rgba(208, 20, 20, 0.12), transparent 20%),
		linear-gradient(180deg, #f6efe7 0%, #f9f4ee 100%);
	overflow: hidden;
}

.production::before,
.production::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.production::before {
	right: -120px;
	top: 70px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(161, 0, 0, 0.08), rgba(161, 0, 0, 0));
	border-radius: 50%;
}

.production::after {
	left: 60px;
	bottom: 60px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(circle, rgba(209, 20, 20, 0.72) 28%, transparent 31%);
	background-size: 12px 12px;
	opacity: 0.22;
}

.production-shell {
	position: relative;
	max-width: 1680px;
	margin: 0 auto;
	z-index: 1;
}

.production-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 44px;
}

.production-title-wrap {
	position: relative;
	padding-right: 48px;
}

.production-title-wrap::before,
.production-title-wrap::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(209, 20, 20, 0.14);
	animation: pulseGlow 4.5s ease-in-out infinite;
}

.production-title-wrap::before {
	right: 8px;
	top: -14px;
	width: 56px;
	height: 56px;
}

.production-title-wrap::after {
	right: -10px;
	top: 18px;
	width: 28px;
	height: 28px;
	animation-delay: -1.5s;
}

.production-kicker {
	font-size: 22px;
	line-height: 1;
	color: #d0bfb0;
	margin-bottom: 8px;
}

.production-title {
	position: relative;
	font-size: 50px;
	line-height: 1.12;
	font-weight: 700;
	color: #2f2a26;
}

.production-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -16px;
	width: 180px;
	height: 2px;
	background: linear-gradient(90deg, #d11414, rgba(209, 20, 20, 0));
}

.production-more {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 8px;
	font-size: 18px;
	color: #433a38;
	text-decoration: none;
	transition: transform 0.35s ease, color 0.35s ease;
}

.production-more::before {
	content: "";
	width: 4px;
	height: 24px;
	background: #d11414;
}
.production-more:hover {
	color: #b50000;
	transform: translateX(6px);
}

.production-board {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	gap: 30px;
	align-items: start;
}

.production-student,
.production-teacher {
	position: relative;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(204, 187, 172, 0.52);
	box-shadow: 0 24px 46px rgba(95, 63, 56, 0.12);
	backdrop-filter: blur(10px);
}

.production-student {
	padding: 34px;
	min-height: 620px;
}

.production-teacher {
	padding: 34px 30px;
	background: linear-gradient(180deg, rgba(167, 0, 0, 0.96), rgba(116, 0, 0, 0.92));
	color: #fff6f0;
	overflow: hidden;
}

.production-teacher::before {
	content: "";
	position: absolute;
	right: -60px;
	top: -60px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.production-panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 26px;
}

.production-panel-head h3 {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
}

.production-label {
	margin-bottom: 10px;
	font-size: 14px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #af9180;
}

.production-teacher .production-label {
	color: rgba(255, 234, 222, 0.7);
}

.production-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 94px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(209, 20, 20, 0.08);
	color: #ab0000;
	font-size: 14px;
	white-space: nowrap;
}

.production-badge.is-dark {
	background: rgba(255, 255, 255, 0.12);
	color: #fff1ea;
}

.production-student-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.75fr);
	grid-template-rows: repeat(2, minmax(220px, 1fr));
	gap: 20px;
}

.work-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(207, 194, 180, 0.6);
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.work-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 22px 34px rgba(112, 67, 55, 0.16);
	border-color: rgba(209, 20, 20, 0.28);
}

.work-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%, transparent 70%, rgba(209, 20, 20, 0.08));
	opacity: 0;
	transition: opacity 0.35s ease;
}

.work-card:hover::after {
	opacity: 1;
}

.work-card-featured {
	grid-row: 1 / span 2;
	display: grid;
	grid-template-rows: 320px auto;
}

.work-card-compact {
	display: grid;
	grid-template-rows: 1fr auto;
	min-height: 0;
}

.work-card work-card-featured{
	display: flex;
	flex-direction: column;
}

.work-card-media {
	position: relative;
	min-height: 220px;
	background:
		linear-gradient(135deg, rgba(184, 0, 0, 0.92), rgba(255, 116, 84, 0.55)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
	display:flex;
	justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
}

.work-card-media::before,
.work-card-media::after {
	content: "";
	position: absolute;
}

.work-card-media::before {
	inset: 24px;
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.work-card-media::after {
	left: 28px;
	bottom: 28px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.72) 20%, transparent 23%);
	background-size: 12px 12px;
	opacity: 0.3;
}

.work-media-code {
	background:
		linear-gradient(135deg, rgba(18, 74, 130, 0.96), rgba(47, 128, 237, 0.65)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.work-media-ui {
	background:
		linear-gradient(135deg, rgba(140, 35, 35, 0.96), rgba(255, 174, 112, 0.62)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.work-card-body {	
	position: relative;
	padding: 22px 22px 24px;
	z-index: 1; 	
}

.work-card-type {
	margin-bottom: 10px;
	font-size: 13px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #b78667;
}

.work-card h4 {
	position: relative;
	display: inline-block;
	margin-bottom: 12px;
	padding-bottom: 6px;
	font-size: 24px;
	line-height: 1.35;
	font-weight: 700;
	color: #342d29;
}

.work-card h4::after,
.teacher-work-body h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #d11414;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.35s ease;
}

.teacher-work-body h4::after {
	background: #FFF;
}

.work-card:hover h4::after,
.teacher-work-card:hover .teacher-work-body h4::after {
	transform: scaleX(1);
}

.work-card-body p:last-child {
	color: #817a75;
	font-size: 15px;
	line-height: 1.9;
}

.teacher-work-list {
	display: grid;
	gap: 18px;
}

.teacher-work-card {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 18px;
	padding: 22px 20px;
	border: 1px solid rgba(255, 234, 222, 0.12);
	background: rgba(255, 255, 255, 0.06);
	transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.teacher-work-card:hover {
	transform: translateX(8px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 234, 222, 0.26);
}

.teacher-work-index {
	font-family: "Georgia", serif;
	font-size: 42px;
	line-height: 0.95;
	color: #ffd8c7;
}

.teacher-work-body h4 {
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	padding-bottom: 6px;
	font-size: 20px;
	line-height: 1.45;
	font-weight: 600;
	color: #fffaf7;
}

.teacher-work-body p {
	color: rgba(255, 239, 231, 0.78);
	font-size: 15px;
	line-height: 1.8;
}

@media (max-width: 1440px) {
	.production-board {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
	}

	.production-title {
		font-size: 44px;
	}

	.production-student-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
	}
}

@media (max-width: 1200px) {
	.production {
		padding: 82px 24px 92px;
	}

	.production-board {
		grid-template-columns: 1fr;
	}

	.production-student-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}

	.work-card-featured {
		grid-column: 1 / span 2;
		grid-row: auto;
	}
}

@media (max-width: 768px) {
	.production {
		padding: 64px 16px 72px;
	}

	.production-heading {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 28px;
	}

	.production-kicker {
		font-size: 18px;
	}

	.production-title {
		font-size: 34px;
	}

	.production-title::after {
		width: 126px;
	}

	.production-student,
	.production-teacher {
		padding: 22px 16px;
	}

	.production-panel-head {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 20px;
	}

	.production-panel-head h3 {
		font-size: 26px;
	}

	.production-student-grid {
		grid-template-columns: 1fr;
	}

	.work-card-featured {
		grid-column: auto;
		grid-template-rows: 240px auto;
	}

	.work-card-media,
	.work-card-featured .work-card-media {
		min-height: 200px;
	}

	.work-card h4,
	.teacher-work-body h4 {
		font-size: 18px;
	}

	.teacher-work-card {
		grid-template-columns: 56px minmax(0, 1fr);
		gap: 12px;
		padding: 18px 14px;
	}

	.teacher-work-index {
		font-size: 32px;
	}

	.production::before,
	.production::after {
		display: none;
	}
}

.footer {
	position: relative;
	padding: 84px 40px 30px;
	background:
		linear-gradient(135deg, rgba(90, 0, 0, 0.98), rgba(138, 8, 8, 0.94) 45%, rgba(52, 0, 0, 0.98)),
		radial-gradient(circle at 12% 20%, rgba(255, 227, 208, 0.1), transparent 24%);
	overflow: hidden;
}

.footer::before,
.footer::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.footer::before {
	right: -90px;
	top: -40px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
	animation: headerGlow 6s ease-in-out infinite;
}

.footer::after {
	left: 40px;
	bottom: 36px;
	width: 110px;
	height: 110px;
	background-image: radial-gradient(circle, rgba(255, 216, 199, 0.66) 24%, transparent 27%);
	background-size: 12px 12px;
	opacity: 0.18;
}

.footer-shell {
	position: relative;
	max-width: 1680px;
	margin: 0 auto;
	z-index: 1;
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
	gap: 44px;
	padding: 38px 36px;
	border: 1px solid rgba(255, 228, 214, 0.14);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
	box-shadow: 0 26px 42px rgba(36, 0, 0, 0.22);
}

.footer-brand-top {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

.footer-brand-top img {
	width: 74px;
	height: 74px;
	object-fit: contain;
	filter: drop-shadow(0 10px 24px rgba(28, 0, 0, 0.2));
}

.footer-kicker {
	margin-bottom: 8px;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 220, 198, 0.72);
}

.footer-brand h2 {
	font-size: 34px;
	line-height: 1.2;
	font-weight: 700;
	color: #fff7f2;
}

.footer-intro {
	/* max-width: 520px; */
	margin-bottom: 24px;
	color: rgba(255, 236, 226, 0.8);
	font-size: 15px;
	line-height: 1.9;
}

.footer-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-tags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 228, 214, 0.12);
	color: #ffe5d5;
	font-size: 14px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.footer-column h3 {
	position: relative;
	display: inline-block;
	margin-bottom: 18px;
	padding-bottom: 8px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 700;
	color: #fff7f2;
}

.footer-column h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #ffe0c8, rgba(255, 224, 200, 0));
}

.footer-column a,
.footer-column p {
	display: block;
	margin-bottom: 12px;
	color: rgba(255, 238, 229, 0.8);
	font-size: 15px;
	line-height: 1.8;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover {
	color: #fff7f2;
	transform: translateX(4px);
}

.footer-contact p {
	margin-bottom: 10px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	/* gap: 24px;*/
	padding: 22px 6px 0; 
	margin-top: 20px;
	border-top: 1px solid rgba(255, 228, 214, 0.16);
}

.footer-bottom p {
	color: rgba(255, 228, 214, 0.72);
	font-size: 14px;
	line-height: 1.7;
}

.footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}

.footer-bottom-links a {
	position: relative;
	color: rgba(255, 238, 229, 0.76);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-bottom-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #ffe0c8;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease;
}

.footer-bottom-links a:hover {
	color: #fff7f2;
}

.footer-bottom-links a:hover::after {
	transform: scaleX(1);
}

@media (max-width: 1200px) {
	.footer {
		padding: 72px 24px 28px;
	}

	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom-links {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 60px 16px 24px;
	}

	.footer-main {
		padding: 24px 16px;
		gap: 30px;
	}

	.footer-brand-top {
		align-items: flex-start;
	}

	.footer-brand-top img {
		width: 58px;
		height: 58px;
	}

	.footer-brand h2 {
		font-size: 26px;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.footer-column h3 {
		font-size: 20px;
	}

	.footer-column a,
	.footer-column p,
	.footer-bottom p,
	.footer-bottom-links a {
		font-size: 14px;
	}

	.footer::before,
	.footer::after {
		display: none;
	}
}

.content {
	background: linear-gradient(180deg, #fbf6f0 0%, #fffdfa 100%);
	min-height: calc(100vh - var(--header-offset));
}

.faculty-page {
	position: relative;
	padding-bottom: 90px;
	overflow: hidden;
}

.faculty-page::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 340px ;
	background:
		linear-gradient(180deg, rgba(17, 20, 18, 0.18), rgba(17, 20, 18, 0.38)),
		/* 动态赋值图片路径，默认值可以写死 */
		var(--bg-image, url("../images/bg1.png")); /*center /cover no-repeat;*/
		
  	background-repeat: no-repeat;
  	background-size: cover;         
  	background-position: center var(--bg-image-offsetvalue); /*center 50%;*/
	  
	z-index: 0;	
}

.faculty-page::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, #bb0000, #ef4b4b, #bb0000);
	z-index: 1;
}

.faculty-page-banner,
.faculty-page-body {
	position: relative;
	max-width: 1680px;
	margin: 0 auto;
	z-index: 1;
}

.faculty-page-banner {
	padding: 64px 40px 0;
	min-height: 340px;
}

.faculty-page-banner-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	height: 100%;
	padding-top: 82px;
}

.faculty-page-banner-copy {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	min-width: 310px;
	min-height: 178px;
	padding: 28px 34px;
	background:
		linear-gradient(180deg, rgba(193, 0, 0, 0.94), rgba(143, 0, 0, 0.96)),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 38%);
	box-shadow: 0 26px 42px rgba(66, 10, 10, 0.22);
	overflow: hidden;
}

.faculty-page-banner-copy::after {
	content: "";
	position: absolute;
	right: -26px;
	top: 24px;
	width: 118px;
	height: 118px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.24) 16%, transparent 19%);
	background-size: 12px 12px;
	opacity: 0.28;
	transform: rotate(-10deg);
}

.faculty-page-kicker {
	margin-bottom: 10px;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 231, 218, 0.74);
}

.faculty-page-banner-copy h2 {
	font-size: 54px;
	line-height: 1.1;
	font-weight: 700;
	color: #fffaf6;
}

.faculty-page-path {
	padding-bottom: 36px;
	font-size: 20px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);
	text-align: right;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.faculty-page-body {
	display: grid;
	grid-template-columns: 310px minmax(0, 1fr);
	gap: 40px;
	padding: 0 40px;
	margin-top: -34px;
	align-items: start;
}

.faculty-page-nav {
	position: sticky;
	top: calc(var(--header-offset) + 24px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 240, 234, 0.96));
	box-shadow: 0 24px 40px rgba(116, 76, 64, 0.12);
	overflow: hidden;
}

.faculty-page-nav::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 300px;
	background:
		linear-gradient(135deg, rgba(255, 248, 242, 0.28), rgba(209, 20, 20, 0.1)),
		url("../images/bg.png") center/cover no-repeat;
	clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
	opacity: 0.36;
	pointer-events: none;
}

.faculty-page-nav-head {
	position: relative;
	padding: 34px 28px;
	background: linear-gradient(180deg, #c10000, #960000);
	color: #fff9f5;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	z-index: 1;
}

.faculty-page-nav-list {
	position: relative;
	z-index: 1;
	padding: 0 18px 20px;
}

.faculty-page-nav-btn {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 12px 20px 16px;
	border: 0;
	border-bottom: 1px dashed rgba(185, 163, 151, 0.46);
	background: transparent;
	color: #453b36;
	font-size: 19px;
	text-align: left;
	cursor: pointer;
	transition: color 0.28s ease, transform 0.28s ease, padding-left 0.28s ease;
}

.faculty-page-nav-btn::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 4px;
	height: 0;
	background: #c10000;
	transform: translateY(-50%);
	transition: height 0.28s ease;
}

.faculty-page-nav-btn::after {
	content: "";
	background: url('../images/jt.png');
	background-repeat: no-repeat;
	width: 25px;
	height: 18px;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.faculty-page-nav-btn:hover,
.faculty-page-nav-btn.is-active {
	color: #a80000;
	padding-left: 22px;
	transform: translateX(4px);
}

.faculty-page-nav-btn:hover::before,
.faculty-page-nav-btn.is-active::before {
	height: 34px;
}

.faculty-page-nav-btn:hover::after,
.faculty-page-nav-btn.is-active::after {
	opacity: 1;
	transform: translateX(0);
}

.faculty-page-panel {
	padding: 48px 40px 42px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 26px 42px rgba(116, 76, 64, 0.1);
	min-height: 640px;
}

.faculty-page-panel.is-switching .faculty-member-card {
	animation: facultyCardOut 0.22s ease;
}

.faculty-page-panel-head {
	margin-bottom: 34px;
	padding-bottom: 18px;
	border-bottom: 2px solid rgba(234, 213, 203, 0.78);
}

.faculty-page-panel-head h3 {
	margin-bottom: 10px;
	font-size: 46px;
	line-height: 1.1;
	font-weight: 700;
	color: #2f2a26;
}

.faculty-page-panel-head p {
	color: #7d716b;
	font-size: 16px;
	line-height: 1.8;
}

.faculty-page-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px 38px;
}

.faculty-member-card {
	position: relative;
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 30px;
	padding: 10px 0 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(215, 199, 189, 0.72);
	transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
	opacity: 0;
	transform: translateY(26px);
	animation: facultyCardIn 0.56s ease forwards;
}

.faculty-member-card:hover {
	transform: translateY(-6px);
	background: linear-gradient(90deg, rgba(209, 20, 20, 0.04), rgba(255, 255, 255, 0));
	box-shadow: 0 18px 26px rgba(107, 60, 48, 0.08);
}

.faculty-member-card:nth-child(2) {
	animation-delay: 0.08s;
}

.faculty-member-card:nth-child(3) {
	animation-delay: 0.16s;
}

.faculty-member-card:nth-child(4) {
	animation-delay: 0.24s;
}

.faculty-member-media {
	position: relative;
	height: 248px;
	background: linear-gradient(135deg, #d7d0ca, #f2ebe5);
	overflow: hidden;
	box-shadow: 0 18px 28px rgba(61, 28, 28, 0.14);
}

.faculty-member-media::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	/* border-left: 22px solid #c10000; */
	border-top: 22px solid transparent;
	animation: facultyCornerIn 0.45s ease forwards;
}

.faculty-member-media::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	/* border-right: 22px solid #c10000; */
	border-top: 22px solid transparent;
	animation: facultyCornerIn 0.45s ease forwards;
	animation-delay: 0.08s;
}

.faculty-member-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.faculty-member-card:hover .faculty-member-media img {
	transform: scale(1.05);
}

.faculty-member-info {
	padding-top: 8px;
}

.faculty-member-info h4 {
	position: relative;
	display: inline-block;
	margin-bottom: 18px;
	padding-bottom: 8px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #322b28;
}

.faculty-member-info h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #d11414;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.32s ease;
}

.faculty-member-card:hover .faculty-member-info h4::after {
	transform: scaleX(1);
}

.faculty-member-meta,
.faculty-member-fields {
	margin-bottom: 10px;
	color: #6f6560;
	font-size: 15px;
	line-height: 1.9;
}

.faculty-member-fields span,
.faculty-member-meta span {
	color: #a30000;
}

.faculty-member-more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	margin-left: auto;
	margin-right: 30px;
	margin-top: 14px;
	border-radius: 50%;
	background: rgba(209, 20, 20, 0.08);
	font-size: 26px;
	line-height: 38px;
	color: #c10000;
	transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease;
	cursor: pointer;
}

.faculty-member-card:hover .faculty-member-more {
	transform: scale(1.08);
	background: rgba(209, 20, 20, 0.14);
	color: #9f0000;
}

@keyframes facultyCardIn {
	from {
		opacity: 0;
		transform: translateY(26px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes facultyCardOut {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0.3;
		transform: translateY(10px);
	}
}

@keyframes facultyCornerIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 1280px) {
	.faculty-page-body {
		grid-template-columns: 270px minmax(0, 1fr);
		gap: 26px;
	}

	.faculty-page-panel {
		padding: 38px 28px 34px;
	}

	.faculty-page-grid {
		gap: 28px;
	}

	.faculty-member-card {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 24px;
	}

	.faculty-member-media {
		height: 228px;
	}
}

@media (max-width: 991px) {
	.content {
		min-height: auto;
	}

	.faculty-page {
		padding-bottom: 72px;
	}

	.faculty-page::before {
		height: 280px;
	}

	.faculty-page-banner {
		padding: 34px 16px 0;
		min-height: 280px;
	}

	.faculty-page-banner-inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: flex-end;
		padding-top: 74px;
	}

	.faculty-page-banner-copy {
		min-width: 0;
		width: 100%;
		min-height: 142px;
		padding: 22px 20px;
	}

	.faculty-page-banner-copy h2 {
		font-size: 40px;
	}

	.faculty-page-path {
		padding-bottom: 0;
		font-size: 14px;
		text-align: left;
	}

	.faculty-page-body {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 0 16px;
		margin-top: -18px;
	}

	.faculty-page-nav {
		position: relative;
		top: 0;
	}

	.faculty-page-nav-head {
		font-size: 28px;
		padding: 22px 18px;
	}

	.faculty-page-nav-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 12px;
		padding: 8px 16px 18px;
	}

	.faculty-page-nav-btn {
		padding: 16px 6px 16px 10px;
		font-size: 17px;
	}

	.faculty-page-panel {
		padding: 28px 18px;
		min-height: auto;
	}

	.faculty-page-panel-head h3 {
		font-size: 34px;
	}

	.faculty-page-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.faculty-page::before {
		height: 250px;
	}

	.faculty-page-banner {
		min-height: 250px;
	}

	.faculty-page-banner-copy h2 {
		font-size: 34px;
	}

	.faculty-page-kicker {
		font-size: 14px;
	}

	.faculty-page-nav-list {
		grid-template-columns: 1fr;
	}

	.faculty-page-panel-head h3 {
		font-size: 30px;
	}

	.faculty-member-card {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.faculty-member-media {
		height: 260px;
	}

	.faculty-member-info h4 {
		font-size: 22px;
	}

	.faculty-member-meta,
	.faculty-member-fields {
		font-size: 14px;
	}
}
