/* ----------------------------------------------------
   StreetTrekker Single Place — Functional Hero + Gallery
---------------------------------------------------- */

/* ----------------------------------------------------
   Design Tokens
---------------------------------------------------- */

.st-place-single {
	--st-bg: #f6f1e8;
	--st-surface: #fffaf2;
	--st-surface-soft: #fbf4e8;
	--st-text: #181512;
	--st-text-muted: #312c25;
	--st-text-faint: #6f6a60;
	--st-accent: #b84e1f;
	--st-accent-hover: #9f4219;
	--st-accent-light: rgba(184, 78, 31, 0.42);
	--st-border: rgba(24, 21, 18, 0.12);
	--st-border-strong: rgba(24, 21, 18, 0.16);
	--st-shadow-hero: 0 18px 50px rgba(42, 32, 23, 0.10);
	--st-shadow-tile: 0 8px 20px rgba(24, 21, 18, 0.11);
	--st-radius-shell: 10px;
	--st-radius-tile: 7px;
	--st-radius-btn: 7px;
	--st-transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

	background: var(--st-bg);
	min-height: 70vh;
	color: var(--st-text);
}

/* ----------------------------------------------------
   Shell
---------------------------------------------------- */

.st-place-shell {
	width: min(1320px, calc(100% - 48px));
	max-width: 1320px;
	margin: 0 auto;
	padding: 24px 0 72px;
}

/* ----------------------------------------------------
   Breadcrumbs
---------------------------------------------------- */

.st-breadcrumbs {
	margin: 0 0 17px;
	padding: 0;
	font-size: 0.8rem;
	color: var(--st-text-faint);
}

.st-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	line-height: 1.4;
}

.st-breadcrumbs__item:not(:last-child)::after {
	content: "›";
	color: var(--st-accent);
	font-weight: 800;
}

.st-breadcrumbs a {
	color: var(--st-text-faint);
	text-decoration: none;
	transition: color var(--st-transition);
}

.st-breadcrumbs a:hover,
.st-breadcrumbs a:focus {
	color: var(--st-accent-hover);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.st-breadcrumbs span[aria-current="page"] {
	color: var(--st-text);
	font-weight: 800;
}

/* ----------------------------------------------------
   Hero
---------------------------------------------------- */

.st-place-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.59fr) minmax(0, 0.41fr);
	align-items: stretch;
	min-height: 440px;
	border-radius: var(--st-radius-shell);
	background: var(--st-surface);
	border: 1px solid rgba(65, 49, 36, 0.07);
	box-shadow:
		var(--st-shadow-hero),
		0 1px 0 rgba(255, 255, 255, 0.75) inset;
	overflow: visible;
}

.st-place-hero__content {
	position: relative;
	z-index: 3;
	max-width: 720px;
	padding: 44px 34px 42px 40px;
	align-self: center;
}

.st-place-hero__media {
	position: relative;
	z-index: 1;
	width: 100%;
	min-width: 0;
	min-height: 440px;
	overflow: hidden;
	border-radius: 0 var(--st-radius-shell) var(--st-radius-shell) 0;
}

/* ----------------------------------------------------
   Pills
---------------------------------------------------- */

.st-place-pills {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 100%;
	margin: 0 0 16px;
	vertical-align: top;
}

.st-place-pills--age {
	margin-left: 8px;
}

.st-place-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid var(--st-border);
	color: #453d34;
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1;
}

.st-place-age-pill {
	position: relative;
	background: rgba(184, 78, 31, 0.10);
	border-color: rgba(184, 78, 31, 0.26);
	color: var(--st-accent-hover);
	outline: none;
}

.st-place-age-pill.has-popover {
	cursor: help;
}

.st-place-age-pill:focus-visible {
	box-shadow: 0 0 0 3px rgba(184, 78, 31, 0.16);
}

.st-place-age-popover {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 0;
	z-index: 20;
	width: max-content;
	max-width: 280px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #181512;
	color: #fffaf2;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.35;
	box-shadow: 0 14px 34px rgba(24, 21, 18, 0.22);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition:
		opacity var(--st-transition),
		transform var(--st-transition);
}

.st-place-age-popover::before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 18px;
	width: 10px;
	height: 10px;
	background: #181512;
	transform: rotate(45deg);
}

.st-place-age-pill:hover .st-place-age-popover,
.st-place-age-pill:focus .st-place-age-popover,
.st-place-age-pill:focus-within .st-place-age-popover {
	opacity: 1;
	transform: translateY(0);
}

/* ----------------------------------------------------
   Title & Teaser
---------------------------------------------------- */

.st-place-title {
	margin: 0;
	max-width: 680px;
	font-family: var(--st-font-display);
	font-size: clamp(2.05rem, 2.55vw, 2.75rem);
	line-height: 1.02;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--st-text);
}

.st-place-teaser {
	max-width: 500px;
	margin: 18px 0 0;
	font-size: 1.1rem;
	line-height: 1.58;
	color: var(--st-text-muted);
}

/* ----------------------------------------------------
   Location Line
---------------------------------------------------- */

.st-place-location-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin: 22px 0 0;
	color: var(--st-text);
	font-size: 0.9rem;
	font-weight: 700;
}

.st-place-location-line > :not(.st-place-location-icon) {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.st-place-location-line > :not(.st-place-location-icon):not(:last-child)::after {
	content: "•";
	margin-left: 6px;
	color: var(--st-accent);
}

.st-place-location-icon {
	color: var(--st-accent);
	font-size: 0.78rem;
	line-height: 1;
}

.st-place-weather-icon {
	margin-left: 2px;
	color: var(--st-accent-hover);
	font-size: 0.88rem;
	line-height: 1;
}

.st-place-distance {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.st-place-distance:hover,
.st-place-distance:focus {
	color: var(--st-accent-hover);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.st-place-distance:disabled {
	cursor: default;
}

.st-place-distance.is-ready:hover,
.st-place-distance.is-ready:focus {
	color: inherit;
	text-decoration: none;
}

/* ----------------------------------------------------
   Actions / Buttons
---------------------------------------------------- */

.st-place-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 24px 0 0;
	max-width: 610px;
}

.st-place-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 44px;
	min-width: 0;
	padding: 0 22px;
	border-radius: var(--st-radius-btn);
	border: 1px solid var(--st-border-strong);
	background: rgba(255, 255, 255, 0.7);
	color: var(--st-text);
	font-size: 0.85rem;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: 0 2px 0 rgba(24, 21, 18, 0.04);
	transition:
		background var(--st-transition),
		border-color var(--st-transition),
		color var(--st-transition),
		box-shadow var(--st-transition),
		transform var(--st-transition);
}

.st-place-button:hover,
.st-place-button:focus {
	transform: translateY(-1px);
}

.st-place-button--primary {
	background: var(--st-accent);
	border-color: var(--st-accent);
	color: #fff;
	box-shadow: 0 9px 20px rgba(184, 78, 31, 0.18);
}

.st-place-button--bookmark,
.st-place-button--secondary:last-child {
	min-width: 0;
}

.st-place-button--secondary:hover,
.st-place-button--secondary:focus {
	background: #ffffff;
	border-color: var(--st-accent-light);
	color: var(--st-accent);
}

.st-place-button--primary:hover,
.st-place-button--primary:focus {
	background: var(--st-accent-hover);
	border-color: var(--st-accent-hover);
	color: #fff;
}

.st-place-button.is-disabled {
	opacity: 0.48;
	pointer-events: none;
}

.st-place-button-icon {
	font-size: 0.88rem;
	line-height: 1;
}

/* ----------------------------------------------------
   Map Modal
---------------------------------------------------- */

.st-place-map-is-open {
	overflow: hidden;
}

.st-place-map-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.st-place-map-modal[hidden] {
	display: none;
}

.st-place-map-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(24, 21, 18, 0.58);
	backdrop-filter: blur(4px);
}

.st-place-map-modal__panel {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	max-height: min(760px, calc(100vh - 48px));
	overflow: hidden;
	border-radius: 10px;
	background: var(--st-surface);
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 24px 70px rgba(24, 21, 18, 0.34);
}

.st-place-map-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--st-border);
}

.st-place-map-modal__header h2 {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-family: var(--st-font-display);
	font-size: 1.25rem;
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--st-text);
}

.st-place-map-modal__nearby-toggle {
	flex: 0 0 auto;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid rgba(193, 83, 33, 0.28);
	border-radius: var(--st-radius-btn);
	background: rgba(193, 83, 33, 0.08);
	color: var(--st-accent);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 900;
	cursor: pointer;
}

