/**
 * GOR Map V3 publieke interface
 *
 * De stijlen zijn bewust onder .gor-map-shell en .gor-map begrensd, zodat het
 * actieve WordPress thema niet wordt beïnvloed.
 */

.gor-map-shell {
	--gor-green: #68c32d;
	--gor-green-bright: #7cda24;
	--gor-black: #0a0a0a;
	--gor-white: #ffffff;
	--gor-canvas: #f1eee7;
	--gor-blue: #0068a8;
	--gor-orange: #ef6c00;
	--gor-shadow: 0 14px 36px rgba(10, 10, 10, 0.22);
	--gor-font-display: "edo", Impact, "Arial Black", sans-serif;
	--gor-font-strong: "gothambold", "Arial Black", Arial, sans-serif;
	--gor-font-body: "gothamlight", "Open Sans", Arial, sans-serif;
	position: relative;
	width: 100%;
	max-width: 1600px;
	margin: 1.5rem auto;
	color: var(--gor-black);
	font-family: var(--gor-font-body);
}

.gor-map,
.gor-map * {
	box-sizing: border-box;
}

.gor-map {
	position: relative;
	z-index: 0;
	width: 100%;
	height: var(--gor-map-height, 720px);
	min-height: 480px;
	overflow: hidden;
	border: 4px solid var(--gor-black);
	border-radius: 0;
	background:
		radial-gradient(circle at 15% 22%, rgba(104, 195, 45, 0.16), transparent 25%),
		var(--gor-canvas);
	box-shadow: var(--gor-shadow);
	isolation: isolate;
	font-family: var(--gor-font-body);
	line-height: 1.45;
}

.gor-map:focus-within {
	outline: 3px solid var(--gor-green-bright);
	outline-offset: 4px;
}

.gor-map button,
.gor-map a {
	font: inherit;
}

.gor-map button:focus-visible,
.gor-map a:focus-visible,
.gor-map .leaflet-interactive:focus {
	outline: 3px solid var(--gor-green-bright);
	outline-offset: 2px;
}

.gor-map.leaflet-container {
	background: var(--gor-canvas);
	font-family: var(--gor-font-body);
}

.gor-map__header {
	position: absolute;
	inset: 0 0 auto;
	z-index: 1100;
	display: flex;
	min-height: 72px;
	align-items: stretch;
	justify-content: space-between;
	color: var(--gor-white);
	background:
		linear-gradient(92deg, rgba(255, 255, 255, 0.04) 0 7%, transparent 7% 11%, rgba(255, 255, 255, 0.025) 11% 100%),
		var(--gor-black);
	box-shadow: 0 5px 0 rgba(10, 10, 10, 0.2);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4px), 96% 100%, 90% calc(100% - 4px), 83% 100%, 73% calc(100% - 3px), 64% 100%, 52% calc(100% - 4px), 42% 100%, 31% calc(100% - 3px), 20% 100%, 10% calc(100% - 4px), 0 100%);
}

.gor-map__brand {
	display: flex;
	min-width: 240px;
	align-items: center;
	gap: 12px;
	padding: 12px 22px 16px;
}

.gor-map__brand-mark {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	place-items: center;
	transform: rotate(-3deg);
	color: var(--gor-black);
	background: var(--gor-green);
	box-shadow: 3px 3px 0 var(--gor-white);
}

.gor-map__brand-mark svg {
	width: 27px;
	height: 27px;
	fill: currentColor;
}

