:root {
	--color-primary: #51c364;
	--color-primary-dark: #3aa24d;
	--color-secondary: #22252b;
	--color-text: #2b2f33;
	--color-muted: #666d76;
	--color-border: #d9eadc;
	--color-bg: #f3faf4;
	--color-surface: #ffffff;
	--shadow-soft: 0 20px 50px rgba(34, 37, 43, 0.08);
	--radius: 6px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	color: var(--color-text);
	background: var(--color-surface);
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
p {
	margin: 0;
}

.container {
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	box-shadow: 0 6px 18px rgba(16, 20, 25, 0.04);
}

.nav-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	min-height: 88px;
}

.brand img {
	height: 46px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav a {
	font-size: 15px;
	font-weight: 500;
	color: #343842;
}

.site-nav a.is-active {
	color: var(--color-primary);
}

.page-hero {
	padding: 72px 0 32px;
	background: linear-gradient(180deg, #f6f2ec 0%, #ffffff 100%);
	border-bottom: 1px solid #ece7e1;
}

.page-hero--news {
	padding: 0;
	background: #fff;
	border-bottom: 1px solid #ece7e1;
}

.page-hero__media {
	position: relative;
	min-height: 360px;
	background:
		linear-gradient(90deg, rgba(8, 18, 12, 0.22) 0%, rgba(8, 18, 12, 0.08) 35%, rgba(8, 18, 12, 0.16) 68%, rgba(8, 18, 12, 0.24) 100%),
		url("../img/111.png") center/cover no-repeat;
	overflow: hidden;
}

.page-hero__media::before,
.page-hero__media::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: min(34vw, 520px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
	opacity: 0.85;
	transform-origin: center;
}

.page-hero__media::before {
	left: 11%;
	transform: skewX(-28deg);
	opacity: 0.28;
}

.page-hero__media::after {
	right: -4%;
	background: linear-gradient(180deg, rgba(81, 195, 100, 0.32), rgba(49, 143, 63, 0.42));
	transform: skewX(-27deg);
	opacity: 0.48;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	text-align: center;
	z-index: 1;
	color: #51c364;
	letter-spacing: 0;
}

.page-hero__eyebrow {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 4px;
	color: #51c364;
}

.page-hero--news h1 {
	max-width: none;
	margin: 0;
	font-size: clamp(2.8rem, 5vw, 4rem);
	line-height: 1;
	color: #51c364;
}

.news-channel-bar {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.news-channel-bar__inner {
	display: flex;
	align-items: stretch;
	min-height: 68px;
	border-left: 1px solid #efefef;
	border-right: 1px solid #efefef;
}

.news-channel-bar__inner a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	border-right: 1px solid #efefef;
	font-size: 15px;
	color: #5b616a;
	background: #fff;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.news-channel-bar__inner a:hover,
.news-channel-bar__inner a:focus-visible {
	color: #51c364;
}

.news-channel-bar__inner a.is-active {
	color: #51c364;
}

.news-channel-bar__home {
	min-width: 72px;
	font-size: 14px;
	color: #40454c;
}

.page-hero__breadcrumbs {
	font-size: 13px;
	color: #7a8189;
	margin-bottom: 18px;
}

.page-hero__breadcrumbs span {
	margin: 0 8px;
}

.page-hero h1 {
	font-size: clamp(2.1rem, 4vw, 3.1rem);
	line-height: 1.15;
	margin-bottom: 14px;
}

.page-hero p {
	max-width: 46em;
	color: var(--color-muted);
}

.about-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 32px;
	padding: 52px 0 84px;
}

.about-nav,
.about-content {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.about-nav {
	padding: 22px;
	height: fit-content;
	position: sticky;
	top: 112px;
}

.about-nav h2 {
	font-size: 1rem;
	margin-bottom: 16px;
}

.about-nav ul {
	display: grid;
	gap: 10px;
}

.about-nav a {
	display: block;
	padding: 10px 12px;
	border-radius: 4px;
	font-size: 14px;
	color: #47505a;
	background: #fbfaf8;
}

.about-nav a.is-active {
	background: var(--color-primary);
	color: #fff;
}

.about-content {
	overflow: hidden;
}

.about-content__media img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.about-content__body {
	padding: 32px;
}

.about-content__body h2 {
	font-size: 1.55rem;
	margin-bottom: 14px;
}

.about-content__body p + p {
	margin-top: 14px;
}

.about-note {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid #ece7e1;
	font-size: 14px;
	color: #7a8189;
}

.entry-grid,
.gallery-grid {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.news-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 32px;
	padding: 40px 0 84px;
}

.news-layout--single {
	grid-template-columns: 1fr;
}

.news-sidebar,
.news-content,
.news-article {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.news-sidebar {
	padding: 22px;
	height: fit-content;
	position: sticky;
	top: 112px;
}

.news-sidebar h2 {
	font-size: 1rem;
	margin-bottom: 16px;
}

.news-sidebar ul {
	display: grid;
	gap: 10px;
}

.news-sidebar a {
	display: block;
	padding: 10px 12px;
	border-radius: 4px;
	font-size: 14px;
	color: #47505a;
	background: #fbfaf8;
}

.news-sidebar a.is-active {
	background: var(--color-primary);
	color: #fff;
}

.news-content {
	padding: 12px 0 0;
	border: 0;
	box-shadow: none;
}

.news-list {
	display: grid;
	gap: 0;
}

.news-item {
	display: grid;
	grid-template-columns: 140px 272px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: 34px 0 44px;
	border-bottom: 1px solid #ece7e1;
}

.news-item:last-child {
	padding-bottom: 20px;
	border-bottom: 0;
}

.news-item__date {
	display: grid;
	justify-items: center;
	align-content: center;
	gap: 6px;
	min-height: 180px;
	border-left: 3px solid #d2d2d2;
	padding-left: 18px;
	margin-left: 8px;
}

.news-item__date strong {
	font-size: 4rem;
	line-height: 0.95;
	font-weight: 700;
	color: #51c364;
}

.news-item__date span {
	font-size: 1rem;
	color: #51c364;
	line-height: 1;
}

.news-item__thumb {
	display: block;
}

.news-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 0;
	border: 0;
}

.news-item__meta {
	grid-column: 1 / 2;
	font-size: 14px;
	color: #8a8f99;
	margin-bottom: 12px;
}

.news-item__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	column-gap: 24px;
}

.news-item h3 {
	grid-column: 1 / 2;
	font-size: 1.05rem;
	line-height: 1.45;
	margin-bottom: 18px;
	color: #51c364;
}

.news-item p {
	grid-column: 1 / 2;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.9;
	margin-bottom: 0;
}

.news-item__body > .news-item__meta {
	margin-bottom: 12px;
}

.news-item__link {
	grid-column: 2 / 3;
	grid-row: 2 / 4;
	display: inline-flex;
	align-self: center;
	justify-self: end;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	height: 34px;
	padding: 0 18px;
	border: 1px solid #dfdfdf;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: #a8adb4;
	background: #fff;
}

.news-item__link:hover,
.news-item__link:focus-visible {
	border-color: #51c364;
	color: #51c364;
}

.news-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.news-pagination a,
.news-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
	font-size: 14px;
	color: #4a525b;
}

.news-pagination a:hover,
.news-pagination a:focus-visible {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.news-pagination .is-current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.news-pagination .is-disabled {
	color: #a4aab2;
	background: #f7f5f1;
}

.news-article {
	overflow: hidden;
}

.news-article__hero img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.news-article__body {
	padding: 32px;
}

.news-article__meta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: #8a8f99;
	margin-bottom: 16px;
}

.news-article__body h1 {
	font-size: clamp(2rem, 3.3vw, 2.8rem);
	line-height: 1.2;
	margin-bottom: 22px;
}

.news-article__body p + p {
	margin-top: 16px;
}

.news-article__source {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid #ece7e1;
	font-size: 14px;
	color: #7a8189;
}

.news-article__source a {
	color: var(--color-primary);
	font-weight: 600;
}

.entry-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.entry-card {
	padding: 22px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fbfaf8;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.entry-card:hover,
.entry-card:focus-visible {
	border-color: var(--color-primary);
	transform: translateY(-1px);
}

.entry-card h3 {
	font-size: 1rem;
	margin-bottom: 10px;
}

.entry-card p {
	font-size: 14px;
	color: var(--color-muted);
}

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

.gallery-grid--two {
	grid-template-columns: 1fr;
}

.gallery-grid img {
	width: 100%;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.site-footer {
	padding: 26px 0;
	background: #181b20;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

@media (max-width: 900px) {
	.container {
		width: min(var(--container), calc(100% - 32px));
	}

	.site-nav {
		gap: 18px;
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.about-layout {
		grid-template-columns: 1fr;
		padding: 36px 0 56px;
	}

	.news-layout {
		grid-template-columns: 1fr;
		padding: 36px 0 56px;
	}

	.news-layout--single {
		grid-template-columns: 1fr;
	}

	.about-nav {
		position: static;
	}

	.news-sidebar {
		position: static;
	}

	.news-content,
	.news-article__body {
		padding: 20px 0 0;
	}

	.news-item {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 24px 0 34px;
	}

	.news-item__date {
		justify-items: start;
		min-height: auto;
		padding-left: 14px;
		margin-left: 0;
	}

	.news-item__date strong {
		font-size: 2.8rem;
	}

	.news-item__body {
		grid-template-columns: 1fr;
		row-gap: 14px;
	}

	.news-item__link {
		grid-column: auto;
		grid-row: auto;
		justify-self: start;
	}

	.news-item img {
		height: 200px;
	}

	.page-hero__media {
		min-height: 220px;
	}

	.page-hero__media::before {
		left: -4%;
		width: 48vw;
	}

	.page-hero__media::after {
		width: 54vw;
	}

	.page-hero--news h1 {
		font-size: 2.4rem;
	}

	.news-channel-bar__inner {
		overflow-x: auto;
		min-height: 56px;
	}

	.news-channel-bar__inner a {
		flex: 0 0 auto;
		padding: 0 18px;
	}

	.about-content__body {
		padding: 22px 18px;
	}

	.entry-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

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