.st-place-map-modal__nearby-toggle[aria-pressed="true"] {
	background: var(--st-accent);
	color: #fff;
}

.st-place-map-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--st-border-strong);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--st-text);
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
}

.st-place-map-modal__close:hover,
.st-place-map-modal__close:focus {
	border-color: var(--st-accent-light);
	color: var(--st-accent-hover);
}

.st-place-map-modal__map {
	display: block;
	width: 100%;
	height: min(640px, calc(100vh - 150px));
	min-height: 420px;
	background: var(--st-surface-soft);
}

.st-place-map-modal__map .leaflet-popup-content-wrapper {
	border-radius: 8px;
	font-family: var(--st-font-sans);
	color: var(--st-text);
	overflow: hidden;
	padding: 0;
}

.st-place-map-modal__map .leaflet-popup-content {
	width: 280px !important;
	margin: 0;
}

.st-map-popup {
	overflow: hidden;
	background: var(--st-surface);
}

.st-map-popup__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: var(--st-surface-soft);
}

.st-map-popup__body {
	padding: 12px;
}

.st-map-popup__title {
	margin: 0;
	font-family: var(--st-font-display);
	font-size: 1.08rem;
	line-height: 1.12;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--st-text);
}

.st-map-popup__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 8px 0 0;
}

.st-map-popup__pills .st-place-pills {
	display: contents;
	margin: 0;
}

.st-map-popup__pills .st-place-pill {
	padding: 4px 7px;
	font-size: 0.68rem;
	line-height: 1;
}

.st-map-popup__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 7px;
	margin: 10px 0 0;
	color: var(--st-text-muted);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.35;
}

.st-map-popup__meta span:not(:last-child)::after {
	content: "•";
	margin-left: 7px;
	color: var(--st-accent);
}

.st-map-popup__route {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	margin-top: 12px;
	border: 1px solid var(--st-accent);
	border-radius: var(--st-radius-btn);
	background: var(--st-accent);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 900;
	cursor: pointer;
}

.st-map-popup__route:hover,
.st-map-popup__route:focus {
	background: var(--st-accent);
	color: #fff;
}

.st-map-popup__route.is-error {
	border-color: #b3261e;
	background: #fff4f2;
	color: #9c261b;
}

.st-map-popup__route:disabled {
	cursor: default;
	opacity: 0.78;
}

.st-map-nearby-marker {
	position: relative;
	display: block;
	width: 46px !important;
	height: 46px !important;
	border: 0;
	background: transparent;
}

.st-map-nearby-marker span {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 18px;
	height: 18px;
	border: 3px solid #fff;
	border-radius: 999px;
	background: var(--st-accent);
	box-shadow:
		0 0 0 5px rgba(255, 255, 255, 0.55),
		0 8px 20px rgba(28, 22, 17, 0.34);
	transform: translate(-50%, -50%);
}

.st-map-nearby-marker span::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 34px;
	height: 34px;
	border: 2px solid rgba(255, 255, 255, 0.95);
	border-radius: inherit;
	background: rgba(193, 83, 33, 0.26);
	box-shadow: 0 0 0 1px rgba(193, 83, 33, 0.32);
	transform: translate(-50%, -50%);
	animation: st-map-nearby-pulse 1.45s ease-out infinite;
}

.st-map-nearby-marker span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 44px;
	height: 44px;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: inherit;
	transform: translate(-50%, -50%);
	animation: st-map-nearby-pulse 1.45s ease-out 0.28s infinite;
}

@keyframes st-map-nearby-pulse {
	0% {
		transform: translate(-50%, -50%) scale(0.58);
		opacity: 0.95;
	}

	70% {
		transform: translate(-50%, -50%) scale(1.35);
		opacity: 0;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.35);
		opacity: 0;
	}
}

.st-monument-marker {
	border: 0;
	background: transparent;
	overflow: visible;
}

.st-monument-marker__pin {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 0;
	display: block;
	width: 25px;
	height: 41px;
	filter: drop-shadow(0 4px 5px rgba(22, 31, 38, 0.38));
	transform: translateX(-50%);
}

.st-monument-marker__pulse {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 13px;
	display: block;
	width: 20px;
	height: 20px;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.st-monument-marker__pulse::before,
.st-monument-marker__pulse::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid rgba(33, 132, 191, 0.9);
	border-radius: 999px;
	background: rgba(33, 132, 191, 0.16);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.68);
	animation: st-monument-marker-pulse 1.6s ease-out infinite;
	will-change: transform, opacity;
}

.st-monument-marker__pulse::after {
	animation-delay: 0.8s;
}

@keyframes st-monument-marker-pulse {
	0% {
		transform: scale(0.65);
		opacity: 0.95;
	}

	75%,
	100% {
		transform: scale(2.35);
		opacity: 0;
	}
}

.st-place-map-modal__map .st-map-nearby-popup-leaflet .leaflet-popup-content {
	width: 210px !important;
}

.st-map-nearby-popup {
	display: grid;
	gap: 9px;
	padding: 8px;
	color: var(--st-text);
}

.st-map-nearby-popup__link {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.st-map-nearby-popup__image {
	display: block;
	width: 70px;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	object-fit: cover;
	background: var(--st-surface-soft);
}

.st-map-nearby-popup__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.st-map-nearby-popup__body strong {
	color: var(--st-text);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.16;
}

.st-map-nearby-popup__body span {
	color: var(--st-accent);
	font-size: 0.76rem;
	font-weight: 850;
	line-height: 1.2;
}

.st-map-nearby-popup__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
}

.st-map-nearby-popup__modes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 5px;
}

.st-map-nearby-popup__mode {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 7px;
	border: 1px solid var(--st-border);
	border-radius: var(--st-radius-btn);
	background: #fff;
	color: var(--st-text-muted);
	font: inherit;
	font-size: 0.72rem;
	font-weight: 900;
	cursor: pointer;
}

.st-map-nearby-popup__mode.is-active {
	border-color: var(--st-accent);
	background: rgba(193, 83, 33, 0.1);
	color: var(--st-accent);
}

.st-map-nearby-popup__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 9px;
	border: 1px solid var(--st-border);
	border-radius: var(--st-radius-btn);
	background: #fff;
	color: var(--st-text);
	font: inherit;
	font-size: 0.75rem;
	font-weight: 900;
	cursor: pointer;
}

.st-map-nearby-popup__action--primary {
	border-color: var(--st-accent);
	background: var(--st-accent);
	color: #fff;
}

.st-map-nearby-popup__action.is-error {
	border-color: #b3261e;
	background: #fff4f2;
	color: #9c261b;
}

.st-map-nearby-popup__action:disabled {
	cursor: default;
	opacity: 0.72;
}

/* ----------------------------------------------------
   Hero Media
---------------------------------------------------- */

.st-place-hero-media-card {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 0;
	background: #151515;
	box-shadow: none;
}

.st-place-hero-media-card--image::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			var(--st-surface) 0%,
			rgba(255, 250, 242, 0.94) 9%,
			rgba(255, 250, 242, 0.62) 24%,
			rgba(255, 250, 242, 0) 48%
		),
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.02) 0%,
			rgba(0, 0, 0, 0.08) 100%
		);
}

.st-place-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* ----------------------------------------------------
   Hero Video
   Kein schwarzer Rahmen, keine Browser-Controls.
---------------------------------------------------- */

.st-place-hero-media-card--video {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 34%),
		linear-gradient(135deg, #efe6d8 0%, #d8c8b6 100%);
	overflow: hidden;
}

.st-place-hero-media-card--video::before {
	content: "";
	position: absolute;
	inset: -24px;
	z-index: 0;
	background-image: var(--st-video-poster);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	filter: blur(34px);
	transform: scale(1.14);
	opacity: 0.78;
	pointer-events: none;
}

.st-place-hero-media-card--video:not([style])::before {
	background:
		radial-gradient(circle at 45% 36%, rgba(255, 255, 255, 0.28), transparent 34%),
		linear-gradient(135deg, #efe6d8 0%, #cdbca8 100%);
	filter: none;
	transform: none;
	opacity: 1;
}

.st-place-hero-media-card--video::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	background:
		linear-gradient(
			90deg,
			var(--st-surface) 0%,
			rgba(255, 250, 242, 0.98) 12%,
			rgba(255, 250, 242, 0.78) 28%,
			rgba(255, 250, 242, 0.22) 46%,
			rgba(255, 250, 242, 0) 64%
		),
		radial-gradient(
			circle at 18% 52%,
			rgba(255, 250, 242, 0.82) 0%,
			rgba(255, 250, 242, 0.42) 22%,
			rgba(255, 250, 242, 0) 46%
		);
	pointer-events: none;
}