.gor-map__brand-title {
	font-family: var(--gor-font-display);
	font-size: clamp(1.25rem, 2.4vw, 2rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gor-map__stats {
	display: flex;
	align-items: stretch;
	margin-right: 10px;
}

.gor-map__stat {
	display: flex;
	min-width: 100px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 18px 13px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.gor-map__stat-value {
	color: var(--gor-green-bright);
	font-family: var(--gor-font-strong);
	font-size: 1.25rem;
	line-height: 1;
}

.gor-map__stat-label {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--gor-font-strong);
	font-size: 0.62rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.gor-map__routes {
	position: absolute;
	inset: 72px 0 auto;
	z-index: 1050;
	display: flex;
	min-height: 58px;
	align-items: stretch;
	gap: 0;
	overflow-x: auto;
	overflow-y: hidden;
	border-bottom: 3px solid var(--gor-black);
	background:
		linear-gradient(102deg, rgba(10, 10, 10, 0.035) 0 1px, transparent 1px 24px),
		var(--gor-white);
	box-shadow: 0 5px 15px rgba(10, 10, 10, 0.13);
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scroll-padding-inline: 12px;
	scrollbar-color: var(--gor-green) var(--gor-white);
	scrollbar-width: thin;
	touch-action: pan-x;
}

.gor-route-filter {
	display: grid;
	min-width: 164px;
	flex: 0 0 auto;
	grid-template-columns: 34px 1fr;
	grid-template-rows: 1fr 1fr;
	align-items: center;
	gap: 0 9px;
	padding: 7px 16px;
	border: 0;
	border-right: 1px solid #d9d6cf;
	color: var(--gor-black);
	background: var(--gor-white);
	cursor: pointer;
	scroll-snap-align: start;
	text-align: left;
	touch-action: manipulation;
	transition: background-color 130ms ease, opacity 130ms ease;
}

.gor-route-filter:hover,
.gor-route-filter[aria-pressed="true"]:hover {
	background: #e8f5df;
}

.gor-route-filter[aria-pressed="true"] {
	box-shadow: inset 0 -4px 0 var(--gor-green);
}

.gor-route-filter.is-inactive {
	opacity: 0.52;
	filter: grayscale(1);
	box-shadow: none;
}

.gor-route-filter--all {
	display: flex;
	min-width: 132px;
	align-items: center;
	justify-content: center;
	color: var(--gor-black);
	background: var(--gor-green);
	font-family: var(--gor-font-strong);
	font-size: 0.74rem;
	letter-spacing: 0.05em;
	text-align: center;
	text-transform: uppercase;
	box-shadow: inset 0 -4px 0 var(--gor-black);
}

.gor-route-filter__line {
	width: 32px;
	height: 6px;
	grid-row: 1 / 3;
	border-top: 2px solid var(--gor-black);
	border-bottom: 2px solid var(--gor-black);
	background: var(--gor-route-color, var(--gor-green));
}

.gor-route-filter__line[data-pattern="dash"] {
	background: repeating-linear-gradient(90deg, var(--gor-route-color, var(--gor-green)) 0 9px, transparent 9px 14px);
}

.gor-route-filter__line[data-pattern="dot"] {
	background: repeating-linear-gradient(90deg, var(--gor-route-color, var(--gor-green)) 0 3px, transparent 3px 8px);
}

.gor-route-filter__name {
	align-self: end;
	overflow: hidden;
	font-family: var(--gor-font-strong);
	font-size: 0.76rem;
	line-height: 1.05;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.gor-route-filter__distance {
	align-self: start;
	color: #565656;
	font-size: 0.68rem;
}

.gor-map__controls {
	position: absolute;
	z-index: 1000;
	top: 146px;
	left: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gor-map__control,
.gor-map__legend-close {
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	place-items: center;
	border: 3px solid var(--gor-black);
	border-radius: 0;
	color: var(--gor-black);
	background: var(--gor-white);
	box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.32);
	cursor: pointer;
	transition: color 120ms ease, background-color 120ms ease, transform 120ms ease;
}

.gor-map__control:hover,
.gor-map__control.is-active,
.gor-map__control[aria-pressed="true"],
.gor-map__legend-close:hover {
	color: var(--gor-black);
	background: var(--gor-green);
}

.gor-map__control:active,
.gor-map__legend-close:active {
	transform: translate(2px, 2px);
	box-shadow: 1px 1px 0 rgba(10, 10, 10, 0.32);
}

.gor-map__control.is-requesting svg {
	animation: gor-pulse 900ms ease-in-out infinite alternate;
}

.gor-map__control.has-error {
	color: var(--gor-white);
	background: #b42318;
}

.gor-map__control svg,
.gor-map__legend-close svg,
.gor-button svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.gor-map__legend {
	position: absolute;
	z-index: 1000;
	top: 146px;
	right: 14px;
	display: flex;
	width: min(320px, calc(100% - 96px));
	max-height: calc(100% - 174px);
	flex-direction: column;
	border: 3px solid var(--gor-black);
	background: var(--gor-white);
	box-shadow: 7px 7px 0 rgba(10, 10, 10, 0.28);
	transform: translateX(0);
	transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
	touch-action: pan-y;
}

.gor-map__legend.is-collapsed {
	visibility: hidden;
	opacity: 0;
	transform: translateX(calc(100% + 24px));
	pointer-events: none;
}

.gor-map__legend-header {
	display: flex;
	min-height: 50px;
	align-items: center;
	justify-content: space-between;
	padding-left: 16px;
	color: var(--gor-white);
	background:
		linear-gradient(100deg, transparent 0 80%, rgba(104, 195, 45, 0.22) 80% 100%),
		var(--gor-black);
}

.gor-map__legend-title {
	margin: 0;
	color: inherit;
	font-family: var(--gor-font-display);
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gor-map__legend-close {
	width: 44px;
	height: 44px;
	margin-right: 3px;
	border-color: transparent;
	color: var(--gor-white);
	background: transparent;
	box-shadow: none;
}

.gor-map__legend-body {
	min-height: 0;
	flex: 1 1 auto;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 5px 14px 14px;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
	touch-action: pan-y;
}

.gor-map__legend-hint {
	margin: 9px 0 0;
	padding: 9px 10px;
	border-left: 4px solid var(--gor-green);
	color: #3d3d3d;
	background: #f3f8ef;
	font-size: 0.7rem;
	line-height: 1.35;
}

.gor-legend-section {
	padding-top: 12px;
}

.gor-legend-section + .gor-legend-section {
	margin-top: 10px;
	border-top: 2px solid #ece9e2;
}

.gor-legend-section__title {
	margin: 0 0 6px;
	color: #4a4a4a;
	font-family: var(--gor-font-strong);
	font-size: 0.67rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.gor-legend-section__body {
	display: grid;
	gap: 3px;
}

.gor-legend-item {
	display: grid;
	width: 100%;
	min-height: 44px;
	grid-template-columns: 34px minmax(0, 1fr) auto 38px;
	align-items: center;
	gap: 9px;
	padding: 5px 3px;
	border: 0;
	border-bottom: 1px solid #efede8;
	color: var(--gor-black);
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.gor-legend-item:hover {
	background: #eef8e8;
}

.gor-legend-item.is-inactive {
	opacity: 0.5;
}

.gor-legend-item__label {
	min-width: 0;
	font-family: var(--gor-font-strong);
	font-size: 0.76rem;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.gor-legend-item__meta {
	color: #626262;
	font-size: 0.68rem;
}

.gor-legend-swatch {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: var(--gor-black);
	font-family: var(--gor-font-strong);
	font-size: 0.66rem;
}

.gor-legend-toggle {
	display: block;
	width: 36px;
	height: 22px;
	grid-column: 4;
	padding: 2px;
	border: 2px solid var(--gor-black);
	background: #d7d5cf;
	transition: background-color 130ms ease;
}

.gor-legend-toggle__thumb {
	display: block;
	width: 14px;
	height: 14px;
	background: var(--gor-black);
	transform: translateX(0);
	transition: transform 130ms ease;
}

.gor-legend-item[aria-pressed="true"] .gor-legend-toggle {
	background: var(--gor-green);
}

.gor-legend-item[aria-pressed="true"] .gor-legend-toggle__thumb {
	transform: translateX(14px);
}

.gor-legend-swatch--route {
	height: 7px;
	border-top: 2px solid var(--gor-black);
	border-bottom: 2px solid var(--gor-black);
	background: var(--gor-route-color, var(--gor-green));
}

.gor-legend-swatch--route[data-pattern="dash"] {
	background: repeating-linear-gradient(90deg, var(--gor-route-color, var(--gor-green)) 0 8px, transparent 8px 12px);
}

.gor-legend-swatch--route[data-pattern="dot"] {
	background: repeating-linear-gradient(90deg, var(--gor-route-color, var(--gor-green)) 0 3px, transparent 3px 7px);
}

.gor-legend-swatch--obstacle {
	width: 28px;
	height: 28px;
	transform: rotate(45deg);
	border: 2px solid var(--gor-black);
	background: var(--gor-green);
	box-shadow: 2px 2px 0 rgba(10, 10, 10, 0.22);
}

.gor-legend-swatch--obstacle i {
	display: block;
	font-style: normal;
	transform: rotate(-45deg);
}

.gor-legend-swatch--poi {
	width: 22px;
	height: 28px;
	border: 2px solid var(--gor-black);
	border-radius: 50% 50% 50% 0;
	background: var(--gor-category-color, var(--gor-blue));
	transform: rotate(-45deg);
}

.gor-marker {
	border: 0;
	background: transparent;
}

.gor-marker--obstacle span {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	transform: rotate(45deg);
	border: 3px solid var(--gor-black);
	color: var(--gor-black);
	background: var(--gor-green);
	box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.28);
	font-family: var(--gor-font-strong);
	font-size: 0.78rem;
}

.gor-marker--obstacle i {
	display: block;
	font-style: normal;
	transform: rotate(-45deg);
}

.gor-marker--poi > span {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	transform: rotate(-45deg);
	border: 3px solid var(--gor-black);
	border-radius: 50% 50% 50% 0;
	background: var(--gor-marker-color, var(--gor-blue));
	box-shadow: -3px 3px 0 rgba(10, 10, 10, 0.22);
}

.gor-marker--poi i {
	position: absolute;
	inset: 8px;
	display: grid;
	place-items: center;
	transform: rotate(45deg);
	border-radius: 50%;
	color: var(--gor-black);
	background: var(--gor-white);
	font-family: var(--gor-font-strong);
	font-size: 0.52rem;
	font-style: normal;
	line-height: 1;
}

.gor-marker-image {
	object-fit: contain;
	filter: drop-shadow(2px 3px 0 rgba(10, 10, 10, 0.3));
}

.gor-cluster {
	border: 0;
	background: transparent;
}

.gor-cluster span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 3px solid var(--gor-black);
	border-radius: 50%;
	color: var(--gor-black);
	background: var(--gor-green);
	box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.34);
	font-family: var(--gor-font-strong);
	font-size: 0.8rem;
}

.gor-map .leaflet-popup-content-wrapper,
.gor-map .leaflet-popup-tip {
	border-radius: 0;
	background: var(--gor-white);
	box-shadow: none;
}

.gor-map .leaflet-popup-content-wrapper {
	border: 3px solid var(--gor-black);
	box-shadow: 7px 7px 0 rgba(10, 10, 10, 0.25);
}

.gor-map .leaflet-popup-content {
	margin: 0;
	min-width: 220px;
	font-family: var(--gor-font-body);
}

.gor-map .leaflet-popup-close-button {
	top: 5px;
	right: 5px;
	width: 32px;
	height: 32px;
	color: var(--gor-white);
	font-size: 24px;
	line-height: 30px;
}

.gor-detail__header {
	padding: 14px 48px 12px 16px;
	color: var(--gor-white);
	background: var(--gor-black);
}

.gor-detail__title {
	margin: 0;
	color: inherit;
	font-family: var(--gor-font-display);
	font-size: 1.18rem;
	line-height: 1.1;
	text-transform: uppercase;
}

.gor-detail__meta {
	margin: 5px 0 0;
	color: var(--gor-green-bright);
	font-family: var(--gor-font-strong);
	font-size: 0.7rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.gor-detail__text {
	margin: 0;
	padding: 14px 16px;
	color: #292929;
	font-size: 0.84rem;
	line-height: 1.55;
}

.gor-detail__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	padding: 0 16px 16px;
}

.gor-detail__image-link {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1;
	border: 2px solid var(--gor-black);
	background: #e8e5de;
	cursor: zoom-in;
	touch-action: manipulation;
}

.gor-detail__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.gor-detail__image-link:hover .gor-detail__image {
	transform: scale(1.06);
}

.gor-detail__image-link::after {
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 22px;
	height: 22px;
	border: 2px solid var(--gor-black);
	border-radius: 50%;
	content: "";
	background:
		linear-gradient(var(--gor-black), var(--gor-black)) 50% 50% / 8px 2px no-repeat,
		linear-gradient(var(--gor-black), var(--gor-black)) 50% 50% / 2px 8px no-repeat,
		var(--gor-green);
	box-shadow: 2px 2px 0 rgba(10, 10, 10, 0.32);
	pointer-events: none;
}

.gor-detail__share {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	gap: 8px;
	margin: 0 16px 16px;
	padding: 8px 12px;
	border: 2px solid var(--gor-black);
	color: var(--gor-black);
	background: var(--gor-green);
	box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.22);
	font-family: var(--gor-font-strong);
	font-size: 0.72rem;
	text-transform: uppercase;
	cursor: pointer;
}

.gor-detail__share svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.gor-map .leaflet-control-zoom {
	margin: 0 0 14px 14px;
	border: 0;
	border-radius: 0;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.28);
}

.gor-map .leaflet-control-zoom a {
	width: 44px;
	height: 44px;
	border: 3px solid var(--gor-black);
	border-radius: 0;
	color: var(--gor-black);
	background: var(--gor-white);
	font-family: var(--gor-font-strong);
	font-size: 24px;
	line-height: 38px;
}

.gor-map .leaflet-control-zoom a:first-child {
	border-bottom-width: 1px;
}

.gor-map .leaflet-control-zoom a:last-child {
	border-top-width: 1px;
}

.gor-map .leaflet-control-zoom a:hover {
	background: var(--gor-green);
}

.gor-map .leaflet-control-attribution {
	max-width: min(70vw, 620px);
	margin: 0;
	padding: 3px 6px;
	color: #282828;
	background: rgba(255, 255, 255, 0.88);
	font-size: 9px;
	line-height: 1.35;
	white-space: normal;
}

.gor-map .leaflet-control-attribution a {
	color: #003f66;
	text-decoration: underline;
}

.gor-map__status {
	position: absolute;
	inset: 130px 0 0;
	z-index: 1200;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	color: var(--gor-white);
	background:
		linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.78)),
		radial-gradient(circle at 45% 50%, var(--gor-green) 0, transparent 42%);
	text-align: center;
}

.gor-map__status[hidden] {
	display: none;
}

.gor-map__status-title {
	max-width: 620px;
	margin: 0;
	color: inherit;
	font-family: var(--gor-font-display);
	font-size: clamp(1.55rem, 4vw, 2.8rem);
	line-height: 1.05;
	text-transform: uppercase;
}

.gor-map__status-text {
	max-width: 520px;
	margin: 12px 0 0;
	font-size: 0.96rem;
}

.gor-map__tile-notice {
	position: absolute;
	inset: auto auto 38px 50%;
	z-index: 1055;
	display: flex;
	width: min(620px, calc(100% - 140px));
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 14px;
	transform: translateX(-50%);
	border: 3px solid var(--gor-black);
	color: var(--gor-black);
	background: var(--gor-white);
	box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.28);
	font-family: var(--gor-font-strong);
	font-size: 0.78rem;
	line-height: 1.35;
}

