/* ═══════════════════════════════════════════════════════
   Slay Image Slider  –  exact trad-skin2 coverflow match
   ═══════════════════════════════════════════════════════ */

.sis-outer {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 60px;
    background: #fff;       /* match your page background */
    box-sizing: border-box;
}

/* Swiper container */
.sis-outer .trad-skin2-swiper {
    width: 100%;
    padding-bottom: 50px !important; /* room for pagination */
}

/* Each slide — matches the 570px width seen in your HTML */
.sis-outer .swiper-slide {
    width: 570px;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: block;             /* works for both <div> and <a> */
    text-decoration: none;
    cursor: default;
}

/* Make linked slides show pointer */
a.swiper-slide,
a.swiper-slide:hover,
.swiper-container a.swiper-slide,
.swiper a.swiper-slide {
    cursor: pointer !important;
}


/* ── Content overlay (title / description) ─────────────── */
.trad-skin2-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px 24px;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
    z-index: 2;
    color: #fff;
}

.trad-skin2-content-title {
    margin: 0 0 6px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.trad-skin2-content-description {
    margin: 0;
    font-size: .95rem;
    color: rgba(255,255,255,.85);
}

/* ── Swiper coverflow shadows (same opacity pattern) ───── */
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    border-radius: 8px;
}

/* ── Pagination dots  (match Elementor style) ──────────── */
.sis-outer .swiper-pagination {
    bottom: 12px;
}

.sis-outer .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #bbb;
    opacity: 1;
    transition: background .25s;
}

.sis-outer .swiper-pagination-bullet-active {
    background: #333;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 640px) {
    .sis-outer .swiper-slide {
        width: 85vw;
        height: 52vw;
        min-height: 200px;
    }
}
