.home-services {
	padding: 32px 0 var(--section-space);
}

.home-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.service-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(19, 63, 124, 0.04);
}

.service-card__image {
	height: 250px;
	background: #f3f7fb;
}

.service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.service-card__icon {
	position: absolute;
	top: 210px;
	left: 25px;
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	border: 2px solid #113f7e;
	border-radius: 50%;
	background: #ffffff;
	color: #113f7e;
	font-size: 27px;
	line-height: 1;
}

.service-card__icon img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.service-card__body {
	min-height: 86px;
	padding: 34px 24px 17px;
}

.service-card h3 {
	margin: 0 0 5px;
	color: #174780;
	font-size: 19px;
	line-height: 1.15;
}

.service-card p {
	margin: 0;
	color: #243851;
	font-size: 13px;
	font-weight: 500;
}

@media (max-width: 900px) {
	.home-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.home-services__grid {
		grid-template-columns: 1fr;
	}
}
