/**
 * Cities / neighborhoods / buildings coverage card grid
 */

.mpm-area-coverage {
	font-family: Arial, Helvetica, sans-serif;
	background: #ffffff;
	padding: 80px 24px;
	box-sizing: border-box;
}

.mpm-area-coverage *,
.mpm-area-coverage *::before,
.mpm-area-coverage *::after {
	box-sizing: border-box;
}

.mpm-area-coverage__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 16px;
}

.mpm-area-coverage__header {
	text-align: center;
	margin: 0 auto 40px;
	max-width: 900px;
}

.mpm-area-coverage__title {
	margin: 0 0 16px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.25;
	color: #123d25;
}

.mpm-area-coverage__subtitle {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #555555;
}

.mpm-area-coverage__empty {
	text-align: center;
	font-size: 16px;
	color: #555555;
}

.mpm-area-coverage__empty a {
	color: #8bc53f;
	font-weight: 700;
	text-decoration: none;
}

.mpm-area-coverage__grid {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mpm-area-coverage__card {
	margin: 0;
	padding: 0;
	display: flex;
}

.mpm-area-coverage__card-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: 24px;
	background: #ffffff;
	border: 1px solid #e6e8ec;
	border-radius: 10px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mpm-area-coverage__card-inner:hover,
.mpm-area-coverage__card-inner:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border-color: #8bc53f;
}

.mpm-area-coverage__icon {
	display: block;
	width: 32px;
	height: 32px;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.mpm-area-coverage__icon svg {
	display: block;
	width: 32px;
	height: 32px;
}

.mpm-area-coverage .mpm-area-coverage__card-title {
	margin: 0 0 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.mpm-area-coverage .mpm-area-coverage__card-title a {
	color: #123d25;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mpm-area-coverage__card-inner:hover .mpm-area-coverage__card-title a,
.mpm-area-coverage__card-title a:focus {
	color: #8bc53f;
}

.mpm-area-coverage__card-text {
	margin: 0 0 22px;
	flex: 1 1 auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #555555;
}

.mpm-area-coverage__card-link {
	margin-top: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #8bc53f;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mpm-area-coverage__card-link:hover,
.mpm-area-coverage__card-link:focus {
	color: #123d25;
}

@media (max-width: 991px) {
	.mpm-area-coverage__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.mpm-area-coverage {
		padding: 48px 16px 56px;
	}

	.mpm-area-coverage__header {
		margin-bottom: 28px;
	}

	.mpm-area-coverage__title {
		font-size: 28px;
	}

	.mpm-area-coverage__grid {
		grid-template-columns: 1fr;
	}
}
