/* ==========================================================
   Bellemann – Karte Block
   Full-width embedded map with consent overlay
   NOTE: Typography & colors handled globally
========================================================== */

/* Full-width wrapper breaking out of WP container */
.bellemann-karte {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Map container */
.bellemann-karte__map {
  width: 100%;
  height: 500px;
  position: relative;
  border: 1px solid #ddd; /* local styling only */
  background: #f9f9f9;
  overflow: hidden;
}

/* Consent placeholder overlay */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
  background: #f3f3f3;
}

.map-consent p {
  margin-bottom: 15px; /* spacing override only */
}

/* ----------------------------
   Responsive adjustments
----------------------------- */

@media (max-width: 600px) {
  .bellemann-karte__map {
    height: 350px;
  }
}