.st-place-hero-video {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	background: transparent;
}

.js-st-video-card.is-landscape-video .st-place-hero-video {
	object-fit: cover;
}

.js-st-video-card.is-portrait-video .st-place-hero-video,
.js-st-video-card.is-square-video .st-place-hero-video {
	position: relative;
	inset: auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	background: transparent;
}

.st-place-hero-video-open {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.76);
	border-radius: 999px;
	background: var(--st-accent);
	color: #fff;
	cursor: pointer;
	box-shadow:
		0 18px 40px rgba(184, 78, 31, 0.38),
		0 0 0 0 rgba(184, 78, 31, 0.46);
	transform: translate(-50%, -50%);
	animation: st-hero-play-pulse 1.9s ease-out infinite;
	transition:
		background var(--st-transition),
		box-shadow var(--st-transition),
		transform var(--st-transition);
}

.st-place-hero-video-open:hover,
.st-place-hero-video-open:focus {
	background: var(--st-accent-hover);
	box-shadow:
		0 18px 42px rgba(184, 78, 31, 0.44),
		0 0 0 10px rgba(184, 78, 31, 0.16);
	transform: translate(-50%, -50%) scale(1.05);
	outline: none;
}

.st-place-hero-video-open__icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 5px;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 25px solid #fff;
}

@keyframes st-hero-play-pulse {
	0% {
		box-shadow:
			0 18px 40px rgba(184, 78, 31, 0.38),
			0 0 0 0 rgba(184, 78, 31, 0.52);
	}

	70% {
		box-shadow:
			0 18px 40px rgba(184, 78, 31, 0.38),
			0 0 0 24px rgba(184, 78, 31, 0);
	}

	100% {
		box-shadow:
			0 18px 40px rgba(184, 78, 31, 0.38),
			0 0 0 0 rgba(184, 78, 31, 0);
	}
}

.st-place-hero-video::-webkit-media-controls,
.st-place-hero-video::-webkit-media-controls-enclosure,
.st-place-hero-video::-webkit-media-controls-panel,
.st-place-hero-video::-webkit-media-controls-play-button,
.st-place-hero-video::-webkit-media-controls-start-playback-button {
	display: none !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* ----------------------------------------------------
   Medienleiste / Galerie
---------------------------------------------------- */

.st-place-media-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	margin: 12px 0 0;
	width: 100%;
}

.st-place-media-tile {
	position: relative;
	display: block;
	width: 100%;
	height: clamp(88px, 10.4vw, 142px);
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: var(--st-radius-tile);
	background: #111;
	cursor: pointer;
	box-shadow: var(--st-shadow-tile);
	text-decoration: none;
}

.st-place-media-tile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	will-change: transform;
	transition: transform 0.25s ease;
}

.st-place-media-tile:hover img,
.st-place-media-tile:focus img {
	transform: none;
}

.st-place-media-tile--video::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.22);
	pointer-events: none;
}

.st-place-media-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at center, rgba(255,255,255,0.18), transparent 36%),
		linear-gradient(135deg, #2d2a25, #111);
}

.st-place-play-badge {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.58);
	transform: translate(-50%, -50%);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
	pointer-events: none;
}

.st-place-play-badge span {
	display: block;
	width: 0;
	height: 0;
	margin-left: 4px;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #fff;
}

.st-place-media-label {
	position: absolute;
	z-index: 3;
	left: 12px;
	bottom: 10px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 900;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.st-place-media-more {
	position: absolute;
	z-index: 4;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 12px;
	background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.68));
	color: #fff;
	font-size: 0.68rem;
	font-weight: 900;
	text-align: center;
}

.st-place-media-strip .st-place-media-tile:only-child {
	max-width: 300px;
}

/* ----------------------------------------------------
   Lightbox
---------------------------------------------------- */

body.st-gallery-is-open {
	overflow: hidden;
}

.st-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 56px 84px;
	background: rgba(5, 8, 10, 0.94);
}

.st-gallery-lightbox[hidden] {
	display: none;
}

.st-gallery-lightbox__nav[hidden] {
	display: none;
}

.st-gallery-lightbox__stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.st-gallery-lightbox__image,
.st-gallery-lightbox__video {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
}

.st-gallery-lightbox__video {
	width: auto;
	height: 100%;
	background: #000;
}

.st-gallery-lightbox__image[hidden],
.st-gallery-lightbox__video[hidden] {
	display: none;
}

.st-gallery-lightbox__close,
.st-gallery-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.46);
	color: #fff;
	cursor: pointer;
	transition:
		background var(--st-transition),
		border-color var(--st-transition),
		transform var(--st-transition);
}

.st-gallery-lightbox__close:hover,
.st-gallery-lightbox__close:focus,
.st-gallery-lightbox__nav:hover,
.st-gallery-lightbox__nav:focus {
	background: rgba(184, 78, 31, 0.92);
	border-color: rgba(255, 255, 255, 0.58);
}

.st-gallery-lightbox__close {
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	font-size: 1.7rem;
	line-height: 1;
}

.st-gallery-lightbox__nav {
	top: 50%;
	width: 52px;
	height: 52px;
	font-size: 2.1rem;
	line-height: 1;
	transform: translateY(-50%) rotate(0deg);
	transition:
		background 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 220ms ease;
}

.st-gallery-lightbox__nav:hover,
.st-gallery-lightbox__nav:focus {
	transform: translateY(-50%) scale(1.04);
}

.st-gallery-lightbox__nav--prev {
	left: 18px;
}

.st-gallery-lightbox__nav--next {
	right: 18px;
}

.st-gallery-lightbox__counter {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 2;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.56);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	transform: translateX(-50%);
}

/* ----------------------------------------------------
   Body
---------------------------------------------------- */

.st-place-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	align-items: start;
	column-gap: 12px;
	row-gap: 12px;
	margin: 46px 0 0;
}

.st-place-main-content {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	min-width: 0;
}

.st-place-side--left {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

.st-place-side--right {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.st-place-side {
	display: grid;
	gap: 10px;
	align-content: start;
}

.st-place-info-card,
.st-place-content-panel {
	border: 1px solid rgba(65, 49, 36, 0.09);
	border-radius: 8px;
	background: rgba(255, 250, 242, 0.74);
	box-shadow: 0 10px 28px rgba(42, 32, 23, 0.06);
}

.st-place-info-card {
	padding: 14px;
}

.st-place-content-panel {
	padding: 24px 26px 26px;
}

.st-place-info-card h2,
.st-place-content-panel h2 {
	margin: 0 0 14px;
	font-size: 0.98rem;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--st-text);
}

.st-place-content-panel h2 {
	font-family: var(--st-font-display);
	font-size: 1.28rem;
}

.st-place-content {
	max-width: 760px;
	font-family: var(--st-font-ui);
	font-size: 1rem;
	line-height: 1.72;
	color: var(--st-text);
}

.st-place-content p {
	margin: 0 0 1.25em;
}

.st-place-content pre,
.st-place-content code {
	font-family: var(--st-font-ui);
	font-size: inherit;
	line-height: inherit;
	letter-spacing: 0;
	color: inherit;
}

.st-place-content pre {
	overflow: visible;
	margin: 0 0 1.25em;
	padding: 0;
	border: 0;
	background: transparent;
	white-space: pre-wrap;
}

.st-place-fact-list {
	display: grid;
	gap: 10px;
	margin: 0;
}

.st-place-fact-list div {
	display: grid;
	gap: 3px;
}

.st-place-fact-list dt {
	color: var(--st-text-faint);
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.2;
}

.st-place-fact-list dd {
	margin: 0;
	color: var(--st-text);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.35;
}

.st-place-fact-parts {
	display: grid;
	gap: 7px;
	font-weight: 700;
}

.st-place-fact-part {
	display: grid;
	gap: 1px;
}

.st-place-fact-part > span {
	color: var(--st-text-faint);
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.25;
}

.st-place-fact-part > strong {
	color: var(--st-text);
	font-size: 0.84rem;
	font-weight: 850;
	line-height: 1.25;
}

.st-place-link-preview {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-place-link-preview li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--st-border);
	color: var(--st-text);
	font-size: 0.84rem;
	font-weight: 800;
}

.st-place-link-preview li:last-child {
	border-bottom: 0;
}

