/* =====================================================================
   LVL7 Community Map – Frontend-Karte + Account-Formular
   Brand: Bebas Neue (Headings), Manrope (Text), Akzent #d3b87d
   ===================================================================== */

:root {
	--lvl7cm-accent: #d3b87d;
	--lvl7cm-accent-hover: #b29c6b;
	--lvl7cm-heading: #151616;
	--lvl7cm-text: #393c40;
	--lvl7cm-border: #f2f2f2;
	--lvl7cm-bg: #fffdfb;
	--lvl7cm-bg-2: #f2f2f2;
}

/* ---------- Frontend-Karte ---------- */
.lvl7cm-map {
	position: relative;
	z-index: 0; /* eigener Stacking-Context: Leaflets hohe z-indexe bleiben drin */
	width: 100%;
	min-height: 400px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--lvl7cm-border);
	background: var(--lvl7cm-bg-2); /* helles Neutral, kein Blitz vor dem Kachel-Laden */
}

.lvl7cm-map .leaflet-control-attribution a {
	color: var(--lvl7cm-accent);
}

.lvl7cm-popup {
	font-family: "Manrope", sans-serif;
	color: var(--lvl7cm-text);
	min-width: 140px;
}

.lvl7cm-popup__name {
	display: block;
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.25rem;
	letter-spacing: .03em;
	color: var(--lvl7cm-heading);
	margin-bottom: 4px;
}

/* =====================================================================
   ACCOUNT-FORMULAR  (theme-resistent gegen Astra/WooCommerce-Overrides)
   Alles unter .lvl7cm-account-form gescoped, layout-kritische Regeln mit
   !important, damit Astra das vertikale Layout nicht zerschießt.
   ===================================================================== */
.lvl7cm-account-form {
	font-family: "Manrope", sans-serif;
	color: var(--lvl7cm-text);
	max-width: 560px;
}

.lvl7cm-account-form .lvl7cm-intro {
	margin: 0 0 1.75rem;
	line-height: 1.6;
}

/* Jedes Feld als eigener Block, gleichmäßiger Abstand */
.lvl7cm-account-form .lvl7cm-field {
	display: block !important;
	margin: 0 0 1.5rem !important;
	padding: 0;
}

/* Feld-Label immer oben, voller Breite */
.lvl7cm-account-form .lvl7cm-field > label {
	display: block !important;
	float: none !important;
	width: auto !important;
	margin: 0 0 .4rem !important;
	font-weight: 600;
	color: var(--lvl7cm-heading);
}

/* Text-/URL-Inputs + Selects: einheitlich volle Breite */
.lvl7cm-account-form input[type="text"],
.lvl7cm-account-form input[type="url"],
.lvl7cm-account-form select {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	display: block;
	margin: 0;
	padding: .7rem .85rem;
	border: 1px solid var(--lvl7cm-border);
	border-radius: 8px;
	background: var(--lvl7cm-bg);
	color: var(--lvl7cm-text);
	font-family: "Manrope", sans-serif;
	line-height: 1.4;
}

.lvl7cm-account-form input:focus,
.lvl7cm-account-form select:focus {
	outline: none;
	border-color: var(--lvl7cm-accent);
	box-shadow: 0 0 0 3px rgba(211, 184, 125, .18);
}

.lvl7cm-account-form .lvl7cm-hint {
	font-size: .85rem;
	color: var(--lvl7cm-text);
	opacity: .75;
	margin: .35rem 0 0;
	line-height: 1.5;
}

/* ----- Checkbox-Zeilen (Opt-in, Bild entfernen) ----- */
.lvl7cm-account-form .lvl7cm-field--toggle > label,
.lvl7cm-account-form .lvl7cm-field--optin > label,
.lvl7cm-account-form .lvl7cm-avatar-remove {
	display: flex !important;
	align-items: flex-start;
	gap: .6rem;
	margin: 0 !important;
	font-weight: 400;
	color: var(--lvl7cm-text);
	cursor: pointer;
}

.lvl7cm-account-form .lvl7cm-field--toggle strong,
.lvl7cm-account-form .lvl7cm-field--optin strong {
	color: var(--lvl7cm-heading);
}

.lvl7cm-account-form .lvl7cm-field--toggle input[type="checkbox"],
.lvl7cm-account-form .lvl7cm-field--optin input[type="checkbox"],
.lvl7cm-account-form .lvl7cm-avatar-remove input[type="checkbox"] {
	width: auto !important;
	margin: .25rem 0 0 !important;
	flex: 0 0 auto;
	accent-color: var(--lvl7cm-accent);
}

