.clips{
    padding: 4rem 3rem;
}
.clips .video-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 55px;
}
.clips .video-container .video-item{
    width: 350px;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    padding: 12px;
}
.clips .video-container .video-item video{
    width: 100%;
    height: 400px;
    border-radius: 0.5rem;
}

.marquee-section {
  padding: 40px 0;
}

.title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: scroll 25s linear infinite;
}

.marquee img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-right: 1px solid #ccc;
}

/* Continuous movement */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
