
/* Nordwest Automobile – statische Kartenansicht */
.map-card-visual{
  padding:0!important;
  display:flex!important;
  flex-direction:column;
  align-items:stretch!important;
  justify-content:stretch!important;
  overflow:hidden;
}

.map-preview{
  position:relative;
  display:block;
  min-height:250px;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}

.map-preview img{
  display:block;
  width:100%;
  height:100%;
  min-height:250px;
  object-fit:cover;
  transition:transform .35s ease,filter .35s ease;
}

.map-preview:hover img{
  transform:scale(1.025);
  filter:brightness(1.08);
}

.map-marker{
  position:absolute;
  left:57.8%;
  top:51.9%;
  width:24px;
  height:24px;
  transform:translate(-50%,-50%);
  border-radius:50% 50% 50% 0;
  background:#c8a75a;
  box-shadow:0 8px 24px rgba(0,0,0,.45);
  rotate:-45deg;
}

.map-marker::after{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:50%;
  background:#111315;
}

.map-card-copy{
  padding:22px 24px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.map-card-copy strong{
  margin-bottom:4px;
}

.map-card-copy span{
  color:var(--muted);
}

.map-card-copy a{
  margin-top:18px;
  color:var(--gold2);
}

@media(max-width:900px){
  .map-preview,
  .map-preview img{
    min-height:220px;
  }
}
