.news-block-page {
}

.news-block-page__header {
	margin-bottom: 60px;
}

.news-block-page__heading {
	font-size: 48px;
	font-weight: 800;
	line-height: 130%;
	color: #F7F5F5;
	margin: 0 0 20px 0;
}
.reporting-tabs__content {
	background: #272726;
}
.news-block-page__subheading {
	color: rgba(247, 245, 245, 1);
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
}

/* Grid - 4 cards per row */
.news-block__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.news-block__card {
	border: 1px solid var(--color-border);
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.news-block__card:hover {
	border-color: var(--color-secondary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-block__card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.news-block__card-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.news-block__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-block__card:hover .news-block__card-image img {
	transform: scale(1.1);
}

.news-block__card-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.news-block__card-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 15px;
}

.news-block__card-title a {
	color: var(--color-text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-block__card-title a:hover {
	color: white;
}

.news-block__card-date {
	font-size: 16px;
	font-weight: 700;
	color: #F7F5F5;
	margin-bottom: 10px;
}

.news-block__card-link {
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
	font-size: 0.9375rem;
	margin-top: auto;
}

.news-block__card-link:hover {
	color: white;
}

.news-block__card-link svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.news-block__card-link svg path {
	transition: stroke 0.3s ease;
}

.news-block__card-link:hover svg {
	transform: translate(2px, -2px);
}

.news-block__card-link:hover svg path {
	stroke: white;
}

/* Pagination */
.news-pagination {
	margin-top: 60px;
	text-align: center;
}

.news-pagination .page-numbers {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.news-pagination .page-numbers li {
	display: inline-block;
}

.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	border-radius: 33px;
	color: white;
}
.next {
	background: transparent !important;
}

.news-pagination .page-numbers a:hover {
	background-color: var(--color-secondary);
	color: var(--color-dark);
	border-color: var(--color-secondary);
}

.news-pagination .page-numbers .current {
	background-color: rgba(254, 237, 1, 1);
	color: black;
}

.news-block__empty {
	text-align: center;
	color: var(--color-text-gray);
	font-size: 1.125rem;
	padding: 60px 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.news-block-page {
		padding: 60px 0;
	}

	.news-block-page__header {
		margin-bottom: 40px;
	}

	.news-block-page__heading {
		font-size: 36px;
	}

	.news-block-page__subheading {
		font-size: 18px;
	}

	.news-block__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}

	.news-block__card-image {
		height: 180px;
	}

	.news-pagination {
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.news-block-page {
		padding: 40px 0;
	}

	.news-block-page__header {
		margin-bottom: 30px;
	}

	.news-block-page__heading {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.news-block-page__subheading {
		font-size: 16px;
	}

	.news-block__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.news-block__card-image {
		height: 150px;
	}

	.news-block__card-content {
		padding: 20px;
	}

	.news-block__card-title {
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {
	.news-block__grid {
		grid-template-columns: 1fr;
	}

	.news-block__card-image {
		height: 180px;
	}
}
