/**
 * Contactpagina — serviceblokken [hps_contact_service_blokken].
 * Vijf blokken in de stijl van tuincentrum.nl/contact, in HandyStairs-huisstijl.
 * Hoort bij inc/contact-page.php.
 */

.hps-svc {
	margin: 10px 0 30px;
}
.hps-svc__heading {
	font-size: 26px;
	font-weight: 800;
	color: #1d1d1b;
	text-align: center;
	margin: 0 0 6px;
}
.hps-svc__intro {
	text-align: center;
	color: #5a5a57;
	margin: 0 0 24px;
}
.hps-svc__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
@media (max-width: 1199.98px) {
	.hps-svc__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
	.hps-svc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479.98px) {
	.hps-svc__grid { grid-template-columns: 1fr; }
}

.hps-svc__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 24px 16px 20px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background: #fff;
	text-decoration: none;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.hps-svc__card:hover {
	border-color: #3caf66;
	box-shadow: 0 4px 14px rgba(29, 29, 27, .06);
	transform: translateY(-2px);
	text-decoration: none;
}

.hps-svc__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(60, 175, 102, .1);
	color: #339a57;
}
.hps-svc__icon svg { width: 26px; height: 26px; }

.hps-svc__title {
	font-size: 17px;
	font-weight: 700;
	color: #1d1d1b;
}
.hps-svc__text {
	font-size: 13.5px;
	line-height: 1.45;
	color: #5a5a57;
}
.hps-svc__more {
	margin-top: auto;
	font-size: 14px;
	font-weight: 600;
	color: #339a57;
}
.hps-svc__card:hover .hps-svc__more { text-decoration: underline; }