.st-place-link-preview strong {
	color: var(--st-text-faint);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.st-place-card-note {
	margin: 0;
	color: var(--st-text-muted);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.55;
}

.st-notices-card {
	display: grid;
	gap: 8px;
}

.st-notices-card--embedded {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(65, 49, 36, 0.1);
}

.st-notices-card h2,
.st-notices-card--embedded h2 {
	margin: 0;
	color: var(--st-text);
	font-size: 0.88rem;
	font-weight: 950;
	line-height: 1.25;
}

.st-notices-card__count {
	margin: -2px 0 4px;
	color: var(--st-text-faint);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.25;
}

.st-place-info-card.st-notices-card .st-notices-card__count,
.st-notices-card .st-notices-card__count {
	margin-top: -2px;
	margin-bottom: 4px;
}

.st-place-info-card.st-notices-card h2,
.st-place-sidebar .st-notices-card h2,
.st-place-side .st-notices-card h2 {
	margin: 0 0 12px;
	font-size: 1.05rem;
	line-height: 1.25;
}

.st-place-info-card.st-notices-card .st-notices-card__count,
.st-place-sidebar .st-notices-card .st-notices-card__count,
.st-place-side .st-notices-card .st-notices-card__count {
	margin: -2px 0 4px;
	color: var(--st-text-faint);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.25;
}

.st-notices-card__empty {
	margin: 0;
	padding: 12px 0 0;
	border-top: 1px solid rgba(65, 49, 36, 0.1);
	color: var(--st-text-muted);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
}

.st-place-sidebar .st-place-info-card.st-notices-card,
.st-place-side .st-place-info-card.st-notices-card {
	padding: 20px 22px 22px;
}

.st-place-sidebar .st-place-info-card.st-notices-card .st-notices-card__empty,
.st-place-side .st-place-info-card.st-notices-card .st-notices-card__empty {
	margin-top: 0;
}

.st-notices-list {
	display: grid;
	gap: 12px;
}

.st-notices-list.is-ticker {
	position: relative;
	overflow: hidden;
}

.st-notices-list.is-ticker-ready {
	display: grid;
	transition: opacity 220ms ease, transform 220ms ease;
	will-change: opacity, transform;
}

.st-notices-list.is-ticker-ready.is-ticker-switching {
	opacity: 0.18;
	transform: translateY(-18px);
}

.st-notices-list.is-ticker-ready .st-notice-teaser {
	display: none;
}

.st-notices-list.is-ticker-ready .st-notice-teaser.is-ticker-primary,
.st-notices-list.is-ticker-ready .st-notice-teaser.is-ticker-secondary {
	display: grid;
}

.st-notices-list.is-ticker-ready .st-notice-teaser.is-ticker-hidden,
.st-notices-list.is-ticker-ready .st-notice-teaser[hidden] {
	display: none !important;
}

.st-notices-list.is-ticker-ready .st-notice-teaser.is-ticker-primary {
	padding-top: 0;
	border-top: 0;
}

.st-notices-list.is-ticker-ready .st-notice-teaser.is-ticker-secondary {
	padding-top: 12px;
	border-top: 1px solid rgba(65, 49, 36, 0.1);
}

.st-notice-teaser {
	display: grid;
	padding-top: 12px;
	border-top: 1px solid rgba(65, 49, 36, 0.1);
}

.st-notice-teaser:first-child {
	padding-top: 0;
	border-top: 0;
}

.st-notice-teaser__button {
	display: grid;
	gap: 6px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.st-notice-teaser__button:hover .st-notice-teaser__title,
.st-notice-teaser__button:focus-visible .st-notice-teaser__title {
	color: var(--st-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.st-notice-teaser__button:hover .st-notice-teaser__text,
.st-notice-teaser__button:focus-visible .st-notice-teaser__text {
	color: var(--st-text);
}

.st-notice-teaser__time {
	margin: 0;
	color: var(--st-accent);
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.st-notice-teaser__title {
	display: block;
	margin: 0;
	color: var(--st-text);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.18;
}

.st-notice-teaser__source,
.st-notice-teaser__text {
	display: block;
	margin: 0;
	color: var(--st-text-muted);
	font-size: 0.86rem;
	font-weight: 650;
	line-height: 1.42;
}

.st-notice-teaser__source {
	color: var(--st-text-faint);
	font-size: 0.8rem;
}

.st-notice-reactions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.st-notice-reactions--teaser {
	margin-top: 8px;
}

.st-notice-reactions--modal {
	margin-top: 4px;
	padding-top: 12px;
	border-top: 1px solid rgba(65, 49, 36, 0.12);
}

.st-notice-reaction {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 32px;
	padding: 0 10px;
	border: 1px solid rgba(65, 49, 36, 0.16);
	border-radius: 999px;
	background: rgba(255, 250, 242, 0.74);
	color: var(--st-text-muted);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition:
		background var(--st-transition),
		border-color var(--st-transition),
		color var(--st-transition),
		transform var(--st-transition);
}

.st-notice-reaction:hover,
.st-notice-reaction:focus-visible {
	background: rgba(193, 83, 33, 0.1);
	border-color: rgba(193, 83, 33, 0.32);
	color: var(--st-accent);
	outline: none;
	transform: translateY(-1px);
}

.st-notice-reaction.is-active {
	background: rgba(193, 83, 33, 0.14);
	border-color: rgba(193, 83, 33, 0.42);
	color: var(--st-accent);
}

.st-notice-reaction:disabled {
	cursor: wait;
	opacity: 0.62;
	transform: none;
}

.st-notice-reaction__icon {
	font-size: 0.95rem;
	line-height: 1;
}

.st-notice-reaction__count {
	color: var(--st-text-faint);
	font-size: 0.72rem;
}

body.st-notice-modal-is-open {
	overflow: hidden;
}

.st-notice-modal {
	position: fixed;
	inset: 0;
	z-index: 10040;
	display: grid;
	place-items: center;
	padding: 24px;
}

.st-notice-modal[hidden] {
	display: none;
}

.st-notice-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(24, 20, 16, 0.62);
	backdrop-filter: blur(7px);
}

.st-notice-modal__panel {
	position: relative;
	display: block;
	width: min(900px, calc(100vw - 56px));
	height: min(640px, calc(100vh - 56px));
	border-radius: 8px;
	background: #241b13;
	box-shadow: 0 24px 70px rgba(26, 20, 15, 0.35);
	overflow: hidden;
	outline: none;
}

.st-notice-modal__image {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	filter: blur(0.8px) saturate(0.9) contrast(0.98);
	transform: scale(1.014);
}

.st-notice-modal__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(35, 25, 16, 0.2), rgba(255, 248, 236, 0.08) 46%, rgba(35, 25, 16, 0.18)),
		rgba(255, 248, 236, 0.04);
}

.st-notice-modal__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 13px;
	box-sizing: border-box;
	width: auto;
	max-height: calc(100% - 84px);
	margin: 42px 54px;
	padding: 22px 24px 24px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 250, 242, 0.54);
	box-shadow: 0 18px 55px rgba(26, 20, 15, 0.2);
	backdrop-filter: blur(1.6px) saturate(1.04);
	overflow: auto;
	scrollbar-gutter: stable;
}

.st-notice-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(65, 49, 36, 0.16);
	border-radius: 50%;
	background: rgba(255, 250, 242, 0.88);
	color: var(--st-text);
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}

.st-notice-modal__close:hover,
.st-notice-modal__close:focus-visible {
	background: var(--st-accent);
	color: #fff;
}

.st-notice-modal__time {
	margin: 0;
	color: var(--st-accent);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	text-transform: uppercase;
}

.st-notice-modal h3 {
	margin: 0;
	padding-right: 34px;
	color: var(--st-text);
	font-size: clamp(1.24rem, 1.72vw, 1.7rem);
	font-weight: 950;
	line-height: 1.12;
}

.st-notice-modal__source {
	margin: -2px 0 0;
	padding: 8px 10px;
	border-radius: 7px;
	background: rgba(255, 250, 242, 0.2);
	color: var(--st-text-faint);
	font-size: 0.84rem;
	font-weight: 750;
	line-height: 1.36;
}

.st-notice-modal__quote {
	margin: 0;
	max-height: min(330px, 43vh);
	padding: 12px 14px 14px;
	border-left: 3px solid var(--st-accent);
	border-radius: 0 7px 7px 0;
	background: rgba(248, 234, 223, 0.5);
	color: var(--st-text);
	font-size: 0.94rem;
	font-weight: 650;
	line-height: 1.58;
	overflow: auto;
}

.st-notice-modal__quote-label {
	display: block;
	margin-bottom: 8px;
	color: var(--st-accent);
	font-size: 0.72rem;
	font-weight: 950;
	line-height: 1.2;
	text-transform: uppercase;
}