/* Zusammengefasstes Opt-in als hervorgehobene Consent-Karte */
.lvl7cm-account-form .lvl7cm-field--optin {
	background: var(--lvl7cm-bg-2);
	border: 1px solid var(--lvl7cm-border);
	border-radius: 10px;
	padding: 14px !important;
}

.lvl7cm-optin-text {
	display: block;
}

.lvl7cm-optin-text strong {
	display: block;
	margin-bottom: 3px;
}

/* Pflichtfeld-Markierung */
.lvl7cm-req {
	color: var(--lvl7cm-accent);
	font-weight: 700;
}

/* Hinweis für Kunden ohne Bestellung */
.lvl7cm-no-order {
	margin-top: 1rem;
	padding: 16px 18px;
	background: var(--lvl7cm-bg-2);
	border: 1px solid var(--lvl7cm-border);
	border-left: 3px solid var(--lvl7cm-accent);
	border-radius: 8px;
	font-family: "Manrope", sans-serif;
	color: var(--lvl7cm-text);
	line-height: 1.55;
}

/* ----- Anzeigebild ----- */
.lvl7cm-account-form .lvl7cm-avatar-row {
	display: flex !important;
	gap: 16px;
	align-items: center;
}

.lvl7cm-avatar-preview {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--lvl7cm-bg-2) center/cover no-repeat;
	border: 2px solid var(--lvl7cm-accent);
}

.lvl7cm-avatar-preview.is-empty {
	background-image: none;
}

.lvl7cm-account-form .lvl7cm-avatar-controls {
	flex: 1 1 auto;
	min-width: 0;
}

/* Datei-Input als gebrandeter Button */
.lvl7cm-account-form input[type="file"] {
	width: auto !important;
	max-width: 100%;
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
	font-family: "Manrope", sans-serif;
	font-size: .88rem;
	color: var(--lvl7cm-text);
}

.lvl7cm-account-form input[type="file"]::file-selector-button {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	color: var(--lvl7cm-heading);
	background: var(--lvl7cm-bg-2);
	border: 1px solid var(--lvl7cm-border);
	border-radius: 8px;
	padding: .5rem .9rem;
	margin-right: 10px;
	cursor: pointer;
	transition: border-color .15s ease, color .15s ease;
}

.lvl7cm-account-form input[type="file"]::file-selector-button:hover {
	border-color: var(--lvl7cm-accent);
	color: var(--lvl7cm-accent);
}

.lvl7cm-account-form .lvl7cm-avatar-remove {
	margin-top: 8px !important;
	font-size: .9rem;
}

/* ----- Standort: Land + PLZ/Stadt ----- */
.lvl7cm-account-form .lvl7cm-country-select {
	margin-bottom: 12px;
	cursor: pointer;
}

.lvl7cm-account-form .lvl7cm-location-row {
	display: flex !important;
	gap: 12px;
}

.lvl7cm-account-form .lvl7cm-location-row #lvl7cm_plz {
	flex: 0 0 130px;
	width: 130px !important;
}

.lvl7cm-account-form .lvl7cm-location-row #lvl7cm_city {
	flex: 1 1 auto;
	width: auto !important;
}

@media (max-width: 480px) {
	.lvl7cm-account-form .lvl7cm-location-row {
		flex-wrap: wrap;
	}
	.lvl7cm-account-form .lvl7cm-location-row #lvl7cm_plz {
		flex: 1 1 100%;
		width: 100% !important;
	}
}

/* ----- Premium-Block ----- */
.lvl7cm-premium {
	border: 1px solid var(--lvl7cm-border);
	border-radius: 10px;
	padding: 1rem 1.1rem;
	margin: 0 0 1.5rem;
	background: var(--lvl7cm-bg-2);
}

.lvl7cm-premium legend {
	font-family: "Bebas Neue", sans-serif;
	letter-spacing: .04em;
	font-size: 1.2rem;
	color: var(--lvl7cm-heading);
	padding: 0 .4rem;
}

.lvl7cm-badge {
	display: inline-block;
	font-family: "Manrope", sans-serif;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--lvl7cm-accent);
	padding: .15rem .5rem;
	border-radius: 999px;
	vertical-align: middle;
	margin-left: .4rem;
}

