/* ═══════════════════════════════════════════════════════════════════════════
   OUR SCHOOLS PAGE — INTERACTIVE MAP
   ═══════════════════════════════════════════════════════════════════════════ */

.schools-map {
	padding: 2rem 0 0;
	background-color: #253d47;
	border-top: none;
}

.schools-map .site-container {
	padding-bottom: 1.75rem;
}

.schools-map__heading {
	font-family: var(--ci-font-primary);
	font-size: clamp(1.4rem, 2.2vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	color: #c6a54e;
	margin: 0 0 0.6rem;
}

.schools-map__intro {
	font-size: 0.975rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

/* Map canvas — full section width, fixed height */
.schools-map__canvas {
	width: 100%;
	height: 480px;
	display: block;
}

/* Leaflet popup styling to match brand */
.leaflet-popup-content-wrapper {
	border-radius: 8px !important;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
	font-family: var(--ci-font-primary) !important;
	padding: 0 !important;
}

.leaflet-popup-content {
	font-family: var(--ci-font-primary) !important;
	font-size: 0.875rem !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

.leaflet-popup-tip-container {
	margin-top: -1px;
}

/* Country school list popup */
.ci-map-popup {
	padding: 0.75rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	max-height: 260px;
	overflow-y: auto;
}

.ci-map-school {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid #f0f0f4;
}

.ci-map-school:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ci-map-school strong {
	font-size: 0.85rem;
	font-weight: 700;
	color: #c6a54e;
	line-height: 1.3;
}

.ci-map-school span {
	font-size: 0.78rem;
	color: #6e6e73;
	line-height: 1.3;
}

/* Single-school dot popup */
.ci-map-dot-popup {
	padding: 0.85rem 1.1rem;
}

.ci-map-dot-popup strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #c6a54e;
	line-height: 1.3;
	margin-bottom: 0.3rem;
}

.ci-map-location {
	display: block;
	font-size: 0.875rem;
	color: #6e6e73;
	line-height: 1.4;
}

/* Attribution — keep it tidy */
.leaflet-control-attribution {
	font-size: 0.7rem !important;
	background: rgba(255,255,255,0.75) !important;
}

/* ── Mobile ── */
@media (max-width: 767px) {
	.schools-map {
		padding-top: var(--ci-section-padding-mobile);
	}

	.schools-map__canvas {
		height: 340px;
	}
}
