/* map.css (oder in deinen helper.css) */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 600px;            /* Standardhöhe */
  border-radius: 0px;
  overflow: hidden;
  background: var(--ci-warmesgrau, #f5f5f5);
}
.map-wrapper.expanded {
  height: 65vh;             /* vergrößerte Karte */
}
.map {
  width: 100%;
  height: 100%;
}
.map-note {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  max-width: 20rem;
}
.map-controls {
  position: absolute;
  right: .75rem;
  top: .75rem;
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.map-open-full {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  z-index: 50;
}
.map-open-full__button {
  box-shadow: var(--fi-shadow-floating);
}
.map-mobile-filter {
  position: absolute;
  left: .75rem;
  top: .75rem;
  z-index: 10;
}
.map-mobile-filter__button {
  box-shadow: var(--fi-shadow-floating);
}
@media (min-width: 1024px) {
  /* Optional: Zwei-Spalten-Layout (Karte groß, Liste schmaler) */
  .map-wrapper.expanded + #results-info,
  .map-wrapper.expanded + #results-info + #adressen-results {
    max-width: 38rem; /* oder passe deine Grid-Columns an */
  }
}


.cluster-marker {
  background-color: var(--ci-dunkelblau);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: var(--fi-shadow-cluster);
}

.fi-event-occurrence-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fi-event-occurrence-list li {
  margin-bottom: 0.25rem;
}
