.gns-travel-map {
  position: relative;
  width: 100%;
  min-height: var(--gns-map-height, 520px);
  background: var(--gns-background-color, #f5efe6);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(62, 52, 43, 0.08);
}

.gns-travel-map svg {
  display: block;
  width: 100%;
  height: var(--gns-map-height, 520px);
}

.gns-map-marker {
  cursor: pointer;
  transition: r 0.15s ease, fill 0.15s ease;
}

.gns-map-marker:focus {
  outline: none;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.15));
}

.gns-map-popup {
  position: absolute;
  z-index: 5;
  width: min(320px, calc(100% - 24px));
}

.gns-popup-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.gns-popup-image img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.gns-popup-content {
  padding: 16px;
}

.gns-popup-content h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.gns-popup-country {
  margin: 0 0 8px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.gns-popup-summary {
  margin: 0 0 12px;
  line-height: 1.5;
}

.gns-popup-links strong {
  display: block;
  margin-bottom: 6px;
}

.gns-popup-links ul {
  margin: 0;
  padding-left: 18px;
}

.gns-popup-links a {
  color: var(--gns-link-color, #8d5b36);
  text-decoration: none;
}

.gns-popup-links a:hover,
.gns-popup-links a:focus {
  text-decoration: underline;
}

.gns-map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gns-text-color, #3e342b);
  padding: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .gns-travel-map {
    min-height: 420px;
  }

  .gns-travel-map svg {
    height: 420px;
  }

  .gns-map-popup {
    left: 12px !important;
    right: 12px;
    width: auto;
    top: auto !important;
    bottom: 12px;
  }
}
