.newsSection {
	background: linear-gradient(180deg, #fbf8f3 0%, #f5ede3 100%)
}
.newsGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px
}
.newsCard {
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 16px 44px rgba(60, 40, 28, .09);
	transition: transform .35s, box-shadow .35s
}
.newsCard:hover {
	transform: translateY(-7px);
	box-shadow: 0 24px 58px rgba(60, 40, 28, .14)
}
.newsCard a {
	display: block;
	height: 100%
}
.newsCard figure {
	height: 320px;
	margin: 0;
	position: relative;
	overflow: hidden
}
.newsCard figure:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(40, 23, 16, .55))
}
.newsCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s
}
.newsCard:hover figure img {
	transform: scale(1.04)
}
.newsCard figure span {
	position: absolute;
	z-index: 2;
	left: 24px;
	bottom: 20px;
	padding: 7px 16px;
	border-radius: 999px;
	background: rgba(255, 253, 249, .92);
	color: var(--brown);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em
}
.newsBody {
	padding: 30px 32px 34px
}
.newsBody small {
	color: var(--gold);
	letter-spacing: .18em;
	font-weight: 600
}
.newsBody h2 {
	margin: 8px 0 12px;
	font: 600 27px/1.5 "Noto Serif TC";
	letter-spacing: .04em
}
.newsBody p {
	margin: 0 0 22px;
	color: var(--muted)
}
.newsBody b {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--brown2);
	font-size: 14px
}
.newsBody b i {
	font-style: normal;
	transition: transform .25s
}
.newsCard:hover .newsBody b i {
	transform: translateX(5px)
}
.articleBanner h1 {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	font-size: 42px
}
.articleSection {
	background: linear-gradient(180deg, #fbf8f3, #f5ede3)
}
.articleContainer {
	max-width: 980px
}
.articleMeta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	color: var(--muted);
	font-size: 14px
}
.articleMeta a {
	color: var(--gold)
}
.articleMeta i {
	font-style: normal;
	opacity: .45
}
.articleCover {
	margin: 0 0 42px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 20px 55px rgba(53, 36, 28, .12)
}
.articleCover img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover
}
.articleContent {
	padding: 0 56px;
	font-size: 17px;
	line-height: 2
}
.articleContent>p:first-child {
	font-size: 20px;
	font-family: "Noto Serif TC";
	color: var(--brown2)
}
.articleContent h2 {
	margin: 46px 0 16px;
	font: 600 30px/1.55 "Noto Serif TC";
	letter-spacing: .06em
}
.articleHighlight {
	margin: 38px 0;
	padding: 30px 34px;
	border-radius: 18px;
	background: #fff;
	border-left: 4px solid var(--gold);
	box-shadow: 0 10px 34px rgba(60, 40, 28, .06)
}
.articleHighlight h3 {
	margin: 0 0 12px;
	font: 600 23px "Noto Serif TC"
}
.articleHighlight ul {
	margin: 0;
	padding-left: 1.25em
}
.articleHighlight li {
	margin: 6px 0
}
.articleNotice {
	margin-top: 46px;
	padding: 24px 28px;
	border-radius: 16px;
	background: #efe3d4
}
.articleNotice b {
	font-family: "Noto Serif TC"
}
.articleNotice p {
	margin: 6px 0 0;
	font-size: 14px;
	color: var(--muted)
}
.articleActions {
	text-align: center;
	margin-top: 42px
}
.articleNav {
	margin-top: 42px;
	padding-top: 28px;
	border-top: 1px solid var(--line)
}
.articleNav a {
	display: flex;
	flex-direction: column;
	gap: 2px
}
.articleNav small {
	color: var(--gold)
}
.articleNav b {
	font: 500 18px "Noto Serif TC"
}
@media(max-width:800px) {
	.newsGrid {
		grid-template-columns: 1fr
	}
	.newsCard figure {
		height: 280px
	}
	.articleContent {
		padding: 0 14px
	}
	.articleBanner h1 {
		font-size: 34px
	}
	.articleContent h2 {
		font-size: 26px
	}
}
@media(max-width:520px) {
	.newsCard figure {
		height: 220px
	}
	.newsBody {
		padding: 24px
	}
	.newsBody h2 {
		font-size: 23px
	}
	.articleContent {
		padding: 0
	}
	.articleCover {
		border-radius: 14px
	}
	.articleContent>p:first-child {
		font-size: 18px
	}
}