#map {
  position: relative;
  overflow: hidden;
  background: #f6f2ea;
}

#map .nwhs-contact-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#map .nwhs-contact-map-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(35, 35, 35, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  z-index: 5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#map .nwhs-contact-map-badge:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

#map .nwhs-contact-map-symbol {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#map .nwhs-contact-map-symbol img {
  display: block;
  width: 58px;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  #map .nwhs-contact-map-badge {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  #map .nwhs-contact-map-symbol,
  #map .nwhs-contact-map-symbol img {
    width: 50px;
    height: 50px;
  }
}
