.location-map {
  position: relative;
  isolation: isolate;
  background: #d8cdb9;
}

.location-map::after {
  display: none;
}

#enschede-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #e6e0d4;
  z-index: 0;
}

.map-address-card {
  position: absolute;
  z-index: 2;
  top: 96px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  background: rgba(250, 248, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 16px 45px rgba(14, 37, 32, 0.18);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.map-address-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: var(--serif);
  font-size: 14px;
}

.map-address-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.map-address-card strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.map-address-card small {
  color: var(--muted);
  font-size: 10px;
}

.map-expand {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  padding: 11px 15px;
  background: var(--forest);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(14, 37, 32, 0.22);
}

.map-expand:hover {
  background: var(--coral);
}

.location-map .leaflet-top {
  top: 72px;
}

.location-map .leaflet-control-zoom a {
  color: var(--ink);
}

.poi-marker {
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  color: #fff;
  box-shadow: 0 10px 25px rgba(14, 37, 32, 0.28);
  transform: rotate(-45deg);
}

.poi-marker span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  transform: rotate(45deg);
}

.poi-marker-property {
  background: var(--coral);
}

.poi-marker-station {
  background: var(--forest);
}

.poi-marker-parking {
  background: #2f70a8;
}

.poi-marker-restaurants {
  background: var(--gold);
}

.poi-marker-casino {
  background: #86537d;
}

.poi-marker-museum {
  background: #806843;
}

.location-map .leaflet-popup-content-wrapper {
  border-radius: 0;
  box-shadow: 0 14px 40px rgba(14, 37, 32, 0.2);
}

.location-map .leaflet-popup-content {
  display: flex;
  min-width: 150px;
  flex-direction: column;
  gap: 2px;
  font-family: var(--sans);
}

.location-map .leaflet-popup-content strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.location-map .leaflet-popup-content span {
  color: var(--muted);
  font-size: 11px;
}

.location-copy .poi-list li {
  padding: 0;
  border-bottom: 0;
}

.location-copy .poi-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) 26px;
  align-items: center;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.location-copy .poi-list span {
  width: auto;
}

.location-copy .poi-list .poi-time {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.location-copy .poi-list .poi-name {
  color: #fff;
  font-size: 17px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.location-copy .poi-list .poi-action {
  color: var(--coral);
  font-size: 15px;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.location-copy .poi-list button:hover .poi-name,
.location-copy .poi-list button:focus-visible .poi-name {
  color: var(--gold);
  transform: translateX(4px);
}

.location-copy .poi-list button:hover .poi-action,
.location-copy .poi-list button:focus-visible .poi-action {
  opacity: 1;
  transform: none;
}

.location-copy .poi-list button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .map-address-card {
    top: 82px;
    left: 16px;
    padding: 10px 13px 10px 10px;
  }

  .map-address-card > span {
    width: 36px;
    height: 36px;
  }

  .map-expand {
    right: 16px;
    bottom: 16px;
  }

  .location-copy .poi-list button {
    grid-template-columns: 75px minmax(0, 1fr) 22px;
  }
}
