/* Keep the desktop map workspace inside the viewport. Each side column scrolls independently. */
@media (min-width: 761px) {
  body[data-view="explore"] {
    height: 100dvh;
    overflow: hidden;
  }

  body[data-view="explore"] .app-shell,
  body[data-view="explore"] .app-main,
  body[data-view="explore"] .app-view[data-screen="explore"] {
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
  }

  body[data-view="explore"] .app-view[data-screen="explore"] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
  }

  body[data-view="explore"] .explore-layout {
    height: 100%;
    min-height: 0 !important;
    overflow: hidden;
  }

  body[data-view="explore"] .explore-panel,
  body[data-view="explore"] .park-detail-pane {
    height: 100%;
    min-height: 0;
    max-height: none !important;
    overscroll-behavior: contain;
    overflow-y: auto;
  }

  body[data-view="explore"] .map-stage,
  body[data-view="explore"] .map-stage .map-shell,
  body[data-view="explore"] .map-stage #discovery-map {
    height: 100% !important;
    min-height: 0 !important;
  }
}
