/* ── MAPA ─────────────────────────────────────────── */
.map-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 440px;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-frame[src=""] { display: none; }

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--card-bg);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.map-placeholder span {
  font-size: 1.8rem;
  filter: grayscale(1) brightness(1.5);
}
.map-placeholder p { font-size: .95rem; font-weight: 600; color: var(--text); }
.map-placeholder small { font-size: .78rem; max-width: 360px; line-height: 1.5; }

.map-frame:not([src=""]) + .map-placeholder { display: none; }

/* ── CARRUSEL DE MAPAS ────────────────────────────── */
.map-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.map-carousel-track-container {
  flex: 1;
  overflow: hidden;
}

.map-carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.map-carousel-slide {
  min-width: 100%;
  padding: 0 .5rem;
}

.map-slide-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}
