/* Public property map — Leaflet + Overpass POIs */

.prop-map-section { margin: 32px 0; }
.prop-map {
  height: 420px;
  border-radius: 10px;
  border: 1px solid var(--pub-border, #E4E8F0);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--pub-surface, #F4F6FA);
}
.prop-map-source {
  font-size: 12px;
  color: var(--pub-muted, #6b7280);
  margin: 8px 0 0;
}
.prop-map-source a { color: inherit; }
.map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3581EF;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.map-pin-property {
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  background: #38a169;
}
.map-pin-num {
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 700;
  background: #445773;
}
.poi-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.poi-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--pub-surface, #F4F6FA);
  padding: 4px 10px;
  border-radius: 20px;
}
.prop-poi-list {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px 16px;
  font-size: 14px;
}
.prop-poi-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.prop-poi-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #445773;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .prop-map { height: 280px; }
}
