.slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    height: 500px;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: none;
}

.slider-before img,
.slider-after img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-after {
    clip-path: inset(0 50% 0 0); /* Initially show half of the after image */
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
    transition: none;
}


/* 
main {
    background: #fff7da;
} */