.paola-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}
.paola-scroll-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 2rem 1rem 5rem;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.paola-scroll-container::-webkit-scrollbar {
  display: none;
}
.video-wrapper {
  position: relative;
  flex: 0 0 auto;
  width: 18vw;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
video {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.video-wrapper:hover .play-icon {
  opacity: 1;
}

@media (max-width: 768px) {
  .paola-scroll-container {
    justify-content: flex-start;
  }
  .video-wrapper {
    width: 80vw;
  }
}
