@charset "utf-8";

.blog_body {
	background: #fff;
}

#content.blog-wrapper {
	background: #fff;
	color: #222;
	padding: 0 0 70px;
}

#content.blog-wrapper a {
	color: inherit;
	text-decoration: none;
}

.news-container {
	width: min(1500px, calc(100% - 72px));
	margin: 0 auto;
}

.news-page-head {
	padding: 54px 0 42px;
	text-align: center;
	background: #fafafa;
	border-bottom: 1px solid #ededed;
}

.news-page-head h1 {
	margin: 0;
	color: #111;
	font-size: 38px;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
}

.news-head-line {
	width: 54px;
	height: 3px;
	margin: 18px auto 0;
	background: #ffca24;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 30px;
	padding-top: 48px;
}

.news-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	border: 1px solid #e8e8e8;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.news-card:hover {
	transform: translateY(-4px);
	border-color: #dedede;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.news-card-photo {
	display: block;
	overflow: hidden;
	position: relative;
	aspect-ratio: 4 / 3;
	background: #f5f5f5;
}

.news-card-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.news-card:hover .news-card-photo img {
	transform: scale(1.05);
}

.news-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 24px 26px;
}

.news-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: #888;
	font-size: 13px;
	line-height: 1.4;
	text-transform: uppercase;
}

.news-card-meta a {
	color: #ffb900 !important;
	font-weight: 700;
}

.news-card-meta span:before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin: 0 10px 2px 0;
	border-radius: 50%;
	background: #cfcfcf;
}

.news-card-title {
	margin: 0 0 13px;
	color: #111;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 700;
}

.news-card-title a:hover {
	color: #ffb900 !important;
}

.news-card-summary {
	margin: 0 0 22px;
	color: #555;
	font-size: 15px;
	line-height: 1.7;
}

.news-card-more {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-top: auto;
	color: #111 !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.news-card-more:after {
	content: "";
	width: 28px;
	height: 2px;
	margin-left: 10px;
	background: #ffca24;
	transition: width .25s ease;
}

.news-card-more:hover {
	color: #ffb900 !important;
}

.news-card-more:hover:after {
	width: 42px;
}

.news-empty {
	grid-column: 1 / -1;
	margin: 0;
	color: #555;
	font-size: 16px;
	text-align: center;
}

.nav-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 52px 0 0;
	padding: 0;
	list-style: none;
}

.nav-pagination li {
	margin: 0;
	list-style: none;
}

.nav-pagination a,
.nav-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 3px solid #242424;
	border-radius: 50%;
	background: #fff;
	color: #111 !important;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-pagination a:hover,
.nav-pagination .current {
	border-color: #111;
	background: #111;
	color: #fff !important;
}

.nav-pagination .dots {
	padding-bottom: 7px;
	font-size: 24px;
	letter-spacing: 0;
}

.nav-pagination .prev,
.nav-pagination .next {
	padding-bottom: 4px;
	font-size: 34px;
	font-weight: 400;
}

@media (max-width: 1199px) {
	.news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.news-container {
		width: calc(100% - 30px);
	}

	.news-page-head {
		padding: 34px 0 28px;
	}

	.news-page-head h1 {
		font-size: 28px;
	}

	.news-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-top: 30px;
	}

	.news-card-body {
		padding: 20px 18px 22px;
	}

	.news-card-title {
		font-size: 20px;
	}

	.nav-pagination {
		gap: 8px;
		margin-top: 36px;
	}

	.nav-pagination a,
	.nav-pagination span {
		width: 40px;
		height: 40px;
		border-width: 2px;
		font-size: 17px;
	}

	.nav-pagination .dots {
		padding-bottom: 5px;
		font-size: 18px;
	}

	.nav-pagination .prev,
	.nav-pagination .next {
		padding-bottom: 3px;
		font-size: 26px;
	}
}
