/* =================================
📦 EKSPEDISI SLIDER SHORTCODE (FINAL)
================================= */

.exp-slider-wrap {
  position: relative;
  margin-top: 16px;
}

/* SLIDER */
.exp-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.exp-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.exp-slider-wrap .exp-card {
  flex: 0 0 220px;
  height: 260px; /* 🔥 tinggi fix biar tidak berubah */
  scroll-snap-align: start;

  display: flex;
  flex-direction: column;

  border-radius: 18px;
  overflow: hidden;

  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);

  text-decoration: none;
  color: inherit;

  transition: all .3s ease;
}

.exp-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.exp-card-img {
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BODY */
.exp-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* ROUTE */
.exp-card-route {
  font-size: 11px;
  color: #6e6e73;
  text-transform: uppercase;
  margin-bottom: 6px;

  line-height: 1.2;
  height: 28px; /* 🔥 jaga konsistensi */
  overflow: hidden;
}

/* TITLE */
.exp-card h3 {
  font-size: 14px;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* 🔥 max 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: 40px; /* 🔥 biar tidak loncat */
}

/* INDICATOR (hint geser) */
.exp-slider-wrap::after {
  content: "⇠ Geser";
  position: absolute;
  right: 10px;
  bottom: -4px;
  font-size: 11px;
  color: #999;
}