.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.section-kicker {
	display: inline-block;
	color: var(--primary-color);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.section-title {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
}

.section-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.3rem;
	border-radius: 999px;
	background: var(--primary-color);
	color: #ffffff;
	font-weight: 600;
	white-space: nowrap;
	transition: 0.2s ease;
}

.section-button:hover,
.section-button:focus-visible {
	background: var(--primary-color-75);
	color: #ffffff;
}

.news-list-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem 5.5rem;
}

.news-page-hero {
	border-radius: 22px;
	padding: 1.6rem 1.35rem;
	border: 1px solid rgba(69, 71, 100, 0.14);
	background: linear-gradient(135deg, rgba(52, 142, 134, 0.1) 0%, rgba(52, 142, 134, 0.18) 100%);
	margin-bottom: 1.4rem;
}

.news-page-kicker {
	display: inline-block;
	color: var(--primary-color);
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0.45rem;
}

.news-page-hero h1 {
	margin: 0;
	color: var(--primary-color);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.35;
}

.news-page-hero p {
	margin: 0.8rem 0 0;
	color: var(--primary-color);
	line-height: 1.9;
	opacity: 0.9;
}

.news-list-header {
	margin-bottom: 1.5rem;
}

.news-list-meta {
	color: var(--primary-color);
	font-size: 0.95rem;
	font-weight: 600;
	opacity: 0.8;
}

.news-feedback {
	margin-bottom: 1.2rem;
	color: var(--primary-color);
	font-weight: 600;
}

.news-empty {
	padding: 2.5rem 1.5rem;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(69, 71, 100, 0.12);
	text-align: center;
	box-shadow: 0 14px 35px rgba(69, 71, 100, 0.08);
}

.news-empty h3 {
	margin: 0;
	color: var(--primary-color);
	font-size: 1.35rem;
}

.news-empty p {
	margin: 0.75rem 0 0;
	color: var(--primary-color);
	line-height: 1.8;
	opacity: 0.85;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.news-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid rgba(69, 71, 100, 0.12);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 14px 35px rgba(69, 71, 100, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 42px rgba(69, 71, 100, 0.14);
}

.news-card-image {
	width: 100%;
	height: 220px;
	min-height: 220px;
	background: #f1f3f5;
	overflow: hidden;
}

.news-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-card-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.3rem 1.25rem 1.4rem;
}

.news-card-content h3 {
	margin: 0 0 0.8rem;
	font-size: 1.2rem;
	line-height: 1.6;
	color: var(--primary-color);
}

.news-card-content p {
	margin: 0;
	line-height: 1.9;
	color: var(--primary-color);
	opacity: 0.9;
}

.news-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1.2rem;
}

.news-relative-date {
	color: var(--secondary-color);
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
}

.news-link {
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
	font-weight: 700;
	position: relative;
	padding-bottom: 0.15rem;
}

.news-link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	transform: scaleX(0.3);
	transform-origin: right center;
	transition: transform 0.2s ease;
}

.news-link:hover::after,
.news-link:focus-visible::after {
	transform: scaleX(1);
}

.news-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-top: 2rem;
}

.news-pagination button {
	min-width: 46px;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(69, 71, 100, 0.16);
	background: #ffffff;
	color: var(--primary-color);
	font-weight: 700;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.news-pagination button:hover,
.news-pagination button:focus-visible {
	background: rgba(52, 142, 134, 0.1);
	transform: translateY(-1px);
}

.news-pagination button.is-active {
	background: var(--primary-color);
	color: #ffffff;
	border-color: var(--primary-color);
}

.news-pagination button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

@media (max-width: 768px) {
	.news-list-section {
		padding: 1.5rem 1rem 4.5rem;
	}

	.news-page-hero h1 {
		font-size: 1.75rem;
	}

	.section-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.section-title {
		font-size: 1.7rem;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.news-card-content {
		padding: 1.1rem 1rem 1.2rem;
	}

	.news-card-footer {
		gap: 0.75rem;
	}

	.news-pagination button {
		min-width: 40px;
		padding-inline: 0.85rem;
	}
}
