/** Shopify CDN: Minification failed

Line 31:0 Unexpected "}"

**/
.video-container {
  position: relative;
}

.video-container--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.6rem;
}

.video-container .swiper-button-next,
.video-container .swiper-button-prev {
  filter: drop-shadow(0px 0px 2px rgba(var(--color-background), 1.0)) drop-shadow(0px 0px 4px rgba(var(--color-background), 1.0));
}

iframe.featured-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.video--featured-link {
  text-align: center;
  padding-block-end: 1rem;
}
}

/* Video */
.video {
  position: relative;
}

.video--link {}

.video--poster-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
}

.video--overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: all 350ms ease-in-out;
}

.video--overlay:hover,
.video--overlay:focus-within {
  background-color: rgba(var(--color-foreground), 0.2);
}

.video--icon {
  width: 24%;
  max-width: 100px;
  aspect-ratio: 1 / 1;
  transition: all 350ms ease-in-out;
  color: rgba(var(--color-background), 0.7);
}

.video--overlay:hover .video--icon,
.video--overlay:focus-within .video--icon {
  color: rgba(var(--color-background), 0.9);
  scale: 1.2;
}

.video--title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.26rem;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(var(--color-background), 1);
}