/* Scan the City – map app styles. Mobile first: bottom sheet; ≥900px: left sidebar (half the screen, max 600px). */

.stc-app {
	/* Theme tokens. Defaults = the "Artelier" look; Scan the City -> Setări hartă -> Aspect overrides them inline. */
	--stc-bg: #ffffff;
	--stc-fg: #0f2a3a;
	--stc-muted: #5b7180;
	--stc-line: #dbe7ee;
	--stc-accent: #008ec2;
	--stc-accent-fg: #ffffff;
	--stc-pin: #008ec2;
	--stc-pin-fg: #ffffff;
	--stc-pin-selected: #f59e0b;
	--stc-pin-selected-fg: #ffffff;
	--stc-visited: #16a34a;
	--stc-radius: 20px;
	--stc-radius-sm: 14px;
	--stc-btn-radius: 999px;
	--stc-title-weight: 800;
	--stc-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--stc-map-filter: none;
	--stc-shadow: 0 -4px 24px rgba(0, 0, 0, .12);
	--stc-user: #2563eb;

	/* Layout (not editable): horizontal gutter of the sheet, sidebar width on desktop,
	   height of the sheet (kept up to date by app.js so the floating controls stay above it). */
	--stc-gutter: 16px;
	--stc-side: min(50vw, 600px);
	--stc-sheet-h: 50vh;
	--stc-edge: 12px;
	--stc-top: max(12px, env(safe-area-inset-top));
}

.stc-app, .stc-app * { box-sizing: border-box; } /* independent of the active theme's reset */

html, body.stc-app-body {
	margin: 0 !important;
	padding: 0 !important;
	height: 100%;
	overflow: hidden;
	background: #e8e6e1;
}

