/* ============================================================
   wss-vibranding-slider-home — Slider styles
   Scoped to #slidercs-vibranding to avoid conflicts
   Arrow URLs are injected as CSS custom properties by PHP:
     --svh-arrow-left-black, --svh-arrow-left-red
     --svh-arrow-right-black, --svh-arrow-right-red
   ============================================================ */

#slidercs-vibranding {
    position: relative;
    overflow: hidden;
    margin: 0px auto 80px auto;
    border-radius: 0px;
}

#slidercs-vibranding ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

#slidercs-vibranding ul li {
    position: relative;
    display: table;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    background: #fff;
    text-align: left;
}

/* Show only the first slide; JS reorders via prepend/append */
#slidercs-vibranding ul li:not(:first-child) {
    display: none;
}

/* Navigation arrows */
#slidercs-vibranding a.svh-control-prev,
#slidercs-vibranding a.svh-control-next {
    position: absolute;
    top: 0;
    z-index: 999;
    display: block;
    width: 38px;
    height: 38px;
    text-decoration: none;
    opacity: 1;
    cursor: pointer;
}

#slidercs-vibranding a.svh-control-prev {
    left: 344px;
    background: var(--svh-arrow-left-black) no-repeat center center;
}

#slidercs-vibranding a.svh-control-prev:hover {
    background: var(--svh-arrow-left-red) no-repeat center center;
}

#slidercs-vibranding a.svh-control-next {
    left: 416px;
    background: var(--svh-arrow-right-black) no-repeat center center;
}

#slidercs-vibranding a.svh-control-next:hover {
    background: var(--svh-arrow-right-red) no-repeat center center;
}

/* Two-column layout */
#slidercs-vibranding .sl-izqda {
    display: table-cell;
    max-width: 461px;
    padding-right: 26px;
    width: 461px;
    vertical-align: middle;
}

#slidercs-vibranding .sl-dcha {
    display: table-cell;
    max-width: 1373px;
}

#slidercs-vibranding .sl-dcha img {
    width: 100%;
}

/* Slide counter */
#slidercs-vibranding .sl-num {
    font-family: 'Franklin Gothic URW', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    color: #222222;
    position: absolute;
    top: 1px;
}

/* Text block */
#slidercs-vibranding .sl-txt {
    text-align: left;
}

#slidercs-vibranding .sl-tit {
    font-family: 'Franklin Gothic URW', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    line-height: 32px;
    color: #D6001C;
    margin-top: 10px;
    margin-bottom: 10px;
}

#slidercs-vibranding .sl-desc {
    font-family: 'Franklin Gothic URW', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    color: #222222;
}

@media (max-width: 600px) {
    #slidercs-vibranding ul li {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #slidercs-vibranding a.svh-control-next {
        left: 91%;
    }

    #slidercs-vibranding a.svh-control-prev {
        left: 81%;
    }

    #slidercs-vibranding .sl-izqda,
    #slidercs-vibranding .sl-dcha {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #slidercs-vibranding .sl-txt {
        position: relative;
        top: 15px;
    }

    #slidercs-vibranding {
        margin-bottom: 0;
    }
}
