.map-page {
  padding: 16px;
  background: #f3f6f8;
}

.map-page__shell {
  display: block;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.map-page__header {
  display: grid;
  gap: 8px;
}

.map-page__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 200;
  line-height: 1;
}

.map-page__intro {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.55;
}

.map-page .map-explorer {
  width: 100%;
  padding: 0;
}

.map-page .map-explorer__layout {
  min-height: clamp(36rem, calc(100svh - 9rem), 58rem);
}

.map-page .map-explorer__map-frame,
.map-page .map-view {
  min-height: inherit;
}

@media (max-width: 760px) {
  .site-document:has(.map-page) {
    height: 100svh;
    overflow: hidden;
  }

  .site-document:has(.map-page) .site-header,
  .site-document:has(.map-page) .site-footer {
    display: none;
  }

  .site-document:has(.map-page) .site-document__main {
    height: 100svh;
  }

  .map-page__header {
    display: none;
  }

  .map-page {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .map-page__shell,
  .map-page .map-explorer,
  .map-page .map-explorer__layout {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .map-page .map-explorer__map-frame,
  .map-page .map-view {
    height: 100%;
    min-height: 0;
  }
}