.ecl-card-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.ecl-card {
	border: 1px solid #e0e0e0;
	padding: 25px;
	border-radius: 8px;
	width: 100%;
	max-width: 350px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	text-align: center;
	transition: transform 0.25s ease;
}
.ecl-card:hover {
	transform: translateY(-4px);
}
.ecl-card-icon {
	font-size: 34px;
	margin-bottom: 12px;
	color: #e74c3c;
}
.ecl-card-title {
	font-size: 20px;
	margin: 0 0 10px;
}
.ecl-card-desc {
	font-size: 15px;
	margin-bottom: 20px;
}
.ecl-card-btn {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 4px;
	background: #e74c3c;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}
.ecl-card-btn:hover {
	background: #c0392b;
}