/* =====================================================
   JA SLIDESHOW LITE - RESTORED WORKING VERSION
   (Fixed for missing Wayback / Joomla template assets)
===================================================== */

.ja-ss-wrap {
  position: relative;
  overflow: hidden;
}

.ja-ss-items {
  position: relative;
  width: 100%;
  height: 100%;
}

.ja-ss-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 474px; /* IMPORTANT: match your slide height */
}

.ja-ss-item.active.animate.next,
.ja-ss-item.active.animate.prev {
  z-index: 2;
}

/* =====================================================
   CORE SLIDES (CORRECT JA MODEL = TRANSFORM BASED)
===================================================== */

.ja-ss-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block !important;
  opacity: 1 !important;
}

/* Active slide */
.ja-ss-item.curr {
  transform: translateX(0%);
  opacity: 1;
  z-index: 3;
}

/* Prev */
.ja-ss-item.prev {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 2;
}

/* Next */
.ja-ss-item.next {
  transform: translateX(100%);
  opacity: 0;
  z-index: 2;
}

/* Images */
.ja-ss-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   DESCRIPTION PANEL
===================================================== */

.ja-ss-desc {
  position: absolute;
  top: 20%;
  left: 30px;
  width: 400px;
  padding: 25px;
  background: #3498db;
  color: #fff;
  text-align: left;
  display: none;
  z-index: 5;
}

@media (min-width: 1280px) {
  .ja-ss-desc {
    display: block;
    left: 90px;
    padding: 50px;
    width: 470px;
  }
}

@media (min-width: 1601px) {
  .ja-ss-desc {
    left: 200px;
    width: 400px;
  }
}

.ja-ss-desc h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.ja-ss-desc p {
  font-size: 15px;
  opacity: 0.7;
  margin: 10px 0 30px;
}

.ja-ss-desc .btn {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* =====================================================
   NAVIGATION BUTTONS
===================================================== */

.ja-ss-btns span {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  cursor: pointer;
  text-indent: -999em;
  background: url("/templates/ja_medicare/images/ctrl-btns.png") no-repeat;
  z-index: 20;
}

.ja-ss-btns .ja-ss-prev {
  left: 10px;
  display: block;
  background-position: 0 0;
}

.ja-ss-btns .ja-ss-next {
  right: 10px;
  display: block;
  background-position: right 0;
}

.ja-ss-btns .ja-ss-stop,
.ja-ss-btns .ja-ss-play,
.ja-ss-btns .ja-ss-playback {
  display: none;
}

/* =====================================================
   THUMBNAILS (SAFEKEEP - NOT USED BUT PRESERVED)
===================================================== */

.ja-ss-thumbs-wrap {
  display: none;
}