.product-gallery-video {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1054px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .product-gallery-video {
    width: calc(100% - 400px);
    max-width: 1200px;
    min-width: 900px;
  }
}

@media (min-width: 1200px) {
  .product-gallery-video {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .product-gallery-video {
    max-width: 1400px;
  }
}

.product-gallery-video__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 307px;
  max-height: 546px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 360px) {
  .product-gallery-video__wrapper {
    max-width: 326px;
    max-height: 580px;
  }
}

@media (min-width: 768px) {
  .product-gallery-video__wrapper {
    max-width: 358px;
    max-height: 636px;
  }
}

.product-gallery-video__wrapper:hover .video-mask {
  opacity: 0.3;
}

.product-gallery-video__wrapper video {
  width: 100%;
  height: 100%;
}

.product-gallery-video__wrapper .video-mask {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), lightgray 50%/cover no-repeat;
  opacity: 0.5;
  transition: 0.3s opacity ease-in-out;
}

.product-gallery-video__wrapper .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 40.8px;
  letter-spacing: -0.68px;
  text-transform: uppercase;
}
