/* Gallery video support - fixed preview/card sizing */
.gallery-item-video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #f7eef1;
  position: relative;
}

.gallery-item-video video {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 1 / 1;
  object-fit: cover !important;
  object-position: center;
  border-radius: 16px;
  background: #1a1a1a;
  display: block;
}

.gallery-item-video p {
  display: none !important;
  margin: 0;
}
