/* Container: cegah dokumen melar, reserve ruang untuk nav & progress */
.rpl-slider {
  position: relative;
  overflow: hidden; /* FIX: tidak memanjang, tetap bisa 3+1 ngintip */
  padding-top: 48px; /* ruang nav */
  padding-bottom: 24px; /* ruang progress */
}

/* Swiper viewport */
.rpl-swiper {
  position: relative;
  z-index: 1; /* di bawah overlay */
  overflow: hidden; /* viewport asli */
  padding: 0;
}

/* Slide cards */
.rpl-slider .rpl-card--slim {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.rpl-card__thumb {
  position: relative;
  display: block;
}
.rpl-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.rpl-card__thumb--placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: #e5e7eb;
}

.rpl-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #0f3850;
  color: #fff;
}
.rpl-badge--status {
  left: auto;
  right: 10px;
  background: #0b7285;
}

.rpl-card__body {
  padding: 12px;
}
.rpl-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}
.rpl-card__title a {
  color: #111827;
  text-decoration: none;
}
.rpl-card__address {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 8px;
}
.rpl-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rpl-meta__item {
  font-size: 13px;
  color: #0f6ab4;
}

/* Nav (top-right, di dalam padding-top) */
.rpl-slider__nav {
  position: absolute;
  top: 8px;
  right: 0;
  display: flex;
  gap: 16px;
  z-index: 10;
}
.rpl-slider__nav .rpl-nav {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.rpl-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Progress (bottom-left, di dalam padding-bottom) */
.rpl-slider__progress {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 280px;
  max-width: 40vw;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  z-index: 10;
}
.rpl-slider__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #0ea5a5;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

/* Swiper slides */
.rpl-swiper .swiper-slide {
  height: auto;
}

/* Responsive */
@media (max-width: 767.98px) {
  .rpl-card__title {
    font-size: 16px;
  }
  .rpl-slider__progress {
    width: 160px;
  }
}

/* ===== Variant: Caption (image -> kicker -> title) ===== */
.rpl-card--caption {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.rpl-card--caption .rpl-card__thumb img {
  border-radius: 12px; /* mengikuti mockup baru */
  aspect-ratio: 16/10;
  object-fit: cover;
}
.rpl-card--caption .rpl-card__body {
  padding: 10px 4px 0;
}
.rpl-card__kicker {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}
.rpl-card--caption .rpl-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}
