.NewsHero {
	display: flex;
	align-items: center;
	height: 400px;
	padding: 0;
	color: #fff;
	background-size: cover;
}


.NewsHero span {
	color: #ed5535;
	font-size: 14px;
	line-height: 21px;
}

.NewsHero h1 {
	margin-top: 14px;
	font-size: 64px;
	line-height: 70px;
}

.NewsHero p {
	margin-top: 18px;
	color: #d0d3d5;
	font-size: 18px;
	line-height: 30px;
}

.NewsTabs {
	padding: 0;
	border-bottom: 1px solid var(--site-line);
	background: #f5f6f7;
}

.NewsTabs .main {
	display: flex;
	align-items: center;
	height: 68px;
	gap: 42px;
}

.NewsTabs a {
	position: relative;
	font-size: 14px;
	line-height: 20px;
}

.NewsTabs a.active {
	color: var(--site-red);
}

.NewsTabs a.active::after {
	position: absolute;
	right: 0;
	bottom: -24px;
	left: 0;
	height: 2px;
	background: var(--site-red);
	content: "";
}

.FeaturedNews,
.NewsCatalog {
    padding-top: var(--p80);
	background: #fff;
}

.FeaturedNews{
    padding-bottom: vaR(--p0);
}
.FeaturedNews .main > a {
	display: grid;
	grid-template-columns: 1.38fr 1fr;
	border: 1px solid var(--site-line);
}

.FeaturedNews .featureImage {
	aspect-ratio: 954 / 520;
	flex-shrink: 0;
}

.FeaturedNews .main > a > div:last-child {
	padding: 70px 46px;
}

.FeaturedNews span {
	color: var(--site-red);
	font-size: 14px;
	line-height: 22px;
}

.FeaturedNews h2 {
	margin-top: 24px;
	font-size: 32px;
	line-height: 40px;
}

.FeaturedNews p {
	margin-top: 18px;
	color: #626970;
	font-size: 16px;
	line-height: 26px;
}

.FeaturedNews strong {
	display: block;
	margin-top: 30px;
	color: var(--site-red);
	font-size: 16px;
	line-height: 24px;
}


.NewsCatalog .newsGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.NewsCatalog .newsGrid > a {
	padding-bottom: 24px;
	border: 1px solid var(--site-line);
}

.NewsCatalog .newsImage {
	aspect-ratio: 1.84;
	flex-shrink: 0;
}

.NewsCatalog .newsMeta,
.NewsCatalog .newsGrid h2,
.NewsCatalog .newsGrid p,
.NewsCatalog .newsGrid > a > strong {
	margin-right: 22px;
	margin-left: 22px;
}

.NewsCatalog .newsMeta {
	display: flex;
	justify-content: space-between;
	margin-top: 18px;
	font-size: 12px;
	line-height: 18px;
}

.NewsCatalog .newsMeta span {
	padding: 3px 9px;
	background: #f8ddd6;
	color: var(--site-red);
}

.NewsCatalog .newsMeta time {
	color: #747a80;
}

.NewsCatalog .newsGrid h2 {
	margin-top: 14px;
	font-size: 24px;
	line-height: 34px;
}

.NewsCatalog .newsGrid p {
	margin-top: 10px;
	height: 3em;
	line-height: 1.5em;
	color: #697077;
	font-size: 14px;
	line-height: 22px;
}

.NewsCatalog .newsGrid > a > strong {
	display: block;
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid var(--site-line);
	font-size: 12px;
	line-height: 18px;
}

.NewsCatalog .pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 50px;
}

.NewsCatalog .pagination button,
.NewsCatalog .pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--site-line);
}

.NewsCatalog .pagination button.active {
	background: var(--site-red);
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.NewsHero {
		height: auto;
		min-height: 400px;
	}

	.NewsHero h1 {
		font-size: 44px;
		line-height: 56px;
	}

	.NewsTabs .main {
		height: auto;
		padding: 16px 0;
		gap: 18px;
		flex-wrap: wrap;
	}

	.NewsTabs a.active::after {
		bottom: -4px;
	}

	.FeaturedNews .main > a,
	.NewsCatalog .newsGrid {
		grid-template-columns: 1fr;
	}

	.FeaturedNews .main > a > div:last-child {
		padding: 28px;
	}
}