/* ----- Submit ----- */
.lvl7cm-account-form .lvl7cm-submit {
	background: var(--lvl7cm-accent);
	border: none;
	color: #fff;
	font-family: "Bebas Neue", sans-serif;
	letter-spacing: .06em;
	font-size: 1.05rem;
	padding: .75rem 2rem;
	border-radius: 8px;
	cursor: pointer;
	transition: background .15s ease;
}

.lvl7cm-account-form .lvl7cm-submit:hover {
	background: var(--lvl7cm-accent-hover);
	color: #fff;
}

/* =====================================================================
   Account-Menü: Globus-Icon für den "Community-Karte"-Tab
   (auf allen Account-Seiten geladen)
   ===================================================================== */
.woocommerce-MyAccount-navigation-link--community-map a::before {
	content: "" !important;
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -.1em;
	background-color: currentColor !important;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M3 12h18M12 3c2.6 2.6 2.6 15.4 0 18M12 3c-2.6 2.6-2.6 15.4 0 18' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat !important;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M3 12h18M12 3c2.6 2.6 2.6 15.4 0 18M12 3c-2.6 2.6-2.6 15.4 0 18' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

/* ---------- Layout: Karte + Sidebar ---------- */
/* Mobile-first: gestapelt, eine Spalte. */
.lvl7cm-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lvl7cm-wrap .lvl7cm-map {
	flex: 0 0 auto;
	margin: 0;
}

.lvl7cm-sidebar {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--lvl7cm-border);
	border-radius: 10px;
	background: var(--lvl7cm-bg);
	overflow: hidden;
}

/* Einladende Headline über Filtern + Visitenkarten */
.lvl7cm-searchhead {
	flex: 0 0 auto;
	padding: 14px 14px 4px;
}

.lvl7cm-searchhead__title {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.5rem;
	letter-spacing: .03em;
	line-height: 1.05;
	color: var(--lvl7cm-heading);
}

.lvl7cm-searchhead__sub {
	margin: 3px 0 0;
	font-family: "Manrope", sans-serif;
	font-size: .82rem;
	line-height: 1.35;
	color: var(--lvl7cm-text);
	opacity: .75;
}

/* Desktop: nebeneinander. Die Karte streckt sich per Flex auf die Sidebar-Höhe
   (= Filter + 5 Karten-Reihen). Visitenkarten in zwei Spalten. */
@media (min-width: 992px) {
	.lvl7cm-wrap {
		flex-direction: row;
		align-items: stretch;
	}
	.lvl7cm-wrap .lvl7cm-map {
		flex: 1 1 auto;
	}
	.lvl7cm-sidebar {
		flex: 0 0 640px;
	}
}

/* Drag-Griff nur im mobilen Bottom-Sheet sichtbar */
.lvl7cm-sheet-handle {
	display: none;
}

/* Seite nicht scrollen, solange das Bottom-Sheet aufgezogen ist */
body.lvl7cm-sheet-open {
	overflow: hidden;
}

