.scroll-video-widget {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-video-widget .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.scroll-video-widget .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.1s ease-out;
}

.scroll-video-widget .overlay-left,
.scroll-video-widget .overlay-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 2;
  transition: clip-path 0.1s ease-out;
}

.scroll-video-widget .overlay-left {
  left: 0;
  clip-path: inset(0 50% 0 0);
}

.scroll-video-widget .overlay-right {
  right: 0;
  clip-path: inset(0 0 0 50%);
}
