.news-section {
	background: #fff;
}
.news-grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr 1fr;
	gap: 22px;
}
.news-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 22px;
	color: inherit;
	background: #fff;
	text-decoration: none;
	box-shadow: 0 12px 36px rgba(8, 55, 43, 0.06);
	transition: 0.3s ease;
}
.news-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}
.news-card-image {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #dde6e2;
}
.news-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}
.news-card:hover img {
	transform: scale(1.05);
}
.news-badge {
	position: absolute;
	left: 17px;
	top: 17px;
	padding: 7px 10px;
	border-radius: 99px;
	background: var(--orange);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.news-card-body {
	padding: 26px;
}
.news-date {
	display: block;
	color: var(--green-700);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.news-card h3 {
	margin: 10px 0 12px;
	font-size: 22px;
	line-height: 1.15;
}
.news-card p {
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-read-more {
	display: inline-flex;
	margin-top: 22px;
	color: var(--orange);
	font-weight: 800;
	font-size: 13px;
}
.news-card-featured {
	grid-row: span 1;
}
.news-card-featured .news-card-image {
	aspect-ratio: 16/10;
}
.news-card-featured h3 {
	font-size: 29px;
}
@media (max-width: 900px) {
	.news-grid {
		grid-template-columns: 1fr 1fr;
	}
	.news-card-featured {
		grid-column: 1/-1;
	}
}
@media (max-width: 620px) {
	.news-grid {
		grid-template-columns: 1fr;
	}
	.news-card-featured {
		grid-column: auto;
	}
	.news-card-featured h3 {
		font-size: 24px;
	}
}
