.vsb-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.vsb-container {
    position: relative;
    overflow: hidden;
}

.vsb-img {
    display: block;
    width: 100%;
    height: auto;
}

.vsb-before {
    position: relative;
    z-index: 1;
}

.vsb-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.vsb-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    z-index: 3;
    transform: translateX(-50%);
}

.vsb-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(12px);
    z-index: 4;
    cursor: ew-resize;
}