/* Default marker — accent secondary (#d29ea2) */
.map-marker {
  width: 36px;
  height: 36px;
  background: #dc767d;
  border: 3px solid #f7f5f6;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(3, 5, 7, .25);
  transition: background .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active marker — accent primary (#321622) */
.map-marker--active {
  background: #7a2348;
  transform: rotate(-45deg) scale(1.2);
}

.map-marker__icon {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  display: block;
  margin-top: 2px;
  margin-right: 2px;
}

.card.location {
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}

.card.location.location--active {
  box-shadow: 0 0 0 2px #321622;
}

.leaflet-popup-content a {
  color: #321622;
}

/* Prevent Altegio widget from locking body scroll */
body.yBodyOverflowHidden {
  overflow: auto !important;
}