.stc-app {
	position: fixed;
	inset: 0;
	font-family: var(--stc-font);
	color: var(--stc-fg);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* ---- neutralise the site theme's global element styles inside the app ----
   The theme styles bare `button`, `button:hover`, `a`, `h1`…`h6` (serif headings, pink hover, 13px/27px padding).
   Buttons and links take their colours from two custom properties, so every later rule only has to set those. */
.stc-sheet h1, .stc-sheet h2, .stc-sheet h3, .stc-sheet h4, .stc-sheet summary, .stc-sheet figure, .stc-sheet p, .stc-popup h2, .stc-popup p {
	font-family: inherit; color: inherit; letter-spacing: normal; text-transform: none; text-shadow: none;
}
.stc-sheet figure { margin: 0; }
.stc-sheet button, .stc-lightbox button, .stc-popup button, .stc-locate {
	font: inherit; letter-spacing: normal; text-transform: none; text-shadow: none;
	margin: 0; padding: 0; border: 0;
	background: var(--stc-el-bg, none); color: var(--stc-el-fg, inherit);
	box-shadow: none; transition: none; cursor: pointer; text-align: inherit;
}
/* the theme's button:hover / :focus only set colours, so only those are pinned here (padding etc. stay with the element's own rule) */
.stc-sheet button:hover, .stc-sheet button:focus, .stc-sheet button:active,
.stc-lightbox button:hover, .stc-lightbox button:focus, .stc-popup button:hover, .stc-popup button:focus, .stc-locate:hover, .stc-locate:focus {
	background: var(--stc-el-bg, none); color: var(--stc-el-fg, inherit); box-shadow: none; transition: none;
}
.stc-sheet a, .stc-sheet a:hover, .stc-sheet a:focus, .stc-sheet a:active,
.stc-home, .stc-home:hover, .stc-home:focus, .stc-tile-logo, .stc-tile-logo:hover, .stc-tile-logo:focus {
	color: var(--stc-el-fg, var(--stc-accent)); background: var(--stc-el-bg, none);
	text-decoration: var(--stc-el-underline, underline); font-weight: inherit; box-shadow: none; transition: none;
}
.stc-sheet button:focus-visible, .stc-sheet a:focus-visible, .stc-home:focus-visible, .stc-locate:focus-visible { outline: 2px solid var(--stc-accent); outline-offset: 2px; }
.stc-sheet svg, .stc-home svg, .stc-locate svg, .stc-popup svg { display: inline-block; flex: 0 0 auto; }
.stc-icon { width: 20px; height: 20px; }

.stc-map {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: #e8e6e1;
	filter: var(--stc-map-filter);
}

/* ---- floating controls ----
   top-left: home · top-right: zoom · bottom-left: provider logo + attribution · bottom-right: locate.
   Bottom controls sit just above the sheet (mobile) and follow it; on desktop they sit at the bottom of the map. */
.stc-home, .stc-locate {
	position: absolute;
	z-index: 5;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	--stc-el-bg: var(--stc-bg);
	--stc-el-fg: var(--stc-fg);
	--stc-el-underline: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
	display: flex;
	align-items: center;
	justify-content: center;
}
.stc-app .stc-home, .stc-app .stc-locate { padding: 0; border-radius: 50%; }
.stc-home .stc-icon, .stc-locate .stc-icon { width: 22px; height: 22px; }
.stc-home { top: var(--stc-top); left: var(--stc-edge); }
.stc-locate {
	right: var(--stc-edge);
	bottom: calc(var(--stc-sheet-h) + var(--stc-edge));
	transition: bottom .25s ease, opacity .2s;
}
.leaflet-top.leaflet-right { top: var(--stc-top); right: var(--stc-edge); }
.leaflet-top.leaflet-right .leaflet-control-zoom { margin: 0; }
.stc-map .leaflet-bottom.leaflet-left {
	left: var(--stc-edge);
	bottom: calc(var(--stc-sheet-h) + var(--stc-edge));
	display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
	transition: bottom .25s ease, opacity .2s;
}
.stc-map .leaflet-bottom.leaflet-left .leaflet-control { margin: 0; }
.leaflet-control-attribution { font-family: var(--stc-font); font-size: 10px; background: rgba(255,255,255,.75); border-radius: 4px; padding: 1px 6px; }
.stc-tile-logo { display: block; --stc-el-bg: rgba(255,255,255,.75); --stc-el-underline: none; border-radius: 4px; padding: 3px 6px; line-height: 0; }
.stc-tile-logo img { height: 20px; width: auto; display: block; }
.stc-tile-logo:not(.leaflet-control) { position: absolute; z-index: 5; left: var(--stc-edge); bottom: calc(var(--stc-sheet-h) + var(--stc-edge) + 24px); } /* before app.js moves it into the map corner */
/* sheet fully open: the map is a sliver, hide what would overlap the top controls */
.stc-app.is-sheet-full .stc-locate, .stc-app.is-sheet-full .leaflet-bottom.leaflet-left { opacity: 0; pointer-events: none; }
.stc-app.is-sheet-dragging .stc-locate, .stc-app.is-sheet-dragging .leaflet-bottom.leaflet-left { transition: none; }

/* route line + user position */
.stc-route { stroke: var(--stc-accent); }

/* pins */
.stc-pin-wrap { background: none; border: 0; }
.stc-pin {
	width: 34px; height: 34px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	background: var(--stc-pin);
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
	display: flex; align-items: center; justify-content: center;
	transition: transform .15s, background .15s;
}
.stc-pin span { transform: rotate(45deg); color: var(--stc-pin-fg); font: 700 13px/1 var(--stc-font); display: flex; align-items: center; justify-content: center; }
.stc-icon-pin { width: 16px; height: 16px; stroke-width: 3; }
.stc-pin.is-selected { background: var(--stc-pin-selected); transform: rotate(-45deg) scale(1.25); }
.stc-pin.is-selected span { color: var(--stc-pin-selected-fg); }
/* pin shapes (Setări hartă -> Forma pinului) */
.stc-pin-round .stc-pin { border-radius: 50%; transform: none; width: 36px; height: 36px; border-width: 3px; }
.stc-pin-round .stc-pin span { transform: none; font-size: 14px; }
.stc-pin-round .stc-pin.is-selected { transform: scale(1.25); }
.stc-pin-square .stc-pin { border-radius: 3px; transform: none; width: 28px; height: 28px; border-width: 1px; }
.stc-pin-square .stc-pin span { transform: none; font-weight: 600; }
.stc-pin-square .stc-pin.is-selected { transform: scale(1.25); }

/* ---- sheet / sidebar ----
   The sheet itself has no horizontal padding: rows (list items, back button, hero) run edge to edge,
   and every text block carries the gutter itself. */
.stc-sheet {
	position: absolute;
	z-index: 10;
	left: 0; right: 0; bottom: 0;
	background: var(--stc-bg);
	border-radius: var(--stc-radius) var(--stc-radius) 0 0;
	box-shadow: var(--stc-shadow);
	display: flex;
	flex-direction: column;
	height: 50vh;
	transition: height .25s ease;
	touch-action: none;
	padding-bottom: env(safe-area-inset-bottom);
}
.stc-sheet[data-state="peek"] { height: calc(132px + env(safe-area-inset-bottom)); }
.stc-sheet[data-state="half"] { height: 50vh; height: 50dvh; }
.stc-sheet[data-state="full"] { height: calc(100vh - 64px); height: calc(100dvh - 64px); }
.stc-sheet.is-dragging { transition: none; }

.stc-sheet-handle {
	flex: 0 0 auto;
	align-self: stretch;
	display: flex; justify-content: center;
	cursor: grab;
	touch-action: none;
}
.stc-app .stc-sheet-handle { padding: 12px 0 10px; }
.stc-sheet-handle:focus-visible { outline: 2px solid var(--stc-accent); outline-offset: -2px; }
.stc-sheet-handle span { width: 40px; height: 5px; border-radius: 3px; background: #d1d5db; }

.stc-sheet-content {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	touch-action: pan-y;
	padding: 0 0 24px;
	/* the native scrollbar would take a strip off the right of every edge-to-edge row (Windows);
	   app.js draws an overlay thumb (.stc-scrollbar) instead */
	scrollbar-width: none;
}
.stc-sheet-content::-webkit-scrollbar { display: none; width: 0; height: 0; }
.stc-scrollbar {
	position: absolute; right: 3px; width: 5px; border-radius: 3px; z-index: 3;
	background: rgba(0, 0, 0, .28); opacity: 0; transition: opacity .3s; cursor: default; touch-action: none;
}
.stc-scrollbar.is-on { opacity: 1; }
.stc-scrollbar.is-dragging { background: rgba(0, 0, 0, .45); }

/* text blocks carry the gutter */
.stc-list-head, .stc-block, .stc-media, .stc-gallery, .stc-area, .stc-readmore-wrap,
.stc-related > h2, .stc-related > h3 { padding-left: var(--stc-gutter); padding-right: var(--stc-gutter); }

/* ---- list ---- */
.stc-list-head { background: var(--stc-bg); padding-top: 4px; padding-bottom: 8px; }
.stc-title:focus { outline: none; }
.stc-title { font-size: 1.35rem; font-weight: var(--stc-title-weight); margin: 0 0 8px; line-height: 1.2; }
.stc-sort { display: inline-flex; border: 1px solid var(--stc-line); border-radius: var(--stc-btn-radius); padding: 3px; gap: 2px; }
.stc-app .stc-sort button { font-size: .9rem; --stc-el-fg: var(--stc-muted); padding: 6px 14px; border-radius: var(--stc-btn-radius); }
.stc-sort button.is-active { --stc-el-bg: var(--stc-accent); --stc-el-fg: var(--stc-accent-fg); }
.stc-sort button[disabled] { opacity: .45; cursor: default; }
.stc-status { margin: 8px 0 0; font-size: .9rem; color: var(--stc-muted); }
.stc-status:empty { display: none; }
.stc-status-warn { color: #b91c1c; }

.stc-list { display: flex; flex-direction: column; }
.stc-item {
	display: flex; align-items: center; gap: 12px;
	width: 100%; text-align: left;
	--stc-el-underline: none;
}
.stc-app .stc-item { padding: 10px var(--stc-gutter); border-bottom: 1px solid var(--stc-line); }
.stc-item:hover, .stc-item:focus-visible { --stc-el-bg: color-mix(in srgb, var(--stc-accent) 6%, transparent); }
.stc-item.is-current { --stc-el-bg: color-mix(in srgb, var(--stc-accent) 12%, transparent); }
.stc-item-thumb {
	flex: 0 0 64px; width: 64px; height: 64px; border-radius: var(--stc-radius-sm); object-fit: cover; background: var(--stc-line);
}
.stc-thumb-empty {
	display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
	color: #fff; font-weight: 800; font-size: 18px; letter-spacing: .02em;
	background: linear-gradient(135deg, var(--stc-c1, #6b7280), var(--stc-c2, #374151));
}
/* a hint of a bust: head + shoulders highlight behind the initials */
.stc-thumb-empty::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.28) 0 22%, transparent 24%), radial-gradient(ellipse at 50% 95%, rgba(255,255,255,.22) 0 40%, transparent 42%);
}
.stc-thumb-empty span { position: relative; z-index: 1; }
.stc-item-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.stc-item-title { font-weight: 600; line-height: 1.25; }
.stc-item-meta { font-size: .85rem; color: var(--stc-muted); margin-top: 2px; }
.stc-item-dist {
	flex: 0 0 auto; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-width: 44px;
	font-size: .9rem; font-weight: 600; color: var(--stc-accent); white-space: nowrap;
}
.stc-item-dist .stc-arrow { width: 20px; height: 20px; }

/* ---- detail ---- */
.stc-detail-head { position: sticky; top: 0; background: var(--stc-bg); z-index: 2; }
.stc-back { display: flex; align-items: center; gap: 6px; width: 100%; --stc-el-fg: var(--stc-accent); font-weight: 600; }
.stc-back .stc-icon { width: 18px; height: 18px; }
.stc-app .stc-back { padding: 10px var(--stc-gutter); }
.stc-back:hover, .stc-back:focus-visible { --stc-el-bg: color-mix(in srgb, var(--stc-accent) 6%, transparent); }
.stc-sheet .stc-hero { margin: 0 0 16px; position: relative; }
.stc-hero img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.stc-hero-empty { width: 100%; } /* explicit, or a max-height would shrink the width to keep the aspect ratio */
.stc-hero-empty {
	display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 10; overflow: hidden; position: relative;
	color: #fff; font-size: 44px; font-weight: 800; letter-spacing: .02em;
	background: linear-gradient(135deg, var(--stc-c1, #6b7280), var(--stc-c2, #374151));
}
.stc-hero-empty::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.25) 0 60px, transparent 62px), radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.2) 0 45%, transparent 47%);
}
.stc-hero-empty span { position: relative; z-index: 1; }
.stc-badge {
	position: absolute; left: var(--stc-gutter); bottom: 12px; z-index: 1;
	background: var(--stc-accent); color: var(--stc-accent-fg); font-size: .8rem; font-weight: 600;
	padding: 4px 10px; border-radius: var(--stc-btn-radius);
}
.stc-meta { margin: 0 0 14px; color: var(--stc-muted); font-size: .95rem; }
.stc-btn {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 600; --stc-el-fg: var(--stc-fg); --stc-el-underline: none;
}
.stc-app .stc-btn { padding: 10px 18px; border: 1px solid var(--stc-line); border-radius: var(--stc-btn-radius); }
.stc-btn:hover, .stc-btn:focus-visible { --stc-el-bg: color-mix(in srgb, var(--stc-accent) 8%, transparent); }
.stc-btn .stc-icon { width: 18px; height: 18px; }
.stc-app .stc-btn-primary, .stc-btn-primary:hover, .stc-btn-primary:focus-visible { --stc-el-bg: var(--stc-accent); --stc-el-fg: var(--stc-accent-fg); border-color: var(--stc-accent); }
.stc-btn-primary:hover, .stc-btn-primary:focus-visible { filter: brightness(1.08); }
.stc-media, .stc-gallery, .stc-related { margin: 22px 0 0; }
.stc-media h2, .stc-gallery h2, .stc-related h2 { font-size: 1rem; margin: 0 0 8px; color: var(--stc-muted); font-weight: 700; }
.stc-label { text-transform: uppercase; letter-spacing: .04em; }
.stc-sub { font-size: .85rem; margin: 12px 0 4px; color: var(--stc-muted); font-weight: 600; }
.stc-related .stc-item:first-of-type { border-top: 1px solid var(--stc-line); }
.stc-audio audio { width: 100%; }
.stc-video video { width: 100%; border-radius: var(--stc-radius-sm); background: #000; }
/* YouTube / Vimeo: poster + play button, iframe only after a tap */
.stc-embed { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--stc-radius-sm); --stc-el-bg: #000; background: #000 center / cover no-repeat; position: relative; }
.stc-app .stc-embed { border-radius: var(--stc-radius-sm); }
.stc-embed-play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; background: var(--stc-accent); color: var(--stc-accent-fg); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.35); }
.stc-embed-play .stc-icon { width: 30px; height: 30px; }
.stc-embed-frame { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--stc-radius-sm); background: #000; }
.stc-embed-link { display: inline-block; margin-top: 6px; font-size: .85rem; --stc-el-fg: var(--stc-muted); }
.stc-prose { margin-top: 18px; font-size: 1.02rem; }
.stc-prose p { margin: 0 0 1em; }
.stc-prose a { --stc-el-fg: var(--stc-accent); }
.stc-readmore-wrap { margin: 4px 0 12px; }
.stc-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.stc-gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: calc(var(--stc-radius-sm) / 2); display: block; }
.stc-area { margin-top: 22px; border-top: 1px solid var(--stc-line); padding-top: 10px; }
.stc-area summary { cursor: pointer; font-weight: 600; }