.gor-map__tile-notice[hidden] {
	display: none;
}

.gor-map__notices {
	position: absolute;
	z-index: 1080;
	top: 142px;
	left: 50%;
	display: grid;
	width: min(720px, calc(100% - 150px));
	gap: 7px;
	transform: translateX(-50%);
}

.gor-map-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 10px 10px 14px;
	border: 3px solid var(--gor-black);
	color: var(--gor-black);
	background: #eaf3ff;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.24);
}

.gor-map-notice--success {
	background: #eaf8e2;
}

.gor-map-notice--warning {
	background: #fff1b8;
}

.gor-map-notice--critical {
	color: var(--gor-white);
	background: #b42318;
}

.gor-map-notice__content {
	display: flex;
	min-width: 0;
	align-items: baseline;
	gap: 9px;
}

.gor-map-notice__title {
	flex: 0 0 auto;
	font-family: var(--gor-font-strong);
	font-size: 0.76rem;
	text-transform: uppercase;
}

.gor-map-notice__text {
	overflow: hidden;
	font-size: 0.76rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gor-map-notice__link {
	flex: 0 0 auto;
	color: inherit;
	font-family: var(--gor-font-strong);
	font-size: 0.7rem;
	text-decoration: underline;
}

.gor-map-notice__close {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	place-items: center;
	padding: 0;
	border: 2px solid currentColor;
	color: inherit;
	background: transparent;
	cursor: pointer;
}

.gor-map-notice__close svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.gor-map__offline-notice {
	position: absolute;
	z-index: 1060;
	right: 72px;
	bottom: 38px;
	display: grid;
	max-width: 460px;
	gap: 3px;
	padding: 11px 14px;
	border: 3px solid var(--gor-black);
	color: var(--gor-black);
	background: #fff1b8;
	box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.25);
}

