/* Layout */
.expedition-destiny-carousel{
  inline-size: 100%;
  max-inline-size: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Botones */
.expedition-destiny-carousel-controls{
    display:flex;
    gap:.5rem;
    margin-top: .5rem;
    justify-content: center;
}

.expedition-destiny-carousel-btn{
  border:0;
  border-radius:12px;
  padding:.35rem .55rem;
  cursor:pointer;
  background: var(--wp--preset--color--theme-1);
  color: var(--wp--preset--color--white);
  transition: transform .12s ease;
}
.expedition-destiny-carousel-btn:active{
    transform: scale(.96);
}

/* Carrusel */
.expedition-destiny-carousel-track{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-inline: 6px;         /* pequeño gutter interno para que no “muerda” la columna */
  scrollbar-gutter: stable both-edges; /* evita saltos al aparecer scroll */
}
.expedition-destiny-carousel-track::-webkit-scrollbar{ 
    height:6px; 
}
.expedition-destiny-carousel-track::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.15);
  border-radius: 999px;
}

.expedition-destiny-carousel-slide {
  flex: 0 0 clamp(280px, 100%, 320px);
  max-inline-size: 100%;
  scroll-snap-align: start;
}
