.news-section {
	background-color: #373637;
	color: #ffffff;
	padding: 200px 100px;
}

.news-container {
	max-width: 1920px;
	margin: 0 auto;
}

.section-title-wrapper-center {
	display: flex;
	align-items: flex-end;
	gap: 60px;
	margin-bottom: 80px;
}

.section-title-wrapper-center .title-line-full {
	border: none;
	height: 2px;
	background-color: #5acafa;
	margin: 0;
	flex-grow: 1;
}

.section-title-wrapper-center .title-text-content {
	text-align: center;
	flex-shrink: 0;
}

.section-title-wrapper-center .pre-title {
	display: block;
	color: #5acafa;
	font-size: 15px;
	text-transform: uppercase;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	margin-bottom: 5px;
	line-height: 0.8;
}

.section-title-wrapper-center .section-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 64px;
	line-height: 1;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
}

.news-item {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
	align-items: center;
}

.news-item--no-image {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
}

.news-item--no-image .news-content {
	align-items: center;
}

.news-item--no-image .news-title {
	margin-bottom: 30px;
}

.news-item--no-image .news-description p {
	margin-bottom: 40px;
}

.news-image img,
.news-image-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.news-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.news-pre-title {
	display: block;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 1;
	color: #5acafa;
	margin-bottom: 3px;
}

.news-title {
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 1;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 65px;
}

.news-description p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	color: #ffffff;
	margin-bottom: 65px;
}

.btn-text-link {
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1;
	text-decoration: none;
	color: #5acafa;
	text-transform: uppercase;
	transition: color 0.3s ease;
	margin-top: 65px;
}

.btn-text-link:hover {
	color: #ffffff;
}

.news-divider {
	border: none;
	height: 2px;
	background-color: #ffffffb2;
	opacity: 0.5;
	margin: 110px 0;
}

.news-pagination {
	margin-top: 40px;
	text-align: center;
}

.news-pagination .page-numbers {
	display: inline-block;
	margin: 0 5px;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	text-decoration: none;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
}

.news-pagination .page-numbers.current {
	background-color: #5acafa;
	color: #000;
	border-color: #5acafa;
}

@media (max-width: 992px) {
	.news-section {
		padding: 120px 5%;
	}

	.section-title-wrapper-center .section-title {
		font-size: 48px;
	}

	.news-item {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.news-item--has-image {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.news-section {
		padding: 80px 20px;
	}

	.section-title-wrapper-center {
		gap: 20px;
		margin-bottom: 40px;
	}

	.section-title-wrapper-center .title-line-full {
		width: 100%;
	}

	.section-title-wrapper-center .section-title {
		font-size: 36px;
	}

	.news-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.news-description p {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.btn-text-link {
		font-size: 22px;
		margin-top: 30px;
	}

	.news-divider {
		margin: 70px 0;
	}
}