.st-notice-modal__quote p {
	margin: 0;
}

.st-notice-modal__quote p + p {
	margin-top: 0.85em;
}

.st-notice-modal__body {
	color: var(--st-text-muted);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.5;
}

.st-notice-modal__body--intro {
	margin: -2px 0 0;
	color: var(--st-text);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.45;
}

.st-notice-modal__body > :first-child {
	margin-top: 0;
}

.st-notice-modal__body > :last-child {
	margin-bottom: 0;
}

@media (max-width: 720px) {
	.st-notice-modal {
		padding: 12px;
	}

	.st-notice-modal__panel {
		width: calc(100vw - 24px);
		height: calc(100vh - 24px);
	}

	.st-notice-modal__image {
		transform: scale(1.04);
	}

	.st-notice-modal__content {
		max-height: calc(100% - 36px);
		margin: 18px;
		padding: 22px 18px 20px;
		background: rgba(255, 250, 242, 0.66);
	}

	.st-notice-modal h3 {
		font-size: 1.25rem;
	}

	.st-notice-modal__quote {
		max-height: 40vh;
	}
}

.st-nearby-card {
	display: grid;
	gap: 12px;
}

.st-nearby-list {
	display: grid;
	gap: 10px;
}

.st-nearby-item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	color: var(--st-text);
	text-decoration: none;
}

.st-nearby-item__media {
	display: block;
	width: 72px;
	aspect-ratio: 4 / 3;
	border-radius: 7px;
	background: rgba(65, 49, 36, 0.08);
	overflow: hidden;
}

.st-nearby-item__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.st-nearby-item__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.st-nearby-item__body strong {
	display: block;
	overflow: hidden;
	color: var(--st-text);
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.st-nearby-item__body span {
	color: var(--st-accent);
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.2;
}

.st-nearby-item:hover .st-nearby-item__body strong,
.st-nearby-item:focus-visible .st-nearby-item__body strong {
	color: var(--st-accent);
}

.st-nearby-item:hover .st-nearby-item__media img,
.st-nearby-item:focus-visible .st-nearby-item__media img {
	transform: scale(1.04);
}

/* ----------------------------------------------------
   Breakpoint 1280px
---------------------------------------------------- */

@media (max-width: 1280px) {
	.st-place-shell {
		width: min(100% - 48px, 1200px);
	}

	.st-place-hero {
		grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.4fr);
		min-height: 420px;
	}

	.st-place-hero__media {
		min-height: 420px;
	}

	.st-place-title {
		font-size: clamp(2rem, 2.7vw, 2.65rem);
	}

	.st-place-body {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	}
}

/* ----------------------------------------------------
   Breakpoint 1080px
---------------------------------------------------- */

@media (max-width: 1080px) {
	.st-place-hero {
		grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
		min-height: 390px;
	}

	.st-place-hero__media {
		min-height: 390px;
	}

	.st-place-hero__content {
		padding: 34px 30px 32px 30px;
	}

	.st-place-title {
		font-size: clamp(1.8rem, 3.35vw, 2.35rem);
	}

	.st-place-teaser {
		font-size: 0.75rem;
	}

	.st-place-button {
		min-width: 0;
	}

	.st-place-body {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	}

	.st-place-main-content {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
	}

	.st-place-side--left,
	.st-place-side--right {
		grid-column: 2 / 3;
	}

	.st-place-side--left {
		grid-row: 1 / 2;
	}

	.st-place-side--right {
		grid-row: 2 / 3;
	}
}

/* ----------------------------------------------------
   Mobile
---------------------------------------------------- */

@media (max-width: 900px) {
	.st-place-single {
		background: var(--st-bg);
		color: var(--st-text);
	}

	.st-place-shell {
		width: min(100% - 28px, 1180px);
		padding: 16px 0 54px;
	}

	.st-place-hero {
		display: flex;
		flex-direction: column-reverse;
		min-height: 0;
		border-radius: 12px;
		background: var(--st-surface);
		border-color: rgba(65, 49, 36, 0.08);
		box-shadow: var(--st-shadow-hero);
	}

	.st-place-hero__content {
		max-width: none;
		padding: 20px 18px 22px;
	}

	.st-place-hero__media {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.st-place-hero-media-card {
		position: relative;
		inset: auto;
		border-radius: 11px 11px 0 0;
	}

	.st-place-hero-media-card--image::before,
	.st-place-hero-media-card--video::after {
		display: none;
	}

	.st-place-hero-media-card--video::before {
		inset: -16px;
		filter: blur(20px);
		opacity: 0.58;
	}

	.st-place-pills {
		margin-bottom: 12px;
	}

	.st-place-pill {
		background: rgba(255, 255, 255, 0.76);
		border-color: var(--st-border);
		color: #453d34;
	}

	.st-place-title {
		max-width: none;
		font-size: clamp(2rem, 9vw, 3.05rem);
		color: var(--st-text);
	}

	.st-place-teaser {
		max-width: none;
		color: var(--st-text-muted);
	}

	.st-place-location-line {
		color: var(--st-text);
	}

	.st-place-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		max-width: none;
	}

	.st-place-button {
		width: 100%;
		min-width: 0;
		min-height: 44px;
		background: rgba(255, 255, 255, 0.72);
		border-color: var(--st-border-strong);
		color: var(--st-text);
	}

	.st-place-button--primary {
		background: var(--st-accent);
		border-color: var(--st-accent);
		color: #fff;
	}

	.st-place-media-strip {
		display: flex;
		gap: 8px;
		margin-top: 22px;
		overflow-x: auto;
		padding-bottom: 6px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.st-place-media-strip::-webkit-scrollbar {
		display: none;
	}

	.st-place-media-tile {
		flex: 0 0 190px;
		scroll-snap-align: start;
		border-radius: 12px;
	}

	.st-place-media-tile--video {
		flex-basis: 220px;
	}

	.st-place-media-strip .st-place-media-tile:only-child {
		max-width: none;
	}

	.st-place-body {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-top: 34px;
	}

	.st-place-main-content {
		order: 1;
	}

	.st-place-side--left {
		order: 2;
	}

	.st-place-side--right {
		order: 3;
	}

	.st-place-content-panel {
		padding: 18px;
	}

	.st-place-info-card {
		padding: 15px;
	}

	.st-place-content {
		color: var(--st-text-muted);
	}
}

/* ----------------------------------------------------
   Breakpoint 560px
---------------------------------------------------- */

@media (max-width: 560px) {
	.st-place-shell {
		width: min(100% - 24px, 1180px);
	}

	.st-place-hero {
		border-radius: 12px;
	}

	.st-place-hero__content {
		padding: 18px 16px 20px;
	}

	.st-place-location-line {
		gap: 7px;
		font-size: 0.84rem;
	}

	.st-place-media-tile {
		flex-basis: 164px;
	}

	.st-place-media-tile--video {
		flex-basis: 190px;
	}

	.st-place-play-badge {
		width: 48px;
		height: 48px;
	}

	.st-place-play-badge span {
		border-top-width: 10px;
		border-bottom-width: 10px;
		border-left-width: 15px;
	}

	.st-gallery-lightbox {
		padding: 54px 12px 66px;
	}

	.st-gallery-lightbox__close {
		top: 10px;
		right: 10px;
	}

	.st-gallery-lightbox__nav {
		top: auto;
		bottom: 12px;
		width: 44px;
		height: 44px;
		font-size: 1.8rem;
		transform: none;
	}

	.st-gallery-lightbox__nav:hover,
	.st-gallery-lightbox__nav:focus {
		transform: scale(1.04);
	}

	.st-gallery-lightbox__nav--prev {
		left: 12px;
	}

	.st-gallery-lightbox__nav--next {
		right: 12px;
	}

	.st-gallery-lightbox__counter {
		bottom: 18px;
	}
}

@media (min-width: 700px) and (max-width: 900px) and (orientation: landscape) {
	.st-place-hero {
		display: grid;
		grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
		min-height: 360px;
	}

	.st-place-hero__content {
		padding: 28px 24px 26px 28px;
	}

	.st-place-hero__media {
		min-height: 360px;
		aspect-ratio: 16 / 9;
	}

	.st-place-hero-media-card {
		position: absolute;
		inset: 0;
		border-radius: 0;
	}

	.st-place-hero-media-card--image::before,
	.st-place-hero-media-card--video::after {
		display: block;
	}

	.st-place-hero-video {
		object-fit: cover;
	}

	.js-st-video-card.is-portrait-video .st-place-hero-video,
	.js-st-video-card.is-square-video .st-place-hero-video {
		object-fit: contain;
	}
}

/* ----------------------------------------------------
   Reduced Motion
---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.st-place-media-tile img,
	.st-place-button,
	.st-place-hero-video-open,
	.st-breadcrumbs a {
		transition: none !important;
		animation: none !important;
		will-change: auto !important;
	}

	.st-monument-marker__pulse::before,
	.st-monument-marker__pulse::after {
		animation: none !important;
		opacity: 0.58;
		transform: scale(1.25);
		will-change: auto;
	}

	.st-monument-marker__pulse::after {
		display: none;
	}
}

/* ----------------------------------------------------
   Quellenkarte + Quellenmodal
   Diese Regeln ans Ende von assets/css/st-place-single.css setzen.
---------------------------------------------------- */

.st-place-sources-card {
	display: grid;
	gap: 12px;
}

.st-place-sources-card h2 {
	margin-bottom: 2px;
}

.st-place-source-count {
	margin: 0;
	color: var(--st-text);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.35;
}

.st-place-source-preview {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 10px 0 0;
	border-top: 1px solid var(--st-border);
}

.st-place-source-preview__item {
	display: grid;
	gap: 3px;
}

.st-place-source-preview__item + .st-place-source-preview__item {
	padding-top: 9px;
	border-top: 1px solid rgba(65, 49, 36, 0.1);
}

.st-place-source-preview__title,
.st-place-sources-card a:not(.st-place-source-modal-open) {
	display: inline;
	width: fit-content;
	max-width: 100%;
	color: var(--st-text);
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.28;
	text-decoration: none;
	text-underline-offset: 3px;
}

.st-place-source-preview__title:hover,
.st-place-source-preview__title:focus,
.st-place-sources-card a:not(.st-place-source-modal-open):hover,
.st-place-sources-card a:not(.st-place-source-modal-open):focus {
	color: var(--st-accent-hover);
	text-decoration: underline;
}

.st-place-source-preview__meta,
.st-place-sources-card p:not(.st-place-source-count) {
	margin: 0;
	color: var(--st-text-muted);
	font-size: 0.8rem;
	font-weight: 750;
	line-height: 1.45;
}

.st-place-source-modal-open {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 36px;
	margin-top: 2px;
	padding: 0 14px;
	border: 1px solid rgba(184, 78, 31, 0.34);
	border-radius: var(--st-radius-btn);
	background: rgba(184, 78, 31, 0.10);
	color: var(--st-accent-hover);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	box-shadow: none;
	transition:
		background var(--st-transition),
		border-color var(--st-transition),
		color var(--st-transition),
		transform var(--st-transition);
}

.st-place-source-modal-open:hover,
.st-place-source-modal-open:focus-visible {
	background: var(--st-accent);
	border-color: var(--st-accent);
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

body.st-sources-modal-is-open {
	overflow: hidden;
}

.st-place-sources-modal {
	position: fixed;
	inset: 0;
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.st-place-sources-modal[hidden] {
	display: none !important;
}

.st-place-sources-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(24, 21, 18, 0.58);
	backdrop-filter: blur(4px);
}

.st-place-sources-modal__panel {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	max-height: min(760px, calc(100vh - 48px));
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 12px;
	background: var(--st-surface);
	box-shadow: 0 24px 70px rgba(24, 21, 18, 0.32);
	outline: none;
}

.st-place-sources-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--st-border);
	background: rgba(255, 250, 242, 0.96);
}

