/* ── Map Section ──────────────────────────────────────────── */

.map-section {
	background: var(--gray-100, #f3f4f6);
}

.map-heading {
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	margin: 0 0 24px;
}

.map-embed {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16 / 7;
}

.map-embed iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.map-note {
	font-size: 14px;
	color: var(--gray-500, #6b7280);
	margin: 16px 0 0;
}

@media (max-width: 600px) {
	.map-embed {
		aspect-ratio: 4 / 3;
	}
}
