/* Carte interactive — page operateurs / operadores */
.op-world-map-section {
  margin: 32px 0 8px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #faf8f5 0%, #f3efe8 100%);
  border: 1px solid rgba(184, 160, 122, 0.25);
}

.op-world-map-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.op-world-map-header h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.op-world-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 12.5px;
  color: #666;
}

.op-world-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.op-world-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.op-world-map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 420px;
  background: #c5d4e3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.op-world-map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #666;
  z-index: 1;
  pointer-events: none;
}

.op-world-map-country {
  fill: #e8dcc8;
  stroke: #b9a88a;
  stroke-width: 0.4;
  vector-effect: non-scaling-stroke;
}

.op-world-map-land {
  opacity: 0.95;
}

.op-world-map-dot-link {
  cursor: pointer;
  outline: none;
}

.op-world-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.op-world-map-dot {
  cursor: pointer;
  fill: #e07830;
  stroke: #fff;
  stroke-width: 2;
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform-origin: center;
  transform-box: fill-box;
}

.op-world-map-dot:hover,
.op-world-map-dot.is-active {
  transform: scale(1.35);
  fill: #b8a07a;
  opacity: 1 !important;
}

.op-world-map-dot.is-dim {
  opacity: 0.35;
}

.op-world-map-tooltip {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  max-width: 220px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  font-size: 12.5px;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.op-world-map-tooltip.is-visible {
  opacity: 1;
}

.op-world-map-hint {
  margin-top: 10px;
  font-size: 12.5px;
  color: #777;
}

@media (max-width: 640px) {
  .op-world-map-section { padding: 16px; }
  .op-world-map-wrap { max-height: 260px; }
}
