.ptr-news,
.ptr-news * {
	box-sizing: border-box;
}

.ptr-news {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(30px, 5vw, 72px) clamp(18px, 3vw, 42px);
	color: #304750;
}

.ptr-news__header {
	max-width: 780px;
	margin: 0 0 clamp(28px, 4vw, 46px);
}

.ptr-news__eyebrow {
	margin: 0 0 10px;
	color: #96588a;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.ptr-news__header h1 {
	margin: 0;
	color: #185c6b;
	font-size: clamp(38px, 6vw, 66px);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1;
}

.ptr-news__intro {
	margin: 18px 0 0;
	color: #52666f;
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 600;
	line-height: 1.55;
}

.ptr-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 2.5vw, 32px);
}

.ptr-news-card {
	display: flex;
	min-width: 0;
	margin: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #c9dfe5;
	border-top: 4px solid #edae1b;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(24, 92, 107, .08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.ptr-news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px rgba(24, 92, 107, .14);
}

.ptr-news-card__image {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #eaf2f4;
}

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

.ptr-news-card:hover .ptr-news-card__image img {
	transform: scale(1.035);
}

.ptr-news-card__fallback {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #185c6b, #24798a);
	color: #fff;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: .03em;
}

.ptr-news-card__fallback span {
	margin-right: 7px;
	color: #a8c545;
	font-weight: 900;
}

.ptr-news-card__body {
	display: flex;
	padding: clamp(20px, 2vw, 28px);
	flex: 1;
	flex-direction: column;
}

.ptr-news-card__meta {
	display: flex;
	margin: 0 0 13px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #687980;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
}

.ptr-news-card__category {
	color: #96588a;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.ptr-news-card h2 {
	margin: 0 0 12px;
	font-size: clamp(21px, 2vw, 27px);
	font-weight: 900;
	line-height: 1.15;
}

.ptr-news-card h2 a {
	color: #185c6b;
	text-decoration: none;
}

.ptr-news-card h2 a:hover,
.ptr-news-card h2 a:focus {
	color: #96588a;
}

.ptr-news-card__body > p {
	margin: 0 0 22px;
	color: #52666f;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
}

.ptr-news-card__link {
	display: inline-flex;
	margin-top: auto;
	align-items: center;
	gap: 8px;
	color: #185c6b;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.ptr-news-card__link span {
	color: #edae1b;
	font-size: 25px;
	line-height: .7;
}

.ptr-news__pagination {
	display: flex;
	margin-top: 42px;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.ptr-news__pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	padding: 0 13px;
	align-items: center;
	justify-content: center;
	border: 1px solid #c9dfe5;
	border-radius: 6px;
	background: #fff;
	color: #185c6b;
	font-weight: 800;
	text-decoration: none;
}

.ptr-news__pagination .current,
.ptr-news__pagination a:hover {
	border-color: #185c6b;
	background: #185c6b;
	color: #fff;
}

.ptr-news__empty {
	padding: 40px;
	border: 1px solid #c9dfe5;
	border-left: 5px solid #edae1b;
	border-radius: 8px;
	background: #fff;
}

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

@media (max-width: 600px) {
	.ptr-news {
		padding-right: 16px;
		padding-left: 16px;
	}

	.ptr-news__grid {
		grid-template-columns: 1fr;
	}

	.ptr-news-card__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ptr-news-card,
	.ptr-news-card__image img {
		transition: none;
	}
}
