.gallery-row {
  display: flex;
  gap: 1%;
  overflow-x: auto;
  padding: 30px;
   white-space: nowrap;
}

.video-card {
  width: 33.3%;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}

.video-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-row::-webkit-scrollbar {
  height: 8px;
}

.gallery-row::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}