/* Общая обёртка */
.wistia-video-cover-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

/* Видео */
.wistia-video-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  display: block;
  max-width: none;
  max-height: none;
  z-index: 2;
}

/* Мобильная заглушка (только до 992px) */
@media (max-width: 991px) {
  .video-placeholder-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://fast.wistia.com/embed/medias/7y5cv87a29/swatch');
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: 9999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease;
  }
}