/* ---------- Mobile: Bottom-Sheet (Karte vollflächig, Liste als Panel) ---------- */
@media (max-width: 991px) {
	.lvl7cm-wrap {
		position: relative;
		height: 78vh;
		height: 78dvh; /* berücksichtigt iOS-Adressleiste */
		min-height: 480px;
		gap: 0;
		overflow: hidden;
		border-radius: 12px;
	}

	.lvl7cm-wrap .lvl7cm-map {
		position: absolute;
		inset: 0;
		z-index: 1; /* unter dem Sheet */
		width: 100%;
		height: 100%;
		min-height: 0;
		border-radius: 12px;
	}

	.lvl7cm-sidebar {
		position: fixed; /* am Viewport verankert -> Pagination immer unten erreichbar */
		left: 0;
		right: 0;
		bottom: 0;
		/* ~eine Visitenkarte kürzer (−100px), damit mehr Karte sichtbar bleibt.
		   dvh statt vh wegen iOS-Adressleiste. */
		height: calc(85vh - 100px);
		height: calc(85dvh - 100px);
		max-height: calc(85vh - 100px);
		max-height: calc(85dvh - 100px);
		background: var(--lvl7cm-bg);
		border-radius: 18px 18px 0 0;
		border: 1px solid var(--lvl7cm-border);
		border-bottom: 0;
		box-shadow: 0 -8px 30px rgba(21, 22, 22, .18);
		/* Peek: Handle + Headline + Filter + Zähler sichtbar, Rest der Liste angedeutet */
		transform: translateY(calc(100% - 250px));
		transition: transform .3s cubic-bezier(.32, .72, 0, 1);
		z-index: 100; /* über Karte + Seiteninhalt/Footer, aber unter dem Mobile-Menü */
		overflow: hidden;
		touch-action: none; /* Kopfbereich per JS ziehbar; Liste überschreibt mit pan-y */
		-webkit-user-select: none;
		user-select: none; /* keine versehentliche Textmarkierung beim Ziehen */
		-webkit-touch-callout: none;
	}

	/* Eingeklappt: Liste nicht antippbar, damit ein Tap auf den Sheet-Rand
	   ausklappt statt die (leicht sichtbare) erste Karte zu treffen. */
	.lvl7cm-sidebar:not(.is-expanded) .lvl7cm-cards {
		pointer-events: none;
	}

	.lvl7cm-sidebar.is-expanded {
		transform: translateY(0);
	}

	.lvl7cm-sidebar.is-hidden {
		transform: translateY(100%) !important;
	}

	.lvl7cm-sidebar.is-dragging {
		transition: none;
	}

	.lvl7cm-sheet-handle {
		display: block;
		flex: 0 0 auto;
		height: 24px;
		position: relative;
		cursor: grab;
		touch-action: none;
	}

	.lvl7cm-sheet-handle::before {
		content: "";
		position: absolute;
		top: 9px;
		left: 50%;
		transform: translateX(-50%);
		width: 44px;
		height: 4px;
		border-radius: 999px;
		background: #d9d4cb;
	}

	/* Liste scrollt INNERHALB des Sheets (gewolltes Bottom-Sheet-Verhalten).
	   Über `.lvl7cm-sidebar ...` gescoped (nicht `.lvl7cm-wrap`), damit es auch greift,
	   wenn das Sheet auf Mobile an den <body> portiert wird. */
	.lvl7cm-sidebar .lvl7cm-cards {
		grid-template-columns: 1fr;
		grid-auto-rows: 90px;
		min-height: 0;
		flex: 1 1 auto;
		overflow-y: auto;
		overscroll-behavior: contain; /* kein Durchscrollen auf die Karte/Seite */
		-webkit-overflow-scrolling: touch;
		touch-action: pan-y; /* Liste vertikal scrollbar */
	}
}

.lvl7cm-filters {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
	border-bottom: 1px solid var(--lvl7cm-border);
}

.lvl7cm-filter {
	width: 100%;
	padding: .55rem .7rem;
	border: 1px solid var(--lvl7cm-border);
	border-radius: 8px;
	background: var(--lvl7cm-bg);
	color: var(--lvl7cm-text);
	font-family: "Manrope", sans-serif;
	box-sizing: border-box;
	cursor: pointer;
}

.lvl7cm-filter:focus {
	outline: none;
	border-color: var(--lvl7cm-accent);
}

.lvl7cm-count {
	padding: 10px 14px;
	font-family: "Manrope", sans-serif;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--lvl7cm-text);
	border-bottom: 1px solid var(--lvl7cm-border);
}

.lvl7cm-count:empty {
	display: none;
}

/* Visitenkarten-Raster: mobil eine Spalte (fließend), Desktop zwei Spalten
   mit fest reservierter 5-Reihen-Höhe -> kein Scrollen. */
.lvl7cm-cards {
	flex: 0 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: 90px;
	gap: 8px;
	padding: 8px;
	align-content: start;
}

@media (min-width: 992px) {
	.lvl7cm-cards {
		grid-template-columns: 1fr 1fr;
		min-height: 498px; /* 5 Reihen × 90px + Gaps + Padding */
		overflow: hidden;
	}
}

.lvl7cm-empty {
	padding: 18px;
	text-align: center;
	color: #9a958c;
	font-family: "Manrope", sans-serif;
}

.lvl7cm-pagination {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	padding: 10px 8px;
	border-top: 1px solid var(--lvl7cm-border);
}

