.haih-news-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(var(--haih-columns, 3), minmax(0, 1fr));
}

.haih-columns-1 { --haih-columns: 1; }
.haih-columns-2 { --haih-columns: 2; }
.haih-columns-3 { --haih-columns: 3; }
.haih-columns-4 { --haih-columns: 4; }

.haih-news-card {
	background: #fff;
	border: 1px solid #dce5e8;
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(12, 45, 55, 0.08);
	padding: 1.4rem;
}

.haih-news-card h3 {
	font-size: 1.25rem;
	line-height: 1.35;
	margin: 0.35rem 0 0.8rem;
}

.haih-news-date {
	color: #5c6d73;
	font-size: 0.9rem;
	margin: 0;
}

.haih-news-button,
.haih-cta-button {
	background: #0c4754;
	border-radius: 6px;
	color: #fff !important;
	display: inline-block;
	font-weight: 700;
	padding: 0.7rem 1rem;
	text-decoration: none;
}

.haih-source-box,
.haih-article-cta {
	background: #f3f7f8;
	border-left: 4px solid #0c6c78;
	margin: 2rem 0;
	padding: 1rem 1.25rem;
}

.haih-disclaimer {
	color: #53666b;
	font-size: 0.92em;
}

@media (max-width: 980px) {
	.haih-news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

