
.location-map {
  height: 240px;
  width: 100%;
  margin: 1rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  z-index: 1;
}

.location-map .event-marker {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid white;
  box-shadow: var(--shadow-dropdown);
  background: var(--event-color, var(--plum));
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map .event-marker::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
