.maps-mobile-sidebar-toggle,
.maps-mobile-sidebar-overlay {
  display: none;
}

.maps-subtitle {
  white-space: pre-line;
}

@media (max-width: 980px) {
  .maps-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
  }

  .maps-title {
    margin: 0;
    flex: 1 1 auto;
  }

  .maps-subtitle {
    flex-basis: 100%;
    margin-top: 0;
  }

  .maps-mobile-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #163451;
    background: #1f3b5a;
    color: #ffffff;
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    font: 700 0.86rem/1 "DM Sans", "Segoe UI", sans-serif;
    cursor: pointer;
  }

  .maps-mobile-sidebar-toggle:hover {
    background: #102c48;
  }

  .maps-panel-left {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 84vw);
    height: 100dvh;
    margin: 0;
    border-radius: 0 10px 10px 0;
    border-left: none;
    z-index: 70;
    overflow: auto;
    transform: translateX(-105%);
    transition: transform 220ms ease;
    box-shadow: 10px 0 28px rgba(15, 23, 42, 0.24);
  }

  .maps-mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.42);
    cursor: pointer;
  }

  .maps-page.maps-mobile-sidebar-open .maps-panel-left {
    transform: translateX(0);
  }

  .maps-page.maps-mobile-sidebar-open .maps-mobile-sidebar-overlay {
    display: block;
  }

  .maps-page.maps-mobile-sidebar-open {
    overflow: hidden;
  }
}