/* ---- tours, progress, visited, compass, read more ---- */
.stc-tours { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 4px; -webkit-overflow-scrolling: touch; }
.stc-app .stc-tours button {
	flex: 0 0 auto; border: 1px solid var(--stc-line); --stc-el-fg: var(--stc-muted);
	font-size: .85rem; padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.stc-app .stc-tours button.is-active { --stc-el-bg: var(--stc-accent); border-color: var(--stc-accent); --stc-el-fg: var(--stc-accent-fg); }
.stc-progress { margin: 0 0 10px; }
.stc-progress-bar { height: 6px; border-radius: 3px; background: var(--stc-line); overflow: hidden; margin-bottom: 4px; }
.stc-progress-bar span { display: block; height: 100%; background: var(--stc-accent); border-radius: 3px; transition: width .3s; }
.stc-progress-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.stc-progress-label { font-size: .85rem; color: var(--stc-muted); }
.stc-progress.is-done .stc-progress-label { color: var(--stc-visited); font-weight: 600; }
.stc-progress-reset { text-align: right; }

/* popup: tour complete */
.stc-popup {
	position: fixed; inset: 0; z-index: 90;
	background: rgba(15, 42, 58, .45);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
}
.stc-popup[hidden] { display: none; }
.stc-popup-card {
	background: var(--stc-bg); color: var(--stc-fg); border-radius: var(--stc-radius);
	padding: 22px var(--stc-gutter) var(--stc-gutter); max-width: 380px; width: 100%;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
	animation: stc-pop .25s ease-out;
}
@keyframes stc-pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.stc-popup-title { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: 1.3rem; font-weight: var(--stc-title-weight); color: var(--stc-visited); }
.stc-popup-title .stc-icon { width: 26px; height: 26px; }
.stc-popup-card p { margin: 0 0 16px; }
.stc-popup-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.stc-link { font-size: .85rem; --stc-el-fg: var(--stc-accent); text-decoration: underline; }
.stc-check { color: var(--stc-visited); display: inline-block; vertical-align: -3px; }
.stc-check .stc-icon { width: 16px; height: 16px; stroke-width: 2.5; }
.stc-item.is-visited .stc-item-thumb { opacity: .7; }
.stc-pin.is-visited { background: var(--stc-visited); }
.stc-arrow { display: none; color: var(--stc-accent); transition: transform .25s ease-out; transform-origin: 50% 50%; }
.stc-arrow.is-on { display: inline-block; }
.stc-dist .stc-arrow { width: 18px; height: 18px; vertical-align: -3px; }
/* action buttons: one row that scrolls sideways instead of wrapping; it bleeds to the sheet edges so the
   scroll feels natural (the row is the one element that legitimately runs under the gutter) */
.stc-actions {
	display: flex; gap: 8px; align-items: center; margin: 0 calc(-1 * var(--stc-gutter)) 4px;
	padding: 2px var(--stc-gutter); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.stc-actions::-webkit-scrollbar { display: none; }
.stc-actions .stc-btn { flex: 0 0 auto; white-space: nowrap; }
.stc-actions .stc-btn[disabled] { opacity: .5; cursor: default; }
.stc-app .stc-visit-btn.is-visited { border-color: var(--stc-visited); --stc-el-fg: var(--stc-visited); }
.stc-long { animation: stc-fade .25s ease-out; }
@keyframes stc-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---- lightbox ---- */
.stc-lightbox {
	position: fixed; inset: 0; z-index: 100;
	background: rgba(0, 0, 0, .92);
	display: flex; align-items: center; justify-content: center;
}
.stc-lightbox[hidden] { display: none; }
.stc-lightbox img { max-width: 100vw; max-height: 100vh; object-fit: contain; }
.stc-app .stc-lightbox button {
	position: absolute; top: var(--stc-top); right: var(--stc-edge);
	width: 44px; height: 44px; border-radius: 50%; --stc-el-bg: rgba(255,255,255,.15); --stc-el-fg: #fff;
	display: flex; align-items: center; justify-content: center;
}
.stc-lightbox .stc-icon { width: 24px; height: 24px; }

/* ---- desktop: sidebar layout ---- */
@media (min-width: 900px) {
	.stc-app { --stc-gutter: 24px; --stc-sheet-h: 0px; }
	.stc-sheet, .stc-sheet[data-state] {
		top: 0; bottom: 0; left: 0; right: auto;
		width: var(--stc-side); height: auto !important;
		border-radius: 0;
		box-shadow: 4px 0 24px rgba(0, 0, 0, .12);
		touch-action: auto;
	}
	.stc-sheet-handle { display: none; }
	.stc-sheet-content { padding-bottom: 32px; }
	.stc-list-head { padding-top: 20px; }
	.stc-hero img, .stc-hero-empty { max-height: 360px; }
	.stc-home { left: calc(var(--stc-side) + var(--stc-edge)); }
	.stc-map .leaflet-bottom.leaflet-left { left: calc(var(--stc-side) + var(--stc-edge)); bottom: var(--stc-edge); }
	.stc-locate { bottom: var(--stc-edge); }
	.stc-tile-logo:not(.leaflet-control) { left: calc(var(--stc-side) + var(--stc-edge)); bottom: calc(var(--stc-edge) + 24px); }
	.stc-lightbox img { max-width: 92vw; max-height: 92vh; }

}
