/* News listing — original news.html layout */

.wl-page-banner {
	width: 100%;
	line-height: 0;
	overflow: hidden;
	background: #111;
}

.wl-page-banner img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 550;
	object-fit: cover;
	object-position: center;
}

.wl-news-page {
	padding-bottom: 64px;
	background: #fff;
	font-family: var(--wl-font-text);
}

.wl-news-page__layout {
	padding-top: 0;
}

.wl-news-page__content {
	min-width: 0;
}

.wl-news-list {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.wl-news-list__item {
	display: grid;
	grid-template-columns: 204px minmax(0, 1fr) 132px;
	gap: 30px;
	align-items: stretch;
	margin: 0;
	padding: 35px 0;
	border-bottom: 1px dashed #ddd;
}

.wl-news-list__thumb {
	display: block;
	width: 204px;
	height: 154px;
	padding: 2px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	overflow: hidden;
	background: #f7f7f7;
}

.wl-news-list__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wl-news-list__body {
	min-width: 0;
}

.wl-news-list__title {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
}

.wl-news-list__title a {
	color: #111;
	text-decoration: none;
}

.wl-news-list__title a:hover {
	color: var(--wl-red);
}

.wl-news-list__excerpt {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: #111;
}

.wl-news-list__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding-left: 30px;
	border-left: 1px solid #ddd;
	min-height: 150px;
}

.wl-news-list__date {
	margin: 0;
	width: 100%;
	text-align: center;
	font-size: 18px;
	color: #111;
	line-height: 1.4;
}

.wl-news-list__more {
	display: block;
	width: 100px;
	padding: 10px 0;
	border-radius: 15px;
	background: var(--wl-red);
	color: #fff;
	font-size: 18px;
	font-style: normal;
	text-align: center;
	text-decoration: none;
	transition: background 0.2s ease;
}

.wl-news-list__more:hover {
	background: #000;
	color: #fff;
}

.wl-news-list__empty {
	padding: 48px 0;
	color: #111;
}

.wl-news-page .navigation.pagination {
	padding: 24px 0 10px;
	text-align: center;
}

.wl-news-page .navigation.pagination .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.wl-news-page .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}

.wl-news-page .nav-links a,
.wl-news-page .nav-links span {
	display: inline-block;
	padding: 5px 10px;
	margin: 2px;
	border: 1px solid #ccc;
	color: #111;
	font-size: 18px;
	text-decoration: none;
	background: #fff;
}

.wl-news-page .nav-links a:hover {
	color: #fff;
	background: var(--wl-red);
	border-color: var(--wl-red);
}

.wl-news-page .nav-links .current {
	color: #fff;
	font-weight: 700;
	background: #eee;
	border-color: var(--wl-red);
	color: var(--wl-red);
}

@media (max-width: 1024px) {
	.wl-page-banner img {
		aspect-ratio: 16 / 5;
	}
}

@media (max-width: 768px) {
	.wl-page-banner img {
		aspect-ratio: 2 / 1;
	}

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

	.wl-news-list__thumb {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.wl-news-list__title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.wl-news-list__meta {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		min-height: 0;
		padding-left: 0;
		border-left: 0;
		gap: 12px;
	}

	.wl-news-list__date {
		text-align: left;
	}
}
