#lifestylecarousel .is-peek-right .fake-content {
    display: none;
}

#lifestylecarousel .is-peek-right .ls-image {
    height: 85%;
    min-height: calc(394px - 15%);
    transition: height 0.5s ease, min-height 0.5s ease;
}

#lifestylecarousel .is-peek-left .ls-image {
    height: 85%;
    min-height: calc(394px - 15%);
    transition: height 0.5s ease, min-height 0.5s ease;
}

@media (min-width: 1024px) {
    #lifestylecarousel .is-peek-left .ls-image {
        height: auto;
        min-height: auto;
    }
}
#lifestylecarousel #slide-content-txt {
    opacity: 0;
    transition: opacity 0.4s ease; /* Matches the slider's animationDuration for smooth fade-in */
}

#lifestyle .btn-container {
    position: relative;
}

#lifestyle .btn-container:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 64px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    left: unset;
    right: 0;
    top: 0;
    pointer-events: none;
}

html[dir="rtl"] #lifestyle .btn-container:after {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    left: 0;
    right: unset;
}