/* Carte Frontaliers, aux couleurs de NouveauFrontalier.ch */

.cf-map-wrap {
  margin: 28px 0;
  font-family: 'Inter', sans-serif;
}

.cf-map {
  width: 100%;
  height: 460px;
  border-radius: 20px;
  border: 1.5px solid #E8EDF5;
  overflow: hidden;
  z-index: 0;
}

/* Legende */
.cf-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}
.cf-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}
.cf-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}
.cf-dot-geneve { background: #2563EB; }
.cf-dot-bale   { background: #16A34A; }
.cf-dot-jura   { background: #F7C948; }

/* Avertissement */
.cf-map-note {
  font-size: 12.5px;
  color: #6B7280;
  line-height: 1.5;
  margin-top: 12px;
}

/* Fiche du marqueur (popup) */
.cf-pop {
  font-family: 'Inter', sans-serif;
  min-width: 180px;
}
.cf-pop-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 7px;
}
.cf-tag-geneve { background: #2563EB; }
.cf-tag-bale   { background: #16A34A; }
.cf-tag-jura   { background: #A97B00; }
.cf-pop-nom {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0F172A;
  margin-bottom: 4px;
}
.cf-pop-profil {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

/* Dark mode */
body.dark-mode .cf-map { border-color: rgba(255, 255, 255, 0.1); }
body.dark-mode .cf-map-legend-item { color: #CBD5E1; }
body.dark-mode .cf-map-note { color: #94A3B8; }
body.dark-mode .cf-pop-nom { color: #0F172A; }

/* Responsive */
@media (max-width: 600px) {
  .cf-map { height: 380px; }
}
