/**
 * AZPerio — custom locations map styling.
 */
.azp-locations-map-wrap {
	width: 100%;
	margin: 0 auto;
}

.azp-locations-map {
	width: 100%;
	height: 450px;
	min-height: 300px;
	background: #e9edf0; /* neutral placeholder before tiles load */
}

@media (max-width: 768px) {
	.azp-locations-map {
		height: 360px;
	}
}

/* Info box (InfoWindow) contents. The theme forces `p { margin: 0 0 20px }`
 * with !important, so the info box paragraphs need !important to stay compact. */
.azp-map-infobox {
	font-family: inherit;
	max-width: 240px;
	color: #102238;
	line-height: 1.4;
	padding: 2px 4px;
}
.azp-map-infobox h3 {
	margin: 0 0 6px !important;
	font-size: 16px;
	font-weight: 700;
	color: #102238;
	text-transform: none;
}
.azp-map-infobox p {
	margin: 0 0 6px !important;
	font-size: 14px;
}
.azp-map-infobox p:last-child {
	margin-bottom: 0 !important;
}
.azp-map-infobox a {
	color: #c1481f;
	text-decoration: underline;
}
