/**
 * Map-Facade (Click-to-load) — leichte Karten-Vorschau statt sofortigem
 * Google-Maps-Embed (~522 KB JS). Erst der Klick lädt die interaktive Karte.
 */
.mc-map-facade {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 100%;
	height: 100%;
	min-height: clamp(360px, 42vw, 460px);
	margin: 0;
	padding: 24px;
	border: 0;
	cursor: pointer;
	text-align: center;
	font-family: inherit;
	color: var(--c-dark, #2a2a2a);
	/* Stilisierte „Karten"-Optik: feines Raster + dezenter Marken-Schimmer auf Creme. */
	background:
		radial-gradient(circle at 28% 24%, rgba(167, 144, 196, 0.12), transparent 60%),
		repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.045) 0 1px, transparent 1px 30px),
		repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.045) 0 1px, transparent 1px 30px),
		var(--c-cream, #f4efe8);
	transition: filter 0.2s ease;
}

.mc-map-facade:hover,
.mc-map-facade:focus-visible {
	filter: brightness(0.975);
}

.mc-map-facade__pin {
	width: 38px;
	height: 38px;
	color: var(--c-purple, #a790c4);
}

.mc-map-facade__pin svg {
	display: block;
	width: 100%;
	height: 100%;
}

.mc-map-facade__btn {
	display: inline-flex;
	align-items: center;
	background: var(--c-purple, #a790c4);
	color: #fff;
	padding: 10px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.02em;
}

.mc-map-facade__hint {
	max-width: 34ch;
	font-size: 12px;
	line-height: 1.4;
	opacity: 0.65;
}

@media (max-width: 880px) {
	/* Galt vorher nur für .location-map (Frontpage) — die Lage-Seite nutzt aber
	 * .room-stories#map, daher blieb die Facade dort 360px hoch + der Button
	 * weniger sichtbar. Jetzt für ALLE Map-Facades auf Mobile. */
	.mc-map-facade {
		min-height: 220px;
		gap: 12px;
	}
	.mc-map-facade__btn {
		font-size: 15px;
		padding: 12px 26px;
	}
	.mc-map-facade__hint {
		max-width: 28ch;
		font-size: 11px;
	}
}
