:root {
  color-scheme: light;
  --bg: #f6f3ed;
  --panel: rgba(255, 252, 247, 0.92);
  --text: #0b132b;
  --muted: #5d6472;
  --accent: #ff6b35;
  --accent-soft: #ffd8c9;
  --border: rgba(11, 19, 43, 0.1);
  --shadow: 0 18px 50px rgba(11, 19, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.18), transparent 30%),
    linear-gradient(135deg, #f8f1e7 0%, #eef4f7 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

.sidebar-backdrop,
.details-backdrop,
.lightbox,
.sidebar-close,
.map-toolbar {
  display: none;
}

.sidebar-backdrop[hidden],
.details-backdrop[hidden],
.lightbox[hidden] {
  display: none !important;
}

.layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 100vh;
  gap: 20px;
  padding: 20px;
}

.sidebar,
.map-shell {
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sidebar {
  height: calc(100vh - 40px);
  padding: 28px;
  background: var(--panel);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 53, 0.85) rgba(11, 19, 43, 0.08);
}

.sidebar::-webkit-scrollbar {
  width: 12px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(11, 19, 43, 0.06);
  border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb {
  background:
    linear-gradient(180deg, rgba(255, 107, 53, 0.95), rgba(255, 138, 76, 0.85));
  border: 2px solid rgba(255, 252, 247, 0.9);
  border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 107, 53, 1), rgba(255, 138, 76, 0.95));
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 0.95;
}

