/* --- News teaser section (homepage "Trang tin công nghệ") --- */
.pcseal-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.pcseal-news-card {
	display: block;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: var(--ink);
	box-shadow: 0 1px 2px rgba(10, 30, 20, .04);
}

.pcseal-news-card img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
}

.pcseal-news-card .body {
	padding: 12px 14px;
}

.pcseal-news-card .title {
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.3;
}

.pcseal-news-card .excerpt {
	font-size: 0.85rem;
	color: var(--muted);
	margin: 0;
	line-height: 1.4;
}

.pcseal-news-card:hover .title {
	color: var(--accent-strong);
}

@media (max-width: 600px) {
	.pcseal-news-grid {
		grid-template-columns: 1fr;
	}
}
