.hsag-map{
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hsag-map__image{
  width: 100%;
  height: auto;
  display: block;
}

.hsag-map__markers{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hsag-map__marker{
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #97be0d;
  box-shadow: 0 0 0 4px rgba(151,190,13,0.4);
  cursor: pointer;
  pointer-events: auto;
}

.hsag-map__marker:hover{
  transform: translate(-50%, -50%) scale(1.08);
}

.hsag-map__overlay{
  position: fixed;
  inset: 0;
  background: rgba(6,17,28,0.6);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6vh 4vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9999;
}

.hsag-map__overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

.hsag-map__modal{
  background: #07233a;
  color: #fff;
  max-width: 760px;
  width: min(760px, 92vw);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}

.hsag-map__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #9cc5e6;
  color: #9cc5e6;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hsag-map__title{
  color: #fff!important;
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
}

.hsag-map__content{
  font-size: 16px;
  line-height: 1.6;
  color: #e9f2fb;
}

.hsag-map__content a{
  color: #fff;
  border-bottom: 1px solid #9cc5e6;
  text-decoration: none;
}

.hsag-map{
  position: relative;
}

.hsag-map__image{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 75vh; /* hier Höhe steuern */
}

.hsag-map__markers{
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* Overlay-Headline */
.hsag-map__title{
  color: #97be0d;
  margin-bottom: 18px; /* mehr Abstand zur Copy */
}

/* Link-Zeile */
.hsag-map__item-link{
  color: #b5ddf3!important;
  margin-top: 18px;
  font-size: 16px;
}

.hsag-map__link-label{
  color: #ffffff!important;
  margin-right: 6px;
}

.hsag-map__link{
  color: #b5ddf3!important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.hsag-map__link:hover{
  color: #ffffff!important;
  border-color: #ffffff!important;
}

/* Overlay-Headline */
.hsag-map__modal .hsag-map__title{
  color: #97be0d;
  margin-bottom: 18px;
}

/* Link-Zeile (ohne HTML-Änderung) */
.hsag-map__modal .hsag-map__item-link{
  margin-top: 18px;
  font-size: 16px;
}

.hsag-map__modal .hsag-map__item-link a{
  color: #b5ddf3 !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent !important;
  transition: color .2s ease, border-color .2s ease;
}

.hsag-map__modal .hsag-map__item-link a:hover,
.hsag-map__modal .hsag-map__item-link a:focus{
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* "Link:" automatisch davor */
.hsag-map__modal .hsag-map__item-link a::before{
  content: "Link: ";
  color: #ffffff;
  margin-right: 6px;
}