.st-place-sources-modal__header h2 {
	margin: 0;
	font-family: var(--st-font-display);
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1.1;
	color: var(--st-text);
}

.st-place-sources-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--st-border-strong);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	color: var(--st-text);
	font-size: 1.45rem;
	line-height: 1;
	cursor: pointer;
}

.st-place-sources-modal__close:hover,
.st-place-sources-modal__close:focus-visible {
	border-color: var(--st-accent-light);
	color: var(--st-accent-hover);
	outline: none;
}

.st-place-sources-modal__content {
	max-height: calc(min(760px, 100vh - 48px) - 75px);
	overflow: auto;
	padding: 20px;
}

.st-place-sources-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: st-source-counter;
}

.st-place-source-item {
	position: relative;
	display: grid;
	gap: 5px;
	padding: 14px 16px 14px 48px;
	border: 1px solid var(--st-border);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.48);
}

.st-place-source-item::before {
	counter-increment: st-source-counter;
	content: counter(st-source-counter);
	position: absolute;
	left: 16px;
	top: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(184, 78, 31, 0.12);
	color: var(--st-accent-hover);
	font-size: 0.78rem;
	font-weight: 900;
}

.st-place-source-item__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.25;
}

.st-place-source-item__title a {
	color: var(--st-text);
	text-decoration: none;
}

.st-place-source-item__title a:hover,
.st-place-source-item__title a:focus-visible {
	color: var(--st-accent-hover);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.st-place-source-item__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 8px;
	margin: 0;
	color: var(--st-text-muted);
	font-size: 0.84rem;
	font-weight: 750;
	line-height: 1.42;
}

.st-place-source-item__accessed {
	margin: 4px 0 0;
	color: var(--st-text);
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.35;
}

.st-place-source-item__meta span:not(:last-child)::after {
	content: "·";
	margin-left: 8px;
	color: var(--st-accent);
	font-weight: 900;
}

.st-place-source-item__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 30px;
	margin-top: 3px;
	padding: 0 12px;
	border: 1px solid var(--st-accent);
	border-radius: var(--st-radius-btn);
	background: var(--st-accent);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 900;
	text-decoration: none;
}

.st-place-source-item__button:hover,
.st-place-source-item__button:focus-visible {
	background: var(--st-accent-hover);
	border-color: var(--st-accent-hover);
	color: #fff;
	outline: none;
}

@media (max-width: 560px) {
	.st-place-sources-modal {
		padding: 14px;
	}

	.st-place-sources-modal__header,
	.st-place-sources-modal__content {
		padding: 16px;
	}

	.st-place-source-item {
		padding: 14px;
	}

	.st-place-source-item::before {
		display: none;
	}
}

/* ----------------------------------------------------
   Sidebar Layout + Spacing Fix
   Muss am Dateiende stehen, damit alte Grid-Regeln überschrieben werden.
---------------------------------------------------- */

.st-place-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
	gap: clamp(28px, 3.4vw, 44px);
	align-items: start;
	margin: 46px 0 0;
}

.st-place-main-content {
	grid-column: 1 / 2;
	grid-row: auto;
	min-width: 0;
}

.st-place-sidebar {
	grid-column: 2 / 3;
	grid-row: auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-self: start;
}

.st-place-sidebar__group,
.st-place-side {
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-content: start;
}

