.layout {
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.map-wrap {
  --map-footer-height: 82px;
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

#map {
  position: relative;
  z-index: var(--z-map);
  width: 100%;
  height: 100%;
}

.map-footer {
  box-sizing: border-box;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-footer);
  min-height: var(--map-footer-height);
  padding: 8px 20px calc(8px + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

.map-footer-logo-slot {
  box-sizing: border-box;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0;
  overflow: hidden;
}

.map-footer-logo {
  display: block;
  max-width: 92%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}
