.area-map-wrap {
  position: relative;
}

.area-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
  font-size: 12px;
  color: #555;
}

.area-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.area-map-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.area-map-legend .lg-area { background: #2563eb; }
.area-map-legend .lg-listing { background: #16a34a; }
.area-map-legend .lg-project { background: #7c3aed; }
.area-map-legend .lg-nearby { background: #ea580c; }

.area-map-marker {
  background: transparent !important;
  border: none !important;
}

.area-map-marker-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  font-family: Arial, Helvetica, sans-serif;
}

.area-map-marker--area .area-map-marker-inner {
  width: 34px;
  height: 34px;
  font-size: 13px;
  background: #2563eb;
}

.area-map-marker--listing .area-map-marker-inner {
  width: 26px;
  height: 26px;
  background: #16a34a;
}

.area-map-marker--project .area-map-marker-inner {
  width: 26px;
  height: 26px;
  background: #7c3aed;
}

.area-map-marker--nearby .area-map-marker-inner {
  width: 24px;
  height: 24px;
  background: #ea580c;
}

.area-map-marker--listing .area-map-marker-inner::before {
  content: "⌂";
  transform: rotate(45deg);
  display: block;
  font-size: 14px;
}

.area-map-marker--listing .area-map-marker-inner {
  font-size: 0;
}

.area-map-popup a {
  color: #1b4332;
  font-weight: 700;
}