/* Fallback, falls die alte PHP-Struktur mit zwei rechten Asides noch aktiv ist. */
.st-place-body:has(> .st-place-side--left) .st-place-main-content {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.st-place-side--left {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

.st-place-side--right {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.st-place-info-card,
.st-place-content-panel {
	border-radius: 10px;
}

.st-place-info-card {
	padding: 20px 22px 22px;
}

.st-place-content-panel {
	padding: 28px 30px 30px;
}

.st-place-info-card h2,
.st-place-content-panel h2 {
	margin: 0 0 18px;
	line-height: 1.25;
}

.st-place-info-card h2 {
	font-size: 1.05rem;
}

.st-place-content-panel h2 {
	font-size: 1.32rem;
}

.st-place-sidebar .st-place-fact-list,
.st-place-side .st-place-fact-list {
	gap: 14px;
}

.st-place-sidebar .st-place-fact-list div,
.st-place-side .st-place-fact-list div {
	gap: 5px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(24, 21, 18, 0.08);
}

.st-place-sidebar .st-place-fact-list div:last-child,
.st-place-side .st-place-fact-list div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.st-place-sidebar .st-place-fact-list dt,
.st-place-side .st-place-fact-list dt {
	font-size: 0.76rem;
	line-height: 1.25;
}

.st-place-sidebar .st-place-fact-list dd,
.st-place-side .st-place-fact-list dd {
	font-size: 0.9rem;
	line-height: 1.42;
}

.st-place-sidebar .st-place-fact-parts,
.st-place-side .st-place-fact-parts {
	gap: 11px;
}

.st-place-sidebar .st-place-link-preview,
.st-place-side .st-place-link-preview {
	gap: 0;
}

.st-place-sidebar .st-place-link-preview li,
.st-place-side .st-place-link-preview li {
	padding: 13px 0;
}

.st-place-sidebar .st-place-card-note,
.st-place-side .st-place-card-note {
	font-size: 0.92rem;
	line-height: 1.6;
}

.st-place-sidebar .st-nearby-card,
.st-place-side .st-nearby-card {
	gap: 16px;
}

.st-place-sidebar .st-nearby-list,
.st-place-side .st-nearby-list {
	gap: 14px;
}

.st-place-sidebar .st-nearby-item,
.st-place-side .st-nearby-item {
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 13px;
}

.st-place-sidebar .st-nearby-item__media,
.st-place-side .st-nearby-item__media {
	width: 78px;
	border-radius: 8px;
}

.st-place-sources-card {
	gap: 14px;
}

.st-place-source-preview,
.st-place-source-summary,
.st-place-sources-summary {
	gap: 9px;
}

.st-place-source-preview__meta,
.st-place-source-meta,
.st-place-sources-meta {
	line-height: 1.55;
}

@media (max-width: 1280px) {
	.st-place-body {
		grid-template-columns: minmax(0, 1fr) minmax(310px, 350px);
		gap: clamp(24px, 3vw, 36px);
	}
}

@media (max-width: 1080px) {
	.st-place-body {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 335px);
		gap: clamp(22px, 2.8vw, 32px);
	}

	.st-place-info-card {
		padding: 18px 20px 20px;
	}
}

@media (max-width: 900px) {
	.st-place-body {
		display: flex;
		flex-direction: column;
		gap: 22px;
		margin-top: 34px;
	}

	.st-place-main-content {
		order: 1;
		width: 100%;
	}

	.st-place-sidebar {
		order: 2;
		width: 100%;
		gap: 18px;
	}

	.st-place-side--left {
		order: 2;
		width: 100%;
	}

	.st-place-side--right {
		order: 3;
		width: 100%;
	}

	.st-place-sidebar__group,
	.st-place-side {
		gap: 18px;
	}

	.st-place-content-panel {
		padding: 20px;
	}

	.st-place-info-card {
		padding: 18px;
	}
}

@media (max-width: 560px) {
	.st-place-info-card {
		padding: 16px;
	}

	.st-place-content-panel {
		padding: 18px;
	}
}

/* ----------------------------------------------------
   FAQ unterhalb der Spurenkarte
---------------------------------------------------- */

.st-place-faq {
	margin-top: 22px;
}

.st-place-faq h2 {
	margin-bottom: 18px;
}

.st-place-faq__list {
	display: grid;
	gap: 12px;
}

.st-place-faq__item {
	border: 1px solid rgba(65, 49, 36, 0.10);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.38);
	overflow: hidden;
}

.st-place-faq__question {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 54px;
	padding: 15px 46px 15px 17px;
	color: var(--st-text);
	font-size: 0.98rem;
	font-weight: 900;
	line-height: 1.32;
	cursor: pointer;
	list-style: none;
}

.st-place-faq__question::-webkit-details-marker {
	display: none;
}

.st-place-faq__question::after {
	content: "+";
	position: absolute;
	right: 17px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(184, 78, 31, 0.22);
	border-radius: 999px;
	background: rgba(184, 78, 31, 0.08);
	color: var(--st-accent-hover);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%) rotate(0deg);
	transition:
		background 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 220ms ease;
}

.st-place-faq__item[open] .st-place-faq__question::after {
	content: "-";
	transform: translateY(-50%) rotate(180deg);
}

.st-place-faq__question:hover,
.st-place-faq__question:focus-visible {
	color: var(--st-accent-hover);
	outline: none;
}

.st-place-faq__answer {
	padding: 0 17px 17px;
	color: var(--st-text-muted);
	font-size: 0.98rem;
	font-weight: 520;
	line-height: 1.68;
	opacity: 0;
	transform: translateY(-4px);
	transition:
		max-height 280ms ease,
		opacity 220ms ease,
		transform 220ms ease;
	will-change: max-height, opacity, transform;
}

.st-place-faq__item[open] .st-place-faq__answer,
.st-place-faq__item.is-opening .st-place-faq__answer {
	opacity: 1;
	transform: translateY(0);
}

.st-place-faq__item.is-closing .st-place-faq__answer {
	opacity: 0;
	transform: translateY(-4px);
}

.st-place-faq__answer > :first-child {
	margin-top: 0;
}

.st-place-faq__answer > :last-child {
	margin-bottom: 0;
}

.st-place-faq__answer p {
	margin: 0 0 1em;
}

.st-place-faq__answer ul,
.st-place-faq__answer ol {
	margin: 0 0 1em 1.2em;
	padding: 0;
}

.st-place-faq__answer li + li {
	margin-top: 0.35em;
}

.st-place-faq__answer a {
	color: var(--st-accent-hover);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.st-place-faq__answer blockquote {
	margin: 0 0 1em;
	padding: 10px 13px;
	border-left: 3px solid var(--st-accent);
	background: rgba(184, 78, 31, 0.07);
	color: var(--st-text);
}

.st-transit-faq {
	display: grid;
	gap: 13px;
}

.st-transit-faq__map {
	min-height: 320px;
	border: 1px solid rgba(65, 49, 36, 0.12);
	border-radius: 10px;
	background: rgba(65, 49, 36, 0.06);
	overflow: hidden;
}

.st-transit-map-marker {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 3px solid #fff;
	border-radius: 12px;
	background: #c15321;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0;
	box-shadow: 0 6px 18px rgba(28, 22, 17, 0.26);
}

.st-transit-map-marker.is-pulsing {
	position: relative;
	z-index: 2;
	animation: st-transit-marker-pulse 0.75s ease-out infinite;
}

@keyframes st-transit-marker-pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(193, 83, 33, 0.58), 0 6px 18px rgba(28, 22, 17, 0.26);
	}

	70% {
		transform: scale(1.22);
		box-shadow: 0 0 0 18px rgba(193, 83, 33, 0), 0 8px 24px rgba(28, 22, 17, 0.34);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(193, 83, 33, 0), 0 6px 18px rgba(28, 22, 17, 0.26);
	}
}

.st-transit-map-marker--u {
	background: #0065ad;
	border-radius: 10px;
}

.st-transit-map-marker--s {
	background: #159447;
	border-radius: 999px;
}

.st-transit-map-marker--tram {
	background: #d71920;
	border-radius: 10px;
}

.st-transit-map-marker--bus {
	background: #2f8796;
	border-radius: 999px;
}

.st-transit-map-marker--parking {
	background: #2458a6;
	border-radius: 10px;
}

.st-transit-map-center-control {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.st-transit-map-center {
	appearance: none;
	display: grid;
	place-items: center;
	position: relative;
	width: 34px;
	height: 34px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: #c15321;
	color: #fff;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 950;
	line-height: 1;
	box-shadow: 0 6px 18px rgba(28, 22, 17, 0.26);
	cursor: pointer;
}

.st-transit-map-center span {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-radius: 999px;
}

.st-transit-map-center span::before,
.st-transit-map-center span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
}

.st-transit-map-center span::before {
	width: 22px;
	height: 2px;
}

.st-transit-map-center span::after {
	width: 2px;
	height: 22px;
}

.st-transit-map-center:hover,
.st-transit-map-center:focus-visible {
	background: #a6421c;
}

.st-transit-map-popup {
	display: grid;
	gap: 5px;
	min-width: 150px;
	color: var(--st-text);
	font-weight: 800;
}

.st-transit-map-popup strong {
	font-size: 0.96rem;
	font-weight: 950;
}

.st-transit-map-popup span {
	color: var(--st-text-muted);
	font-size: 0.82rem;
}

.st-transit-map-popup__address {
	margin: 0;
	color: var(--st-text);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.3;
}

.st-transit-map-popup__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 3px;
}

.st-transit-map-popup__line {
	appearance: none;
	border: 2px solid #fff;
	font-family: inherit;
	cursor: pointer;
}

.st-transit-map-popup__line.is-active {
	outline: 2px solid rgba(28, 22, 17, 0.35);
	outline-offset: 2px;
}

.st-transit-map-popup__departures {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 34px;
	margin-top: 5px;
	padding: 7px 12px;
	border: 1px solid rgba(184, 78, 31, 0.22);
	border-radius: 999px;
	background: rgba(184, 78, 31, 0.09);
	color: var(--st-accent-hover);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.1;
	cursor: pointer;
}

.st-transit-map-popup__departures:hover,
.st-transit-map-popup__departures:focus-visible {
	background: rgba(184, 78, 31, 0.15);
}

.st-transit-map-popup__departures[hidden] {
	display: none;
}

