/** Shopify CDN: Minification failed

Line 6:11 Unexpected "/"

**/
<!-- assets/dual-videos.css -->
.dual-videos {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.dual-videos__container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dual-videos__header {
  text-align: center;
  margin-bottom: 4rem;
}

.dual-videos__heading {
  margin: 0;
  color: rgb(var(--color-foreground));
}

.dual-videos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.dual-videos__item {
  position: relative;
}

.dual-videos__video-title {
  margin: 0 0 1.5rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: rgb(var(--color-foreground));
}

.dual-videos__video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 0rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dual-videos__video-wrapper:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.dual-videos__embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: rgb(var(--color-background));
}

.dual-videos__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.dual-videos__video {
  width: 100%;
  height: auto;
  display: block;
  background: rgb(var(--color-background));
}

.dual-videos__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: rgb(var(--color-background));
  border: 2px dashed rgb(var(--color-border));
  /* border-radius: 1.2rem; */
  color: rgb(var(--color-foreground));
  text-align: center;
  padding: 2rem;
}

.dual-videos__placeholder svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.dual-videos__placeholder p {
  margin: 0;
  font-size: 1.4rem;
  opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 990px) {
  .dual-videos {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .dual-videos__grid {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 749px) {
  .dual-videos {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .dual-videos__container {
    padding: 0 1rem;
  }
  
  .dual-videos__header {
    margin-bottom: 3rem;
  }
  
  .dual-videos__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dual-videos__video-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .dual-videos__video-wrapper:hover {
    transform: none;
  }
}

@media screen and (max-width: 480px) {
  .dual-videos {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .dual-videos__video-wrapper {
    border-radius: 0rem;
  }
  
  .dual-videos__placeholder {
    min-height: 150px;
    padding: 1.5rem;
    border-radius: 0.rem;
  }
  
  .dual-videos__placeholder svg {
    width: 3rem;
    height: 3rem;
  }
  
  .dual-videos__placeholder p {
    font-size: 1.2rem;
  }
}

/* High-DPI displays */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
  .dual-videos__video-wrapper {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }
  
  .dual-videos__video-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  }
}

/* Focus styles for accessibility */
.dual-videos__video:focus,
.dual-videos__embed iframe:focus {
  outline: 2px solid rgb(var(--color-foreground));
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .dual-videos__video-wrapper {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .dual-videos__embed::after {
    content: "Video content not available in print";
    display: block;
    text-align: center;
    padding: 2rem;
    background: #f5f5f5;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .dual-videos__video-wrapper {
    transition: none;
  }
  
  .dual-videos__video-wrapper:hover {
    transform: none;
  }
}

/* Color scheme variations */
.dual-videos.color-accent-1 {
  background: rgb(var(--color-accent-1));
  color: rgb(var(--color-accent-1-text));
}

.dual-videos.color-accent-2 {
  background: rgb(var(--color-accent-2));
  color: rgb(var(--color-accent-2-text));
}

.dual-videos.color-background-1 {
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}

.dual-videos.color-background-2 {
  background: rgb(var(--color-background-2));
  color: rgb(var(--color-foreground-2));
}

.dual-videos.color-inverse {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

/* Gradient support */
.dual-videos.gradient {
  background: rgb(var(--color-background));
  background: var(--gradient-background);
}


.dual-videos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dual-videos__grid--single {
  grid-template-columns: 1fr;
  max-width: 800px; /* Adjust as needed */
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .dual-videos__grid {
    grid-template-columns: 1fr;
  }
}

