.home-news {
	padding: 0 0 var(--section-space);
}

.home-news__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.news-card {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: #ffffff;
}

.news-card img {
	width: 100%;
	height: 138px;
	object-fit: cover;
}

.news-card__body {
	padding: 17px 17px 19px;
}

.news-card time {
	display: block;
	margin-bottom: 8px;
	color: #6a7585;
	font-size: 14px;
}

.news-card h3 {
	margin: 0 0 16px;
	color: #17202a;
	font-size: 17px;
	line-height: 1.42;
}

.news-card a {
	color: #174780;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

@media (max-width: 900px) {
	.home-news__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.home-news__grid {
		grid-template-columns: 1fr;
	}
}