.description,
.hint {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.description a,
.popup-card a {
  color: inherit;
}

.filters-section {
  margin-top: 0px;
  display: grid;
  gap: 14px;
}

.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filters-head-copy {
  display: grid;
  gap: 4px;
}

.filters-head h2 {
  margin: 0;
  font-size: 22px;
}

.filters-results,
.filters-status,
.filter-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.search-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.search-input:focus {
  outline: 2px solid rgba(76, 201, 240, 0.28);
  outline-offset: 1px;
  border-color: rgba(76, 201, 240, 0.55);
}

.filters-form {
  display: grid;
  gap: 16px;
}

.filter-group {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
}

.filter-group.is-disabled {
  opacity: 0.6;
}

.filter-group legend {
  padding: 0 8px;
  font-weight: 700;
}

.filter-option {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 10px;
  padding-left: calc(var(--option-level, 0) * 14px);
  color: var(--text);
}

.filter-option.is-disabled {
  color: var(--muted);
}

.filter-option input {
  margin-top: 3px;
}

.filter-option-text {
  line-height: 1.4;
}

.filter-children {
  display: grid;
}

.filter-select {
  display: grid;
  gap: 8px;
}

.filter-select-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.filter-select select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.filter-select select:focus {
  outline: 2px solid rgba(76, 201, 240, 0.28);
  outline-offset: 1px;
  border-color: rgba(76, 201, 240, 0.55);
}

.reset-button,
.map-toolbar-button,
.sidebar-close {
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: white;
  cursor: pointer;
}

.reset-button {
  padding: 10px 14px;
  font-size: 14px;
}

.stats {
  margin: 28px 0;
  padding: 18px;
  display: grid;
  gap: 14px;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.stats dt {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stats dd {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.map-shell {
  min-height: calc(100vh - 40px);
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 40px);
}

.leaflet-top.leaflet-right {
  top: 16px;
  right: 16px;
}

.leaflet-right .leaflet-control {
  margin-right: 0;
}

.leaflet-control-zoom,
.leaflet-control-layers {
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: var(--shadow) !important;
}

.leaflet-control-zoom a,
.leaflet-control-layers-toggle,
.leaflet-control-layers-expanded {
  background: rgba(255, 252, 247, 0.96) !important;
  color: var(--text) !important;
}

.leaflet-control-layers-toggle {
  display: block;
  width: 42px !important;
  height: 42px !important;
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b132b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6.5 9 4l6 2.5L21 4v13.5L15 20l-6-2.5L3 20V6.5Z'/%3E%3Cpath d='M9 4v13.5'/%3E%3Cpath d='M15 6.5V20'/%3E%3C/svg%3E") !important;
  text-indent: -9999px;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background: #dff6ff !important;
}

.leaflet-control-layers-expanded {
  padding: 12px 14px !important;
  min-width: 180px;
}

.leaflet-control-layers label {
  color: var(--text);
}

.leaflet-control-layers {
  display: none;
}

.custom-map-marker-wrapper {
  background: transparent;
  border: 0;
}

.custom-map-marker {
  width: 13px;
  height: 13px;
  background: #1d4ed8;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #505050;
}

.custom-map-marker-high {
   background: #2ad82a;
}

.custom-map-marker-medium {

  background: green;
}

.custom-map-marker-low {
  background: #969696;
}

.custom-map-marker-minimal {
  background: #c3c3c3;
}

.custom-map-cluster-wrapper {
  background: transparent;
  border: 0;
}

.custom-map-cluster {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #1d4ed8;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.popup-card {
  display: grid;
  gap: 10px;
}

.popup-action {
  justify-self: start;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: white;
  cursor: pointer;
  font: inherit;
}

.popup-image-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.popup-card h2 {
  margin: 0;
  font-size: 18px;
}

.popup-card p {
  margin: 0;
  color: var(--muted);
}

.popup-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--accent-soft);
}

.welcome-gallery {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 960;
  width: min(440px, calc(100% - 48px));
  height: min(74vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.welcome-gallery[hidden],
.welcome-gallery-peek[hidden] {
  display: none !important;
}

.welcome-gallery-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.welcome-gallery-copy {
  display: grid;
  gap: 4px;
}

.welcome-gallery-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.welcome-gallery-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 0.95;
}

.welcome-gallery-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.welcome-gallery-toggle,
.welcome-gallery-peek {
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.welcome-gallery-toggle {
  flex: 0 0 auto;
  padding: 10px 14px;
}

.welcome-gallery-peek {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 960;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.welcome-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  grid-auto-rows: max-content;
  gap: 12px;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  opacity: 1;
  transition: opacity 0.14s ease;
}

.welcome-gallery-grid.is-fading {
  opacity: 0.08;
}

.welcome-gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.welcome-gallery-page-button {
  flex: 1 1 0;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(223, 246, 255, 0.96);
  color: #0b4f6c;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.welcome-gallery-page-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.welcome-gallery-card {
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 28px rgba(11, 19, 43, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome-gallery-card:hover,
.welcome-gallery-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 19, 43, 0.18);
}

.welcome-gallery-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--accent-soft);
}

.welcome-gallery-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welcome-gallery-card-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 14px;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.35), transparent 48%),
    linear-gradient(135deg, #f7dfcf 0%, #f2efe9 100%);
  color: #7a2d12;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.welcome-gallery-card-body {
  display: grid;
  gap: 4px;
  padding: 10px 11px 12px;
}

.welcome-gallery-card-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40ch;
}

.details-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: min(540px, calc(100vw - 40px));
  z-index: 1300;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: rgba(255, 252, 247, 0.97);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: translateX(calc(100% + 32px));
  transition: transform 0.28s ease;
  backdrop-filter: blur(14px);
  pointer-events: none;
}

body.details-open .details-panel {
  transform: translateX(0);
  pointer-events: auto;
}

.details-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--border);
}

