.vertical-slider-container {
    position: sticky;
    top: 5rem;
    z-index: 900;
    width: 100%;
    max-width: 300px;
    height: 80vh;
    max-height: 700px;
    margin-top: 1.25rem;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-card-bg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

#leftSliderWrapper,
#rightSliderWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

.slide-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease-out;
}

.slide-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .vertical-slider-container {
        display: none;
    }
}