/* Gallery.css – page-specific only */

.gallery-video-thumb {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-video-thumb img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
}
.play-btn svg { width: 56px; height: 56px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
  .gallery-video-thumb img { height: 220px; }
}