.details-panel-title {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.details-kicker {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.details-head-address {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}

.details-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.details-copy-status {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
}

.details-content {
  overflow-y: auto;
  padding: 22px;
  overscroll-behavior: contain;
}

.details-expand-bar {
  padding: 0 22px 22px;
  border-top: 1px solid var(--border);
  background: rgba(255, 252, 247, 0.97);
}

.details-expand-button {
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: #0b4f6c;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.details-state {
  display: grid;
  gap: 12px;
  padding: 28px 0;
  color: var(--muted);
}

.details-state-message,
.details-retry-timer {
  margin: 0;
}

.details-retry-button {
  width: fit-content;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.details-card,
.visit-list {
  display: grid;
  gap: 22px;
}

.details-hero,
.details-summary,
.details-section {
  display: grid;
  gap: 10px;
}

.details-summary h2,
.details-section h3,
.visit-card h4 {
  margin: 0;
}

.details-address,
.details-coords,
.details-meta,
.details-muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.details-coords-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.details-coords-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.details-copy-button {
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: #dff6ff;
  color: #0b4f6c;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.details-map-button {
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a2d12;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.details-route-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0b4f6c;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.details-meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.details-description,
.visit-card-text {
  line-height: 1.65;
  color: var(--text);
}

.details-description p,
.visit-card-text p {
  margin: 0 0 12px;
}

.details-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.details-video-list {
  display: grid;
  gap: 12px;
}

.visit-card .details-video-list {
  margin-bottom: 12px;
}

.details-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #0b132b;
  aspect-ratio: 16 / 9;
}

.details-video-embed {
  width: 100%;
  height: 100%;
  border: 0;
}

.details-gallery-link {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.details-gallery-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--accent-soft);
}

.visit-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.visit-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.visit-card-head span {
  color: var(--muted);
  font-size: 14px;
}

.details-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1290;
  background: rgba(11, 19, 43, 0.32);
}

body.details-open .details-backdrop {
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

body.lightbox-open .lightbox {
  display: block;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 32px;
}

.lightbox-image {
  max-width: min(1400px, 100%);
  max-height: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.18s ease;
  touch-action: none;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.18);
  color: white;
  cursor: pointer;
  font-size: 22px;
  backdrop-filter: blur(10px);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.18);
  color: white;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 900px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.sidebar-open,
  body.details-open,
  body.lightbox-open {
    overflow: hidden;
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(11, 19, 43, 0.45);
  }

  body.sidebar-open .sidebar-backdrop {
    display: block;
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    height: 100dvh;
    min-height: 100dvh;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: min(88vw, 360px);
    height: 100vh;
    padding: 22px;
    border-radius: 0 24px 24px 0;
    transform: translateX(-102%);
    transition: transform 0.25s ease;
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-close {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: 0 0 auto;
  }

  .map-toolbar {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
    right: 132px;
    z-index: 1000;
    pointer-events: none;
  }

  .map-toolbar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .map-toolbar-button {
    pointer-events: auto;
    padding: 12px 16px;
    box-shadow: var(--shadow);
  }

  .map-toolbar-button-secondary {
    background: rgba(223, 246, 255, 0.96);
    color: #0b4f6c;
  }

  .map-toolbar-button-gallery {

    max-width: 220px;
  }

  .leaflet-top.leaflet-right {

    right: 16px;
  }

  .map-shell,
  #map {
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
  }

  .welcome-gallery {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    height: 54vh;
    padding: 14px;
    gap: 12px;
    border-radius: 24px;
    overscroll-behavior: contain;
  }

  .welcome-gallery-head {
    gap: 12px;
  }

  .welcome-gallery-copy h2 {
    font-size: 22px;
  }

  .welcome-gallery-note {
    font-size: 12px;
  }

  .welcome-gallery-toggle {
    padding: 9px 12px;
  }

  .welcome-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .welcome-gallery-peek {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    justify-content: center;
  }

  .filters-head {
    align-items: start;
  }

  .filters-head h2 {
    font-size: 20px;
  }

  .details-panel {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 82vh;
    border-radius: 26px 26px 0 0;
    transform: translateY(102%);
  }

  body.details-open .details-panel {
    transform: translateY(0);
  }

  .details-panel.is-compact {
    max-height: 48vh;
  }

  .details-panel-head,
  .details-content,
  .details-expand-bar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .details-panel.is-compact .details-content {
    position: relative;
    overflow: hidden;
    padding-bottom: 12px;
  }

  .details-panel.is-compact .details-summary {
    display: none;
  }

  .details-panel.is-compact .details-content::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 252, 247, 0), rgba(255, 252, 247, 0.97));
    pointer-events: none;
  }

  .details-gallery-image {
    max-height: 600px;
  }

  .visit-card-head {
    align-items: start;
    flex-direction: column;
  }

  .lightbox-figure {
    padding: 16px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .lightbox-image {
    max-height: calc(100vh - 32px);
    border-radius: 16px;
  }
}

.leaflet-control-attribution{
  display:none;
}
