/* Hotspot map container */
.hotspot-map {
  position: relative;
}

/* Individual hotspots */
.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  background: center / contain no-repeat;
  cursor: pointer;
}

/* Popup overlay */
.location-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}

/* Popup inner container */
.location-popup-inner {
  position: relative;
  max-width: 640px;
  margin: 5vh auto;
  padding: 24px;
  background: #fff;
}

.location-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  color: #000;
  line-height: 0;
}

.location-popup-close svg {
  display: block;
}

.location-popup-close:hover {
  opacity: 0.7;
}

/* Popup image */
.location-popup-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Popup title */
.location-popup-title {
  margin-top: 16px;
  font-size: 24px !important;
  line-height: 1.3;
  letter-spacing: -1.5px !important;
}

/* Popup content */
.location-popup-body {
  margin-top: 12px;
}



  /* Scale hotspot pointers to 60% on mobile */
  .hotspot {
    transform: scale(0.6);
    transform-origin: center center;
  }
}
.hotspot-map-image img {
  width: 100%;
  height: auto;
  display: block;
}