.gor-map__offline-notice[hidden] {
	display: none;
}

.gor-map__offline-title {
	font-family: var(--gor-font-strong);
	font-size: 0.78rem;
	text-transform: uppercase;
}

.gor-map__offline-text,
.gor-map__offline-date {
	font-size: 0.72rem;
	line-height: 1.4;
}

.gor-detail-sheet[hidden] {
	display: none;
}

.gor-detail-sheet {
	position: absolute;
	z-index: 1600;
	inset: 0;
	display: grid;
	grid-template-rows: 1fr auto;
}

.gor-detail-sheet__backdrop {
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(10, 10, 10, 0.45);
	cursor: pointer;
}

.gor-detail-sheet__panel {
	max-height: min(72%, 620px);
	overflow: hidden;
	border-top: 4px solid var(--gor-black);
	color: var(--gor-black);
	background: var(--gor-white);
	box-shadow: 0 -10px 30px rgba(10, 10, 10, 0.26);
}

.gor-detail-sheet__header {
	display: flex;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 10px 8px 16px;
	color: var(--gor-white);
	background: var(--gor-black);
}

.gor-detail-sheet__title {
	overflow: hidden;
	margin: 0;
	color: inherit;
	font-family: var(--gor-font-display);
	font-size: 1.08rem;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.gor-detail-sheet__close {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	place-items: center;
	padding: 0;
	border: 2px solid var(--gor-white);
	color: var(--gor-black);
	background: var(--gor-green);
	cursor: pointer;
}

.gor-detail-sheet__close svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.gor-detail-sheet__body {
	max-height: calc(min(72vh, 620px) - 54px);
	overflow: auto;
	padding-bottom: max(8px, env(safe-area-inset-bottom));
	overscroll-behavior: contain;
}

.gor-detail-sheet .gor-detail__header {
	padding: 12px 16px 0;
	color: var(--gor-black);
	background: var(--gor-white);
}

.gor-detail-sheet .gor-detail__title {
	display: none;
}

.gor-detail-sheet .gor-detail__meta {
	margin: 0;
	color: #417b1e;
}

.gor-map__tile-retry {
	min-height: 40px;
	flex: 0 0 auto;
	padding: 7px 11px;
	border: 2px solid var(--gor-black);
	border-radius: 0;
	color: var(--gor-black);
	background: var(--gor-green);
	font-family: var(--gor-font-strong);
	font-size: 0.68rem;
	text-transform: uppercase;
	cursor: pointer;
}

.gor-map__tile-retry:hover {
	background: var(--gor-green-bright);
}

.gor-map__loader {
	width: 54px;
	height: 54px;
	border: 5px solid rgba(255, 255, 255, 0.22);
	border-top-color: var(--gor-green);
	border-radius: 50%;
	animation: gor-spin 900ms linear infinite;
}

.gor-button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	gap: 9px;
	margin-top: 20px;
	padding: 10px 17px;
	border: 3px solid var(--gor-white);
	border-radius: 0;
	font-family: var(--gor-font-strong);
	font-size: 0.76rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.gor-button--primary {
	color: var(--gor-black);
	background: var(--gor-green);
	box-shadow: 4px 4px 0 var(--gor-white);
}

.gor-location-icon {
	border: 0;
	background: transparent;
	pointer-events: none;
}

.gor-location-indicator {
	position: relative;
	display: block;
	width: 88px;
	height: 88px;
}

.gor-location-direction {
	position: absolute;
	z-index: 1;
	inset: 0;
	opacity: 0;
	transform-origin: 50% 50%;
	transition: transform 160ms linear, opacity 160ms ease;
}

.gor-location-direction::before,
.gor-location-direction::after {
	position: absolute;
	content: "";
	clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
}

.gor-location-direction::before {
	top: 1px;
	left: 28px;
	width: 32px;
	height: 45px;
	background: var(--gor-black);
	filter: drop-shadow(0 3px 3px rgba(10, 10, 10, 0.3));
}

.gor-location-direction::after {
	top: 5px;
	left: 32px;
	width: 24px;
	height: 36px;
	background: var(--gor-blue);
}

.gor-location-icon.has-heading .gor-location-direction {
	opacity: 0.9;
}

.gor-location-point {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border: 3px solid var(--gor-black);
	border-radius: 50%;
	background: var(--gor-green);
	box-shadow:
		0 0 0 4px rgba(255, 255, 255, 0.9),
		0 0 0 8px rgba(104, 195, 45, 0.3),
		0 3px 8px rgba(10, 10, 10, 0.38);
	transform: translate(-50%, -50%);
}

.gor-map-noscript {
	margin: 0;
	padding: 16px;
	border: 3px solid #0a0a0a;
	color: #ffffff;
	background: #0a0a0a;
	font-family: Arial, sans-serif;
}

.gor-map.gor-map--fullscreen,
.gor-map:fullscreen,
.gor-map:-webkit-full-screen {
	position: fixed;
	inset: 0;
	z-index: 999999;
	width: 100vw;
	max-width: none;
	height: 100vh;
	height: 100dvh;
	min-height: 100vh;
	min-height: 100dvh;
	border: 0;
	margin: 0;
}

.gor-map-body--locked,
.gor-gallery-body--locked,
.gor-share-body--locked {
	overflow: hidden;
	overscroll-behavior: none;
}

.gor-share-overlay,
.gor-share-overlay * {
	box-sizing: border-box;
}

.gor-share-overlay {
	position: fixed;
	z-index: 1000006;
	inset: 0;
	display: grid;
	place-items: center;
	padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
	background: rgba(4, 4, 4, 0.9);
	font-family: "gothamlight", "Open Sans", Arial, sans-serif;
}

.gor-share-overlay__dialog {
	width: min(480px, 100%);
	padding: 18px;
	border: 4px solid #0a0a0a;
	color: #0a0a0a;
	background: #fff;
	box-shadow: 9px 9px 0 #68c32d;
}

.gor-share-overlay__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: -18px -18px 18px;
	padding: 12px 12px 12px 18px;
	color: #fff;
	background: #0a0a0a;
}

