.daroinsight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	direction: rtl;
}
.daroinsight-card {
	display: block;
	border: 1px solid #e3e3e3;
	border-radius: 10px;
	padding: 16px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: box-shadow .15s ease, transform .15s ease;
}
.daroinsight-card:hover {
	box-shadow: 0 4px 14px rgba(0,0,0,.08);
	transform: translateY(-2px);
}
.daroinsight-card-thumb img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 10px;
}
.daroinsight-card h3 {
	margin: 0 0 6px;
	font-size: 16px;
}
.daroinsight-card p {
	margin: 0;
	font-size: 13px;
	color: #666;
}
.daroinsight-empty {
	color: #888;
}