.st-transit-faq__stops {
	display: grid;
	gap: 10px;
}

.st-transit-faq__stop {
	border: 1px solid rgba(65, 49, 36, 0.10);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.45);
	overflow: hidden;
	transition:
		border-color 160ms ease,
		background 160ms ease,
		box-shadow 160ms ease;
}

.st-transit-faq__stop[open] {
	background: rgba(255, 255, 255, 0.58);
}

.st-transit-faq__stop.is-open {
	background: rgba(255, 255, 255, 0.58);
}

.st-transit-faq__stop.is-map-linked {
	border-color: rgba(184, 78, 31, 0.42);
	background: rgba(255, 250, 244, 0.82);
	box-shadow: 0 8px 20px rgba(28, 22, 17, 0.08);
}

.st-transit-faq__stop-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 48px 15px 16px;
	color: var(--st-text);
	cursor: pointer;
	list-style: none;
	position: relative;
}

.st-transit-faq__stop-head::-webkit-details-marker {
	display: none;
}

.st-transit-faq__stop-head::after {
	position: absolute;
	top: 15px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(184, 78, 31, 0.20);
	border-radius: 999px;
	background: rgba(255, 250, 244, 0.86);
	color: var(--st-accent-hover);
	content: '+';
	font-weight: 950;
	line-height: 1;
}

.st-transit-faq__stop[open] .st-transit-faq__stop-head::after,
.st-transit-faq__stop.is-open .st-transit-faq__stop-head::after {
	content: '-';
}

.st-transit-faq__stop-body {
	padding: 0 16px 16px;
}

.st-transit-faq__stop:not(.is-open):not([open]) .st-transit-faq__stop-body,
.st-transit-faq__stop-body[hidden] {
	display: none !important;
}

.st-transit-faq details.st-transit-faq__stop:not(.is-open) > .st-transit-faq__stop-body {
	display: none !important;
}

.st-transit-faq details.st-transit-faq__stop.is-open > .st-transit-faq__stop-body {
	display: block !important;
}

.st-transit-faq__stop-head strong {
	display: block;
	font-size: 1.34rem !important;
	font-weight: 950 !important;
	line-height: 1.18;
}

.st-transit-faq__stop-head span {
	color: var(--st-text-muted);
	font-size: 0.95rem;
	font-weight: 850;
	line-height: 1.3;
	text-align: right;
}

.st-transit-faq__line {
	margin: 0 0 0.45em;
}

.st-transit-faq__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 9px;
}

.st-transit-faq__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 28px;
	padding: 4px 9px;
	border: 2px solid #fff;
	border-radius: 9px;
	background: #5f564f;
	color: #fff !important;
	font-size: 0.82rem;
	font-weight: 950;
	line-height: 1;
	box-shadow: 0 1px 4px rgba(28, 22, 17, 0.18);
}

.st-transit-faq__badge--u {
	background: #0065ad;
	border-radius: 9px;
}

.st-transit-faq__badge--s {
	background: #159447;
	border-radius: 999px;
}

.st-transit-faq__badge--tram {
	background: #d71920;
	border-radius: 9px;
}

.st-transit-faq__badge--bus {
	background: #2f8796;
	border-radius: 999px;
}

.st-transit-faq__badge--parking {
	background: #2458a6;
	border-radius: 9px;
}

.st-transit-faq__departures {
	scroll-margin-top: 90px;
	margin-top: 10px;
	border: 1px solid rgba(65, 49, 36, 0.10);
	border-radius: 10px;
	background: rgba(255, 250, 244, 0.72);
	overflow: hidden;
}

.st-transit-faq__departures-head,
.st-transit-faq__departure {
	display: grid;
	grid-template-columns: minmax(58px, 84px) 1fr auto;
	gap: 10px;
	align-items: center;
}

.st-transit-faq__departures-head {
	padding: 10px 12px;
	color: var(--st-text);
	border-bottom: 1px solid rgba(65, 49, 36, 0.08);
}

.st-transit-faq__departures-head span {
	grid-column: 2 / -1;
	color: var(--st-text-muted);
	font-size: 0.85rem;
	font-weight: 800;
	text-align: right;
}

.st-transit-faq__departure {
	padding: 9px 12px;
	border-bottom: 1px solid rgba(65, 49, 36, 0.07);
	color: var(--st-text);
}

.st-transit-faq__departure:last-child {
	border-bottom: 0;
}

.st-transit-faq__departure-direction {
	font-weight: 800;
}

.st-transit-faq__departure-time {
	color: var(--st-accent-hover);
	font-weight: 950;
	white-space: nowrap;
}

.st-transit-faq__departures-actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	padding: 9px 12px 10px;
	border-top: 1px solid rgba(65, 49, 36, 0.08);
}

.st-transit-faq .st-transit-faq__departures-actions button,
.st-transit-faq .st-transit-faq__button,
.st-transit-faq .st-transit-faq__actions button {
	appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 38px !important;
	padding: 8px 14px !important;
	border: 1px solid rgba(184, 78, 31, 0.18) !important;
	border-radius: 999px !important;
	background: rgba(184, 78, 31, 0.08) !important;
	color: var(--st-accent-hover) !important;
	font: inherit !important;
	font-weight: 900 !important;
	line-height: 1.1 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

.st-transit-faq .st-transit-faq__departures-actions button:disabled {
	opacity: 0.48;
	cursor: not-allowed;
}

.st-transit-faq .st-transit-faq__actions button:disabled {
	display: none;
}

.st-transit-faq .st-transit-faq__button[hidden],
.st-transit-faq .st-transit-faq__actions button[hidden] {
	display: none !important;
}

.st-transit-faq__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 0;
	padding-top: 10px;
	border-top: 1px solid rgba(65, 49, 36, 0.08);
}

.st-transit-faq__actions a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 14px;
	border: 1px solid rgba(184, 78, 31, 0.18);
	border-radius: 999px;
	background: rgba(184, 78, 31, 0.08);
	color: var(--st-accent-hover);
	font-weight: 900;
	text-decoration: none;
}

.st-transit-faq__actions a:hover,
.st-transit-faq__actions a:focus-visible,
.st-transit-faq__actions button:hover,
.st-transit-faq__actions button:focus-visible,
.st-transit-faq__departures-actions button:hover,
.st-transit-faq__departures-actions button:focus-visible {
	background: rgba(184, 78, 31, 0.14);
	text-decoration: none;
}

.st-transit-faq__note {
	margin: 0;
	color: var(--st-text-muted);
}

.st-transit-faq__license {
	margin: 8px 0 0;
	padding-top: 10px;
	border-top: 1px solid rgba(65, 49, 36, 0.10);
	color: var(--st-text-muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

.st-transit-faq__license a {
	color: inherit;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.st-transit-faq__license a:hover,
.st-transit-faq__license a:focus-visible {
	color: var(--st-accent-hover);
}

@media (max-width: 900px) {
	.st-place-faq {
		margin-top: 18px;
	}

	.st-place-faq__question {
		padding: 14px 44px 14px 15px;
	}

	.st-place-faq__answer {
		padding: 0 15px 15px;
	}

	.st-transit-faq__map {
		min-height: 260px;
	}

	.st-transit-faq__stop-head {
		display: grid;
		gap: 4px;
	}

	.st-transit-faq__stop-head strong {
		font-size: 1.12rem;
	}

	.st-transit-faq__stop-head span {
		text-align: left;
	}

	.st-transit-faq__departures-head,
	.st-transit-faq__departure {
		grid-template-columns: minmax(48px, auto) 1fr auto;
	}
}

/* Panel spacing and featured card styles */
.st-place-helpful {
	margin-top: 22px !important;
}

.st-nearby-card-featured {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-nearby-card-featured:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(184, 78, 31, 0.2) !important;
}

/* Material hover popover */
.js-st-material-hover {
	cursor: help;
	border-bottom: 1px dotted var(--st-accent, #d96428);
}

.st-material-popover {
	position: absolute;
	z-index: 100000;
	max-width: 380px;
	padding: 14px 18px;
	border-radius: 10px;
	background: var(--st-surface, #fffaf2);
	color: var(--st-text, #2c2520);
	font-size: 0.92rem;
	line-height: 1.6;
	box-shadow: 0 8px 32px rgba(24, 21, 18, 0.22);
	pointer-events: auto;
	animation: stMaterialPopIn 0.15s ease-out;
}

.st-material-popover--above::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid var(--st-surface, #fffaf2);
}

.st-material-popover--below::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid var(--st-surface, #fffaf2);
}

@keyframes stMaterialPopIn {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: translateY(0); }
}
