.news-page {
	--news-ink: #172b2a;
	--news-muted: #62726f;
	--news-green: #176c60;
	--news-green-dark: #0e4f47;
	--news-border: #dbe7e4;
	background: #f5f8f7;
	color: var(--news-ink);
}

.news-page main {
	position: relative;
	z-index: 1;
	background: #f5f8f7;
}

.news-page .site-footer {
	position: relative;
	z-index: 0;
	margin-top: -20px;
	padding-top: 54px;
	border-radius: 0;
}

.news-page .news-wrapper {
	position: relative;
	z-index: 2;
	max-width: 960px;
	margin-top: -60px;
	padding-bottom: 80px;
}

.news-page .news-list {
	display: grid;
	gap: 20px;
}

.news-page .news-card {
	margin: 0;
	border: 1px solid var(--news-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(17, 65, 59, 0.075);
	overflow: hidden;
}

.news-page .news-card > a {
	display: block;
	padding: clamp(28px, 4vw, 38px);
	color: inherit;
	text-decoration: none;
}

.news-page .news-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	align-items: center;
	margin-bottom: 18px;
	color: var(--news-muted);
	font-size: 0.84rem;
	font-weight: 600;
}

.news-page .news-card-meta time {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border: 1px solid #dce9e6;
	border-radius: 999px;
	background: #f3f8f7;
	color: #526461;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.25;
}

.news-page .news-card h3 {
	margin: 0 0 14px;
	color: var(--news-ink);
	font-family: "Exo2", Arial, Helvetica, sans-serif;
	font-size: clamp(1.45rem, 2.5vw, 1.9rem);
	font-style: normal;
	font-weight: 500;
	line-height: 1.25;
}

.news-page .news-card p {
	max-width: 720px;
	margin: 0 0 22px;
	color: var(--news-muted);
	font-size: 1.02rem;
	line-height: 1.65;
}

.news-page .news-card-link {
	color: var(--news-green-dark);
	font-size: 0.95rem;
	font-weight: 650;
}

.news-page .news-card-link span {
	display: inline-block;
	margin-left: 4px;
}

.news-page .news-card > a:focus-visible {
	border-radius: 13px;
	outline: 3px solid rgba(23, 108, 96, 0.28);
	outline-offset: -5px;
}

@media (max-width: 767px) {
	.news-page .site-footer {
		padding-top: 48px;
	}

	.news-page .news-wrapper {
		margin-top: -42px;
		padding-right: 14px;
		padding-bottom: 48px;
		padding-left: 14px;
	}

	.news-page .news-card {
		border-radius: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-page *,
	.news-page *::before,
	.news-page *::after {
		transition: none !important;
	}
}
