/** Shopify CDN: Minification failed

Line 111:0 Unexpected "@"

**/
.video-section__media {
  position: relative;
  padding-bottom: 56.25%;
}

.video-section__media.deferred-media {
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius) rgba(var(--color-shadow), var(--media-shadow-opacity));
}

.video-section__media.deferred-media:after {
  content: none;
}

.video-section__poster.deferred-media__poster:focus {
  outline-offset: 0.3rem;
}

.video-section__media iframe {
  background-color: rgba(var(--color-foreground), 0.03);
  border: 0;
}

.video-section__poster,
.video-section__media iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.video-section {
  position: relative;
}

.video-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none; /* optional: prevents blocking video clicks */
}

.video-overlay-content .title,
.video-overlay-content .video-text,
.video-overlay-content  {
  color: white;
  pointer-events: auto;
}


.video-overlay-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}


.video-overlay-content > * {
  pointer-events: auto;
}


/* Make video section buttons match image banner buttons exactly */
.video-overlay-content .banner__buttons .button {
  --color-button: 255, 255, 255;
  --color-button-text: 255, 255, 255;
  --alpha-button-background: 0;
}

/* Primary button = white outline, transparent background */
.video-overlay-content .banner__buttons .button--primary {
  background: transparent;
  border: 1px solid rgba(255,255,255,1);
  color: #fff;
}

/* Secondary button = solid white background with dark text */
.video-overlay-content .banner__buttons .button--secondary {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

/* Ensure sizing and layout match */
.video-overlay-content .banner__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 45rem;
  word-break: break-word;
  justify-content: center;
      margin-top: 2rem;
}

@/* Match the wider buttons behavior from image banners */
.video-overlay-content .banner__buttons--multiple > * {
  flex-grow: 1;
  min-width: 22rem;
}

@media screen and (min-width: 750px) {
  .video-overlay-content .banner__buttons--multiple > * {
    flex-grow: 1;
    min-width: 22rem;
  }
}
.video-text p {
    margin-top: 1rem;
    margin-bottom: 0;
}


/* Positioning options */
.position-top-left    { justify-content: flex-start; align-items: flex-start; text-align: left; }
.position-top-center  { justify-content: flex-start; align-items: center; text-align: center; }
.position-top-right   { justify-content: flex-start; align-items: flex-end; text-align: right; }

.position-center-left   { justify-content: center; align-items: flex-start; text-align: left; }
.position-center-center { justify-content: center; align-items: center; text-align: center; }
.position-center-right  { justify-content: center; align-items: flex-end; text-align: right; }

.position-bottom-left   { justify-content: flex-end; align-items: flex-start; text-align: left; }
.position-bottom-center { justify-content: flex-end; align-items: center; text-align: center; }
.position-bottom-right  { justify-content: flex-end; align-items: flex-end; text-align: right; }