.gor-share-overlay__title {
	margin: 0;
	color: inherit;
	font-family: "edo", Impact, "Arial Black", sans-serif;
	font-size: 1.35rem;
	line-height: 1.1;
	text-transform: uppercase;
}

.gor-share-overlay__close {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	place-items: center;
	padding: 0;
	border: 2px solid #fff;
	color: #0a0a0a;
	background: #68c32d;
	cursor: pointer;
}

.gor-share-overlay__close svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.gor-share-overlay__qr {
	display: block;
	width: min(280px, 82vw);
	height: auto;
	margin: 0 auto 16px;
	image-rendering: pixelated;
}

.gor-share-overlay__url {
	overflow-wrap: anywhere;
	padding: 10px;
	border: 2px solid #0a0a0a;
	background: #f1eee7;
	font-size: 0.75rem;
}

.gor-share-overlay__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gor-share-overlay .gor-button {
	margin-top: 0;
	border-color: #0a0a0a;
	color: #0a0a0a;
	background: #fff;
}

.gor-share-overlay .gor-button--primary {
	background: #68c32d;
	box-shadow: 4px 4px 0 #0a0a0a;
}

.gor-visually-hidden {
	position: fixed;
	top: -1000px;
	left: -1000px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.gor-gallery-overlay,
.gor-gallery-overlay * {
	box-sizing: border-box;
}

.gor-gallery-overlay {
	--gor-gallery-green: #68c32d;
	--gor-gallery-green-bright: #7cda24;
	--gor-gallery-black: #0a0a0a;
	--gor-gallery-white: #ffffff;
	position: fixed;
	z-index: 1000005;
	inset: 0;
	display: grid;
	place-items: center;
	padding-top: max(16px, env(safe-area-inset-top));
	padding-right: max(16px, env(safe-area-inset-right));
	padding-bottom: max(16px, env(safe-area-inset-bottom));
	padding-left: max(16px, env(safe-area-inset-left));
	color: var(--gor-gallery-white);
	background: rgba(4, 4, 4, 0.96);
	font-family: "gothamlight", "Open Sans", Arial, sans-serif;
	line-height: 1.45;
	overscroll-behavior: contain;
}

.gor-gallery-overlay[hidden],
.gor-gallery-overlay [hidden] {
	display: none;
}

.gor-gallery-overlay__dialog {
	display: grid;
	width: min(1180px, 100%);
	height: min(900px, calc(100vh - 32px));
	height: min(900px, calc(100dvh - 32px));
	min-height: 0;
	grid-template-rows: auto minmax(0, 1fr) auto;
	border: 3px solid var(--gor-gallery-white);
	background:
		linear-gradient(115deg, rgba(104, 195, 45, 0.09), transparent 35%),
		var(--gor-gallery-black);
	box-shadow: 10px 10px 0 rgba(104, 195, 45, 0.82);
}

.gor-gallery-overlay__header {
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 12px 10px 20px;
	border-bottom: 3px solid var(--gor-gallery-white);
	background: var(--gor-gallery-black);
}

.gor-gallery-overlay__heading {
	display: flex;
	min-width: 0;
	align-items: baseline;
	gap: 16px;
}

.gor-gallery-overlay__title {
	overflow: hidden;
	margin: 0;
	color: var(--gor-gallery-white);
	font-family: "edo", Impact, "Arial Black", sans-serif;
	font-size: clamp(1.15rem, 3vw, 2rem);
	line-height: 1.05;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.gor-gallery-overlay__counter {
	flex: 0 0 auto;
	color: var(--gor-gallery-green-bright);
	font-family: "gothambold", "Arial Black", Arial, sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

.gor-gallery-overlay__close,
.gor-gallery-overlay__nav,
.gor-gallery-overlay__zoom-button {
	display: grid;
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	place-items: center;
	padding: 0;
	border: 3px solid var(--gor-gallery-white);
	border-radius: 0;
	color: var(--gor-gallery-black);
	background: var(--gor-gallery-green);
	box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.28);
	cursor: pointer;
}

.gor-gallery-overlay__close svg,
.gor-gallery-overlay__nav svg,
.gor-gallery-overlay__zoom-button svg {
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.gor-gallery-overlay__close:hover,
.gor-gallery-overlay__nav:hover,
.gor-gallery-overlay__zoom-button:hover {
	background: var(--gor-gallery-green-bright);
}

.gor-gallery-overlay__close:focus-visible,
.gor-gallery-overlay__nav:focus-visible,
.gor-gallery-overlay__zoom-button:focus-visible,
.gor-gallery-overlay__zoom-reset:focus-visible {
	outline: 3px solid var(--gor-gallery-green-bright);
	outline-offset: 3px;
}

.gor-gallery-overlay__zoom {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
}

.gor-gallery-overlay__zoom-button {
	width: 42px;
	height: 42px;
}

.gor-gallery-overlay__zoom-reset {
	min-width: 62px;
	height: 42px;
	padding: 0 8px;
	border: 2px solid var(--gor-gallery-white);
	color: var(--gor-gallery-white);
	background: transparent;
	font-family: "gothambold", "Arial Black", Arial, sans-serif;
	font-size: 0.7rem;
	cursor: pointer;
}

.gor-gallery-overlay__stage {
	display: grid;
	min-height: 0;
	grid-template-columns: 64px minmax(0, 1fr) 64px;
	align-items: center;
	gap: 12px;
	padding: 16px;
	overflow: hidden;
	touch-action: none;
	user-select: none;
}

.gor-gallery-overlay__figure {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 0;
	grid-template-rows: minmax(0, 1fr) auto;
	align-items: center;
	justify-items: center;
	margin: 0;
	overflow: hidden;
}

.gor-gallery-overlay__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	opacity: 1;
	filter: none;
	transform: translateX(0);
	transition: opacity 150ms ease, transform 180ms ease;
	transform-origin: center;
	will-change: transform;
}

.gor-gallery-overlay__image.is-loading {
	opacity: 0.42;
}

.gor-gallery-overlay__image.is-moving-next {
	transform: translateX(18px);
}

.gor-gallery-overlay__image.is-moving-previous {
	transform: translateX(-18px);
}

.gor-gallery-overlay__caption {
	max-width: 780px;
	margin-top: 12px;
	padding: 7px 12px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.82rem;
	line-height: 1.4;
	text-align: center;
}

.gor-gallery-overlay__nav {
	width: 54px;
	height: 54px;
	justify-self: center;
}

.gor-gallery-overlay__hint {
	margin: 0;
	padding: 8px 16px 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.19);
	color: rgba(255, 255, 255, 0.68);
	font-family: "gothambold", "Arial Black", Arial, sans-serif;
	font-size: 0.67rem;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
}

.gor-legend-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 40px;
	align-items: stretch;
	gap: 3px;
}