/* Buttons gegen Astras globale .button/button-Styles absichern (!important) */
.lvl7cm-pagination .lvl7cm-page {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 34px !important;
	width: auto !important;
	height: 34px !important;
	margin: 0 !important;
	padding: 0 7px !important;
	border: 1px solid var(--lvl7cm-border) !important;
	border-radius: 8px !important;
	background: var(--lvl7cm-bg) !important;
	color: var(--lvl7cm-text) !important;
	font-family: "Manrope", sans-serif !important;
	font-weight: 600 !important;
	font-size: .85rem !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.lvl7cm-pagination .lvl7cm-page:hover:not(:disabled):not(.is-active) {
	background: var(--lvl7cm-bg) !important;
	border-color: var(--lvl7cm-accent) !important;
	color: var(--lvl7cm-accent) !important;
}

.lvl7cm-pagination .lvl7cm-page.is-active {
	background: var(--lvl7cm-accent) !important;
	border-color: var(--lvl7cm-accent) !important;
	color: #fff !important;
	cursor: default;
}

.lvl7cm-pagination .lvl7cm-page:disabled {
	opacity: .4 !important;
	cursor: default;
}

.lvl7cm-page-ellipsis {
	min-width: 18px;
	text-align: center;
	align-self: center;
	color: #9a958c;
}

/* ---------- Visitenkarten ---------- */
.lvl7cm-card {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 90px;
	padding: 10px;
	margin: 0;
	border-radius: 10px;
	background: var(--lvl7cm-bg-2);
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow .15s ease;
}

.lvl7cm-card:hover {
	box-shadow: 0 2px 10px rgba(21, 22, 22, .12);
}

.lvl7cm-card__avatar {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--lvl7cm-bg-2) center/cover no-repeat;
	border: 2px solid var(--lvl7cm-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.25rem;
	color: var(--lvl7cm-heading);
}

.lvl7cm-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.lvl7cm-card__name {
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	color: var(--lvl7cm-heading);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lvl7cm-card__car {
	font-family: "Manrope", sans-serif;
	font-size: .8rem;
	color: var(--lvl7cm-text);
	opacity: .75;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lvl7cm-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 2px;
}

/* Social-Links als Icons */
.lvl7cm-soc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #fff;
	background: var(--lvl7cm-accent);
	text-decoration: none;
	transition: background .15s ease;
}

.lvl7cm-soc:hover {
	background: var(--lvl7cm-accent-hover);
	color: #fff;
}

.lvl7cm-soc svg {
	width: 14px;
	height: 14px;
	display: block;
}

/* ---------- Neueste Mitglieder (Standalone-Grid, z.B. Community-Seite) ---------- */
.lvl7cm-latest {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 12px;
}

.lvl7cm-latest .lvl7cm-card {
	cursor: default;
	background: var(--lvl7cm-bg);
	border: 1px solid var(--lvl7cm-border);
	transition: transform .15s ease, box-shadow .15s ease;
}

.lvl7cm-latest .lvl7cm-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(21, 22, 22, .1);
}

/* ---------- Gebrandete Pins (DivIcon) ---------- */
.lvl7cm-pin-wrap {
	background: none;
	border: 0;
}

.lvl7cm-pin {
	position: relative;
	width: 46px;
	height: 46px;
}

.lvl7cm-pin::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 14px;
	height: 14px;
	transform: translateX(-50%) rotate(45deg);
	background: var(--lvl7cm-accent);
	border-radius: 0 0 3px 0;
	z-index: -1;
}

.lvl7cm-pin__img {
	display: block;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 3px solid var(--lvl7cm-accent);
	box-shadow: 0 2px 8px rgba(21, 22, 22, .3);
	background: var(--lvl7cm-bg-2) center/cover no-repeat;
}

.lvl7cm-pin__img--ph {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.3rem;
	color: var(--lvl7cm-heading);
}

/* ---------- Popup mit Avatar ---------- */
.lvl7cm-popup {
	text-align: center;
}

.lvl7cm-popup__av {
	width: 54px;
	height: 54px;
	margin: 0 auto 8px;
	border-radius: 50%;
	border: 2px solid var(--lvl7cm-accent);
	background: var(--lvl7cm-bg-2) center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.45rem;
	color: var(--lvl7cm-heading);
}

.lvl7cm-popup__car {
	display: block;
	font-family: "Manrope", sans-serif;
	font-size: .85rem;
	color: var(--lvl7cm-text);
	opacity: .8;
	margin: 2px 0 8px;
}

.lvl7cm-popup__links {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

/* ---------- Cluster im Brand-Look ---------- */
.lvl7cm-wrap .marker-cluster {
	background: rgba(211, 184, 125, .35);
}

.lvl7cm-wrap .marker-cluster div {
	background: var(--lvl7cm-accent);
	color: var(--lvl7cm-heading);
	font-family: "Manrope", sans-serif;
	font-weight: 700;
}
