.leaflet-container {
  z-index: 0;
}
header.sticky {
  z-index: 9999;
}

.radar-pin {
  position: relative;
  width: 40px;
  height: 40px;
}

.radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #bbff01;
  box-shadow: 0 0 10px rgba(151, 174, 6, 0.8);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.radar-wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 50, 50, 0.5);
  transform: translate(-50%, -50%);
  animation: radarPing 2.5s infinite ease-out;
  z-index: 1;
}

@keyframes radarPing {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.4);
    opacity: 0;
  }
}

/* Grid mosaic gallery: tinggi tiap baris */
.gallery-grid {
  grid-auto-rows: 110px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-auto-rows: 150px;
  }
}