/* ── News Center list page ── */
.site-page-news {
	background: #fff;
}

.news-page {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #fff;
	padding: 72px 0 100px;
	box-sizing: border-box;
}

.news-page__inner {
	max-width: 1290px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
}

.page-section-head {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 64px;
	text-align: center;
}

.page-section-head__title-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.page-section-head__bg {
	display: block;
	font-family: var(--font-bold);
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	opacity: .06;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	text-transform: uppercase;
}

.page-section-head__title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	margin: 0;
	font-family: var(--font-bold);
	font-size: 50px;
	font-weight: 700;
	line-height: 1.1;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .02em;
	white-space: nowrap;
}

.page-section-head__line {
	display: block;
	width: 44px;
	height: 5px;
	margin-top: 0;
	background: #111d5c;
	flex-shrink: 0;
}

/* ── Article list ── */
.news-list {
	display: flex;
	flex-direction: column;
	gap: 37px;
	margin: 0 0 72px;
}

.news-list__item {
	margin: 0;
}

.news-list__link {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 20px;
	text-decoration: none;
	color: inherit;
}

.news-list__media {
	flex: 0 0 530px;
	width: 530px;
	max-width: 530px;
	overflow: hidden;
	background: #e8eef5;
}

.news-list__img,
.news-list__img-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	aspect-ratio: 530 / 340;
	transition: transform .4s ease;
}

.news-list__img-placeholder {
	background: linear-gradient(135deg, #d8e4f2 0%, #eef3f9 100%);
}

.news-list__link:hover .news-list__img {
	transform: scale(1.04);
}

.news-list__body {
	flex: 0 0 740px;
	width: 740px;
	max-width: 740px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 8px 0 4px;
	box-sizing: border-box;
}

.news-list__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0 0 18px;
	padding: 14px 20px;
	box-sizing: border-box;
	background: transparent;
	transition: background .25s ease, color .25s ease;
}

.news-list__title-text {
	flex: 1 1 auto;
	min-width: 0;
	font-family: var(--font-bold);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	color: #000;
	transition: color .25s ease;
}

.news-list__title-arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .25s ease, transform .25s ease;
}

.news-list__link:hover .news-list__title {
	background: #111d5c;
}

.news-list__link:hover .news-list__title-text {
	color: #fff;
}

.news-list__link:hover .news-list__title-arrow {
	opacity: 1;
	transform: translateX(0);
}

.news-list__date {
	display: block;
	margin: 0 0 16px;
	padding: 0 20px;
	font-family: var(--font-medium);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #8a8f98;
}

.news-list__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0 0 28px;
	padding: 0 20px;
	font-family: var(--font-light);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.7;
	color: #6b7280;
}

.news-list__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	margin-left: 20px;
	min-width: 148px;
	height: 46px;
	padding: 0 22px;
	background: #111d5c;
	color: #fff;
	font-family: var(--font-light);
	font-size: 15px;
	font-weight: 300;
	letter-spacing: .03em;
	line-height: 1;
	box-sizing: border-box;
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.news-list__more-plus {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.news-list__link:hover .news-list__more {
	background: #2685f9;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(38, 133, 249, .28);
}

.news-list__empty {
	margin: 40px 0;
	text-align: center;
	font-size: 16px;
	color: #8a8f98;
}

/* ── Pagination (news page) ── */
.site-page-news .pagination {
	margin-top: 8px;
}

.site-page-news .pagination .page-numbers a,
.site-page-news .pagination .page-numbers span {
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #c8c8c8;
	background: transparent;
	color: #9aa0a8;
	font-family: var(--font-medium);
	font-size: 15px;
	font-weight: 500;
	box-sizing: border-box;
}

.site-page-news .pagination .page-numbers a:hover,
.site-page-news .pagination .page-numbers a:focus {
	color: #111d5c;
	border-color: #111d5c;
	background: transparent;
}

.site-page-news .pagination .page-numbers .current {
	background: #111d5c;
	border-color: #111d5c;
	color: #fff;
}

.site-page-news .pagination .page-numbers .dots {
	border: none;
	background: transparent;
	color: #9aa0a8;
}

.site-page-news .pagination .page-numbers .prev,
.site-page-news .pagination .page-numbers .next {
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
	padding: 0 8px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
	.news-list__media {
		flex: 0 0 420px;
		width: 420px;
		max-width: 420px;
	}

	.news-list__body {
		flex: 1 1 auto;
		width: auto;
		max-width: none;
	}

	.news-list__link {
		gap: 28px;
	}

	.news-list__title-text {
		font-size: 24px;
	}

	.page-section-head__bg {
		font-size: 80px;
	}

	.page-section-head__title {
		font-size: 42px;
	}
}

@media (max-width: 900px) {
	.news-page {
		padding: 56px 0 72px;
	}

	.page-section-head {
		margin-bottom: 48px;
	}

	.page-section-head__bg {
		font-size: 56px;
	}

	.page-section-head__title {
		font-size: 32px;
	}

	.page-section-head__line {
		width: 36px;
		height: 4px;
	}

	.news-list {
		gap: 28px;
		margin-bottom: 56px;
	}

	.news-list__link {
		flex-direction: column;
		gap: 20px;
	}

	.news-list__media {
		flex: none;
		width: 100%;
		max-width: none;
	}

	.news-list__body {
		flex: none;
		width: 100%;
		max-width: none;
	}

	.news-list__img,
	.news-list__img-placeholder {
		min-height: 220px;
		aspect-ratio: 16 / 10;
	}

	.news-list__body {
		padding: 0;
	}

	.news-list__title {
		padding: 12px 14px;
		margin-bottom: 14px;
	}

	.news-list__title-text {
		font-size: 22px;
	}

	.news-list__date,
	.news-list__excerpt {
		padding: 0 14px;
	}

	.news-list__more {
		margin-left: 14px;
	}
}

@media (max-width: 600px) {
	.news-page {
		padding: 40px 0 56px;
	}

	.page-section-head__bg {
		font-size: 40px;
	}

	.page-section-head__title {
		font-size: 26px;
	}

	.news-list__title-text {
		font-size: 18px;
	}

	.news-list__excerpt {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.news-list__more {
		min-width: 0;
		height: 42px;
		padding: 0 18px;
		font-size: 14px;
	}
}