.gor-legend-row .gor-legend-item {
	grid-template-columns: 34px minmax(0, 1fr) auto 38px;
}

.gor-legend-details {
	display: grid;
	min-width: 40px;
	min-height: 44px;
	place-items: center;
	padding: 0;
	border: 0;
	border-bottom: 1px solid #efede8;
	color: var(--gor-black);
	background: #f3f8ef;
	cursor: pointer;
}

.gor-legend-details:hover,
.gor-legend-details:focus-visible {
	background: var(--gor-green);
}

.gor-legend-details svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.gor-map__location-message,
.gor-guidance,
.gor-browser-panel {
	position: absolute;
	z-index: 1080;
	border: 3px solid var(--gor-black);
	color: var(--gor-black);
	background: var(--gor-white);
	box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.28);
}

.gor-map__location-message[hidden],
.gor-guidance[hidden],
.gor-browser-panel[hidden] {
	display: none;
}

.gor-map__location-message {
	top: 146px;
	left: 76px;
	max-width: min(390px, calc(100% - 170px));
	padding: 9px 12px;
	font-size: 0.74rem;
	font-weight: 700;
	line-height: 1.4;
}

.gor-map__location-message.is-success {
	border-left-color: var(--gor-green);
}

.gor-map__location-message.is-warning {
	background: #fff1b8;
}

.gor-map__location-message.is-error {
	color: #fff;
	background: #a71910;
}

.gor-guidance {
	top: 146px;
	left: 76px;
	width: min(470px, calc(100% - 450px));
	min-width: 300px;
	padding: 11px 13px;
	background: rgba(255, 255, 255, 0.96);
}

.gor-guidance__header,
.gor-guidance__stats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gor-guidance__title {
	font-family: var(--gor-font-strong);
	font-size: 0.82rem;
	text-transform: uppercase;
}

.gor-guidance__percent {
	padding: 3px 7px;
	background: var(--gor-green);
	font-family: var(--gor-font-strong);
	font-size: 0.76rem;
}

.gor-guidance__stats {
	margin-top: 6px;
	color: #4b4b4b;
	font-size: 0.7rem;
}

.gor-guidance__next,
.gor-guidance__warning,
.gor-guidance__waiting {
	display: block;
	margin: 8px 0 0;
	font-size: 0.75rem;
	line-height: 1.35;
}

.gor-guidance__next {
	font-weight: 700;
}

