.travel-swiper-block {
  position: relative;
  width: 100%;
}

/* --- CONTROLES (centrados y alineados) --- */
.swiper-controls {
  display: flex;
  align-items: center;        /* centra verticalmente dots + flechas */
  justify-content: center;    /* centra todo el bloque */
  gap: 18px;                  /* espacio uniforme entre elementos */
  margin-top: 25px;
  height: 40px;
  width: 100%;
}

/* Flechas */
.swiper-button-prev,
.swiper-button-next {
  position: static;           /* no absolutas */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #E78C85;        /* color de hover */
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 14px;
  color: #333;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  color: #fff;
}

/* Dots (centrados entre las flechas) */
.swiper-pagination__mobile {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999;
  opacity: .4;
  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #E78C85;       /* color activo igual a tu marca */
}

/* --- Desktop Grid --- */
@media (min-width: 1024px) {
  .travel-swiper-block .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .travel-swiper-block .swiper-controls {
    display: none;
  }
}

/* --- Cards --- */
.tsb-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.tsb-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tsb-card p {
  padding: 12px;
  font-size: 14px;
  text-align: center;
}
.travel-swiper-block .swiper-pagination__mobile {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
  width: auto !important;
}
