: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: 1440px;
}

* {
	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% - 72px));
	margin: 0 auto;
}

.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;
	margin-top: calc(var(--site-header-height, 108px) * -1);
}

.page-hero__media {
	position: relative;
	min-height: calc(360px + var(--site-header-height, 108px));
	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("../images/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;
	padding: 24px;
	color: #51c364;
	letter-spacing: 0;
}

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

.page-hero__title {
	max-width: 90%;
	margin: 0;
	font-size: clamp(1.9rem, 3.6vw, 2.9rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.94);
	text-shadow: 0 6px 28px rgba(8, 18, 12, 0.28);
}

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

.page-hero--news h1.page-hero__title {
	font-size: clamp(1.9rem, 3.6vw, 2.9rem);
	line-height: 1.15;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.94);
}

.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;
	font-weight: 600;
	background: #f3faf4;
	box-shadow: inset 0 -2px 0 #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-layout--single {
	grid-template-columns: minmax(0, 1fr);
}

.about-nav {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	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;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

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

.about-content__body {
	padding: 40px 48px 48px;
	line-height: 1.9;
	font-size: 15px;
	color: var(--color-text);
	overflow: hidden;
	word-wrap: break-word;
	word-break: break-word;
	text-align: center;
}

.about-content__body::after {
	content: "";
	display: table;
	clear: both;
}

.about-content__body > * {
	float: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 100%;
}

.about-content__body h1,
.about-content__body h2,
.about-content__body h3,
.about-content__body h4 {
	width: auto !important;
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.4;
}

.about-content__body p {
	float: none !important;
	width: auto !important;
	max-width: 920px;
	margin: 0 auto 16px;
	text-align: left;
	text-indent: 2em;
}

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

.about-content__body img {
	float: none !important;
	display: block;
	max-width: 100% !important;
	width: auto !important;
	height: auto !important;
	margin: 16px auto !important;
}

.about-content__body table {
	float: none !important;
	width: auto !important;
	max-width: 100%;
	margin: 16px auto !important;
	border-collapse: collapse;
}

.about-content__body td,
.about-content__body th {
	float: none !important;
	word-break: break-word;
	vertical-align: top;
}

.about-content__body div {
	float: none !important;
	position: static !important;
	max-width: 100%;
}

.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;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(16, 20, 25, 0.1);
}

.news-item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	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__subtitle {
	grid-column: 1 / 2;
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #8a8f99;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.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: 24px;
	}

	.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: calc(220px + var(--site-header-height, 108px));
	}

	.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;
	}
}

.contact-page {
	background: #f5f6f8;
	padding: 48px 0 72px;
}

.contact-page .container {
	max-width: 980px;
}

.contact-page__head {
	margin: 0 auto 36px;
	text-align: center;
	animation: contact-fade-up 0.7s ease both;
}

.contact-page__head h2 {
	margin: 0 0 10px;
	font-size: clamp(1.8rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #c62828;
	line-height: 1.3;
}

.contact-page__head p {
	margin: 0;
	font-size: 15px;
	color: #8a8f99;
	line-height: 1.6;
}

.contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 22px;
	align-items: stretch;
}

.contact-card {
	position: relative;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(28, 34, 42, 0.08);
	overflow: hidden;
	min-height: 280px;
	transform: translateY(0);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	animation: contact-fade-up 0.75s ease both;
}

.contact-card--info {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px 28px;
	text-align: center;
	animation-delay: 0.08s;
}

.contact-card--map {
	padding: 0;
	animation-delay: 0.18s;
}

.contact-card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, #51c364, #f08a2a);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.4s ease;
	z-index: 2;
}

.contact-card:hover,
.contact-card:focus-within {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(28, 34, 42, 0.14);
}

.contact-card:hover::before,
.contact-card:focus-within::before {
	transform: scaleX(1);
}

.contact-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.contact-card__list li {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.contact-card__list li:last-child {
	margin-bottom: 0;
}

.contact-card--map a {
	display: block;
	height: 100%;
	min-height: 280px;
	line-height: 0;
	overflow: hidden;
}

.contact-card--map img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.55s ease;
}

.contact-card--map:hover img,
.contact-card--map:focus-within img {
	transform: scale(1.08);
}

.contact-page__actions {
	margin-top: 36px;
	text-align: center;
	animation: contact-fade-up 0.75s ease 0.28s both;
}

.contact-page__note {
	margin: 0;
	font-size: 13px;
	color: #9aa0a8;
}

@keyframes contact-fade-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-page__head,
	.contact-card,
	.contact-page__actions {
		animation: none;
	}

	.contact-card,
	.contact-card::before,
	.contact-card--map img {
		transition: none;
	}

	.contact-card:hover,
	.contact-card:focus-within {
		transform: none;
	}

	.contact-card--map:hover img,
	.contact-card--map:focus-within img {
		transform: none;
	}
}

@media (max-width: 820px) {
	.contact-panel {
		grid-template-columns: 1fr;
	}

	.contact-card--map a,
	.contact-card--map img {
		min-height: 220px;
	}
}
