.gallery-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
.video-gallery {
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.video-item {
  background: #f0f0f0;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-item video {
  width: 100%;
  max-width: 350px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.caption {
  color: #555;
  font-size: 1rem;
  text-align: center;
}
