/* --- Salariex Insta Slides (no autoplay, swipe, no arrows) --- */
.salariex-insta-slides {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 12px;
    direction: rtl;
}

.salariex-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000; /* background while images load */
}

.salariex-track-inner {
    display: flex;
    transition: transform 280ms ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
    touch-action: pan-y; /* allow vertical scroll; horizontal swipe handled in JS */
}

.salariex-slide-item {
    flex: 0 0 100%;   /* each slide exactly 100% width */
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.salariex-slide-img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none; /* prevent image drag on mobile */
}

/* Dots */
.salariex-dots {
    position: absolute;
    bottom: 10px;
    left: 0; right: 0;
    display: flex;
    gap: 6px;
    justify-content: center;
    z-index: 4;
    pointer-events: auto;
}
.salariex-dots button {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    border: 0;
    padding: 0;
    cursor: pointer;
}
.salariex-dots button.is-active { background: #fff; }
/* RTL wrapper remains RTL for text/UI */
.salariex-insta-slides { direction: rtl; }

/* Force the sliding track to LTR so translateX math is stable */
.salariex-track,
.salariex-track-inner { direction: ltr; }
