.about-news__panel {
	padding: 20px;
	border-radius: 8px;
	background: #eef7ff;
}

.about-news__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.about-news .news-card {
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 8px 18px rgba(9, 58, 116, 0.06);
}

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

.about-news .news-card__body {
	padding: 12px 14px 15px;
}

.about-news .news-card time {
	display: block;
	margin-bottom: 6px;
	color: #7a8b9c;
	font-size: 11px;
	font-weight: 700;
}

.about-news .news-card h3 {
	min-height: 46px;
	margin: 0 0 10px;
	color: #233653;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.about-news .news-card a {
	color: var(--about-blue);
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

.about-news__more {
	margin-top: 20px;
	text-align: center;
}

.about-news__more .btn-primary {
	min-height: 34px;
	padding-inline: 27px;
	font-size: 12px;
}

@media (max-width: 1000px) {
	.about-news__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.about-news__panel {
		padding: 14px;
	}

	.about-news__grid {
		grid-template-columns: 1fr;
	}
}