.gor-guidance__warning {
	padding: 7px 9px;
	color: #fff;
	background: #a71910;
}

.gor-browser-panel {
	top: 146px;
	left: 76px;
	display: flex;
	width: min(440px, calc(100% - 450px));
	max-height: calc(100% - 184px);
	min-width: 300px;
	flex-direction: column;
}

.gor-browser-panel__header {
	display: flex;
	min-height: 48px;
	align-items: center;
	justify-content: space-between;
	padding-left: 14px;
	color: #fff;
	background: var(--gor-black);
}

.gor-browser-panel__title {
	margin: 0;
	color: inherit;
	font-family: var(--gor-font-display);
	font-size: 1.1rem;
	text-transform: uppercase;
}

.gor-browser-panel__close {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	border: 0;
	color: #fff;
	background: transparent;
	cursor: pointer;
}

.gor-browser-panel__close svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.gor-browser-panel__search {
	min-height: 46px;
	margin: 10px;
	padding: 8px 10px;
	border: 2px solid var(--gor-black);
	font: inherit;
}

.gor-browser-panel__list {
	min-height: 0;
	overflow: auto;
	padding: 0 10px 10px;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.gor-browser-panel__item {
	display: grid;
	width: 100%;
	gap: 2px;
	padding: 10px;
	border: 0;
	border-bottom: 1px solid #dedbd4;
	color: inherit;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.gor-browser-panel__item:hover,
.gor-browser-panel__item:focus-visible {
	background: #eef8e8;
}

.gor-browser-panel__item span,
.gor-browser-panel__empty {
	font-size: 0.72rem;
}

.gor-detail__report {
	min-height: 42px;
	margin: 10px 14px 14px 4px;
	padding: 8px 12px;
	border: 2px solid var(--gor-black);
	color: var(--gor-black);
	background: #fff1b8;
	font-family: var(--gor-font-strong);
	font-size: 0.68rem;
	text-transform: uppercase;
	cursor: pointer;
}

.gor-report-overlay,
.gor-report-overlay * {
	box-sizing: border-box;
}

.gor-report-overlay {
	position: fixed;
	z-index: 1000007;
	inset: 0;
	display: grid;
	place-items: center;
	padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
	background: rgba(4, 4, 4, 0.9);
	font-family: var(--gor-font-body);
}

.gor-report-overlay__dialog {
	width: min(520px, 100%);
	padding: 18px;
	border: 4px solid var(--gor-black);
	background: #fff;
	box-shadow: 9px 9px 0 var(--gor-green);
}

.gor-report-overlay__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: -18px -18px 16px;
	padding: 10px 10px 10px 18px;
	color: #fff;
	background: var(--gor-black);
}

.gor-report-overlay__title {
	margin: 0;
	color: inherit;
	font-family: var(--gor-font-display);
	font-size: 1.25rem;
	text-transform: uppercase;
}

.gor-report-overlay__close {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	border: 2px solid #fff;
	color: var(--gor-black);
	background: var(--gor-green);
	cursor: pointer;
}

.gor-report-overlay__close svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.gor-report-overlay__form,
.gor-report-overlay__field {
	display: grid;
	gap: 7px;
}

.gor-report-overlay__form {
	gap: 13px;
}

.gor-report-overlay__field span {
	font-weight: 700;
}

.gor-report-overlay select,
.gor-report-overlay textarea {
	width: 100%;
	padding: 9px;
	border: 2px solid var(--gor-black);
	font: inherit;
}

.gor-report-overlay__result {
	min-height: 1.3em;
	margin: 0;
	font-size: 0.76rem;
}

.gor-report-body--locked {
	overflow: hidden;
	overscroll-behavior: none;
}

@keyframes gor-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes gor-pulse {
	to {
		transform: scale(1.18);
	}
}

@media (min-width: 1024px) {
	.gor-map-shell {
		left: 50%;
		width: min(1600px, calc(100vw - 48px));
		max-width: none;
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	.gor-map-shell {
		margin: 1rem 0;
	}

	.gor-map {
		height: max(var(--gor-map-height, 720px), 560px);
		min-height: 560px;
		border-width: 3px;
	}

	.gor-map.gor-map--fullscreen,
	.gor-map:fullscreen,
	.gor-map:-webkit-full-screen {
		height: 100vh;
		height: 100dvh;
		min-height: 100vh;
		min-height: 100dvh;
	}

	.gor-map__header {
		min-height: 66px;
	}

	.gor-map__brand {
		min-width: 0;
		padding: 10px 10px 14px;
	}

	.gor-map__brand-mark {
		width: 38px;
		height: 38px;
	}

	.gor-map__brand-title {
		font-size: 1.1rem;
	}

	.gor-map__stats {
		margin-right: 3px;
	}

	.gor-map__stat {
		min-width: 55px;
		padding: 8px 6px 12px;
	}

	.gor-map__stat:nth-child(2) {
		display: none;
	}

	.gor-map__stat-value {
		font-size: 1rem;
	}

	.gor-map__stat-label {
		font-size: 0.52rem;
		letter-spacing: 0.04em;
	}

	.gor-map__routes {
		inset-block-start: 66px;
		min-height: 56px;
		scroll-snap-type: x proximity;
	}

	.gor-route-filter {
		min-width: 148px;
	}

	.gor-route-filter--all {
		min-width: 108px;
	}

	.gor-map__controls {
		top: 137px;
		left: 10px;
		right: 10px;
		flex-direction: row;
		gap: 6px;
	}

	.gor-map__notices {
		top: 190px;
		right: 10px;
		left: 10px;
		width: auto;
		transform: none;
	}

	.gor-map-notice {
		align-items: flex-start;
		padding: 9px;
	}

	.gor-map-notice__content {
		display: grid;
		gap: 3px;
	}

	.gor-map-notice__text {
		white-space: normal;
	}

	.gor-map__offline-notice {
		right: 12px;
		bottom: 42px;
		left: 12px;
		max-width: none;
	}

	.gor-map__control {
		width: 44px;
		height: 44px;
	}

	.gor-map__control--fullscreen {
		order: 99;
		margin-left: auto;
	}

	.gor-map__location-message,
	.gor-guidance,
	.gor-browser-panel {
		top: 192px;
		right: 9px;
		left: 9px;
		width: auto;
		min-width: 0;
		max-width: none;
	}

	.gor-map__location-message {
		top: 188px;
		left: 62px;
	}

	.gor-guidance {
		top: auto;
		bottom: 40px;
	}

	.gor-browser-panel {
		bottom: 38px;
		max-height: calc(100% - 230px);
	}

	.gor-map.gor-map--fullscreen .gor-map__location-message,
	.gor-map.gor-map--fullscreen .gor-browser-panel {
		top: calc(192px + env(safe-area-inset-top));
	}

	.gor-map.gor-map--fullscreen .gor-guidance {
		bottom: calc(40px + env(safe-area-inset-bottom));
	}

	.gor-map.gor-map--fullscreen .gor-map__header {
		min-height: calc(66px + env(safe-area-inset-top));
		padding-top: env(safe-area-inset-top);
	}

	.gor-map.gor-map--fullscreen .gor-map__routes {
		inset-block-start: calc(66px + env(safe-area-inset-top));
		padding-right: max(10px, env(safe-area-inset-right));
		padding-left: max(10px, env(safe-area-inset-left));
	}

	.gor-map.gor-map--fullscreen .gor-map__controls {
		top: calc(137px + env(safe-area-inset-top));
		right: max(10px, env(safe-area-inset-right));
		left: max(10px, env(safe-area-inset-left));
	}

	.gor-map.gor-map--fullscreen .gor-map__legend {
		right: max(9px, env(safe-area-inset-right));
		bottom: calc(38px + env(safe-area-inset-bottom));
		left: max(9px, env(safe-area-inset-left));
	}

	.gor-map.gor-map--fullscreen .gor-map__tile-notice {
		right: max(12px, env(safe-area-inset-right));
		bottom: calc(42px + env(safe-area-inset-bottom));
		left: max(12px, env(safe-area-inset-left));
	}

	.gor-map.gor-map--fullscreen .leaflet-bottom {
		bottom: env(safe-area-inset-bottom);
	}

	.gor-map__legend {
		inset: auto 9px 38px;
		width: auto;
		max-height: min(58%, 390px);
		transform: translateY(0);
	}

	.gor-map__legend-body {
		padding-right: 10px;
		padding-left: 10px;
	}

	.gor-map__legend.is-collapsed {
		transform: translateY(calc(100% + 48px));
	}

	.gor-map__status {
		inset-block-start: 122px;
	}

	.gor-map__tile-notice {
		inset: auto 12px 42px;
		width: auto;
		transform: none;
		flex-direction: column;
		align-items: stretch;
		gap: 9px;
	}

	.gor-map .leaflet-control-attribution {
		max-width: calc(100vw - 96px);
	}

	.gor-gallery-overlay {
		padding-top: env(safe-area-inset-top);
		padding-right: env(safe-area-inset-right);
		padding-bottom: env(safe-area-inset-bottom);
		padding-left: env(safe-area-inset-left);
	}

	.gor-gallery-overlay__dialog {
		width: 100%;
		height: 100%;
		border: 0;
		box-shadow: none;
	}

	.gor-gallery-overlay__header {
		min-height: 62px;
		padding: 8px 9px 8px 14px;
		border-bottom-width: 2px;
	}

	.gor-gallery-overlay__zoom {
		gap: 3px;
	}

	.gor-gallery-overlay__zoom-button {
		width: 38px;
		height: 38px;
		border-width: 2px;
	}

	.gor-gallery-overlay__zoom-reset {
		display: none;
	}

	.gor-gallery-overlay__heading {
		display: block;
	}

	.gor-gallery-overlay__title {
		max-width: calc(100vw - 88px);
		font-size: 1.08rem;
	}

	.gor-gallery-overlay__counter {
		display: block;
		margin-top: 3px;
		font-size: 0.68rem;
	}

	.gor-gallery-overlay__close {
		width: 46px;
		height: 46px;
	}

	.gor-gallery-overlay__stage {
		position: relative;
		display: block;
		padding: 10px;
		touch-action: none;
	}

	.gor-gallery-overlay__figure {
		height: 100%;
		padding: 0 3px;
	}

	.gor-gallery-overlay__nav {
		position: absolute;
		z-index: 2;
		top: 50%;
		width: 48px;
		height: 48px;
		transform: translateY(-50%);
		box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
	}

	.gor-gallery-overlay__nav--previous {
		left: 10px;
	}

	.gor-gallery-overlay__nav--next {
		right: 10px;
	}

	.gor-gallery-overlay__caption {
		max-width: calc(100vw - 28px);
		margin-top: 8px;
		padding: 6px 8px;
		font-size: 0.76rem;
	}

	.gor-gallery-overlay__hint {
		padding-bottom: max(10px, env(safe-area-inset-bottom));
	}
}

.gor-preview-page {
	margin: 0;
	overflow: hidden;
	background: #0a0a0a;
}

.gor-preview-page .gor-map-shell {
	width: 100%;
	max-width: none;
	margin: 0;
	transform: none;
	left: auto;
}

.gor-preview-page .gor-map {
	height: 100vh;
	height: 100dvh;
	min-height: 0;
	border: 0;
}

.gor-preview-page__label {
	position: fixed;
	z-index: 1000000;
	right: 14px;
	bottom: max(14px, env(safe-area-inset-bottom));
	padding: 8px 11px;
	border: 2px solid #fff;
	color: #0a0a0a;
	background: #68c32d;
	box-shadow: 3px 3px 0 #0a0a0a;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 430px) {
	.gor-map__brand-title {
		max-width: 100px;
		font-size: 0.95rem;
	}

	.gor-map__stat {
		min-width: 48px;
	}

	.gor-map__stat-label {
		max-width: 48px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gor-map *,
	.gor-map *::before,
	.gor-map *::after,
	.gor-gallery-overlay *,
	.gor-gallery-overlay *::before,
	.gor-gallery-overlay *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
}
