.ec-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.ec-hl {
	border: 1px solid #ece5da;
	padding: 28px 24px;
	background: #fff;
	transition: border-color .35s, transform .35s;
}

.ec-hl:hover {
	border-color: rgba(200, 164, 106, .45);
	transform: translateY(-3px);
}

.ec-hl-title {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #4a1f1b;
	margin-bottom: 8px;
	font-weight: 500;
}

.ec-hl-text {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
	color: #6f6f6f;
}

@media (max-width:768px) {}