/** Shopify CDN: Minification failed

Line 326:12 Unexpected "{"
Line 326:21 Expected ":"

**/
.video-grid-section {
  width: 100%;
}

.video-grid-heading {
  margin-bottom: 35px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}
  .video-slider_subtitle {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 33px;
    text-align: center;
  }
  
  @media screen and (min-width: 767px) {
    .video-slider_subtitle {
      width: 50%;
      margin: 0 auto;
    }
  }
.video-grid-heading.left { text-align: left; }
.video-grid-heading.center { text-align: center; }
.video-grid-heading.right { text-align: right; }

.video-grid-container {
  display: grid;
  grid-template-columns: repeat(var(--grid-desktop), 1fr);
  gap: var(--grid-gap);
  width: 100%;
}

.video-grid-item {
  width: 100%;
  transition: transform 0.3s ease;
}

.video-grid-item:hover {
  transform: translateY(-8px);
}

.video-media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /* border-radius: 16px; */
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.video-grid-item:hover .video-media-wrapper {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: var(--aspect-ratio);
  background: #000;
}

.video-link-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.shopify-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mute/Unmute Button */
.video-mute-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  padding: 0;
}

.video-mute-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-mute-toggle svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Play/Pause Button */
.video-play-pause-toggle {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  padding: 0;
}

.video-play-pause-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-play-pause-toggle svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Placeholder */
.video-placeholder-wrapper {
  width: 100%;
  height: 100%;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  gap: 15px;
}

.placeholder-text {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

/* Content wrapper */
.video-content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Video info section */
.video-info {
  padding: 18px 16px 12px;
  background: white;
}

.video-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.video-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.video-title-link:hover {
  color: #007bff;
  text-decoration: underline;
}

.video-caption {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Link button section */
.video-link-section {
  padding: 0 16px 18px;
  background: white;
  margin-top: auto;
}

.video-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.video-action-link:hover {
  color: #0056b3;
  border-bottom-color: currentColor;
  gap: 12px;
}

.link-text {
  transition: transform 0.3s ease;
}

.link-arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.video-action-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Empty state */
.video-grid-placeholder {
  text-align: center;
  padding: 80px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  border: 2px dashed #dee2e6;
}

.placeholder-title {
  margin: 20px 0 10px 0;
  font-size: 20px;
  font-weight: 600;
  color: #495057;
}

.placeholder-subtitle {
  margin: 0;
  font-size: 16px;
  color: #6c757d;
}

/* Mobile Responsive */
@media screen and (max-width: 989px) {
  .video-grid-container {
    grid-template-columns: repeat(var(--grid-mobile), 1fr) !important;
    gap: calc(var(--grid-gap) * 0.75);
  }
  
  .video-grid-heading {
    margin-bottom: 25px;
  }
  
  .video-info {
    padding: 14px 12px 10px;
  }
  
  .video-link-section {
    padding: 0 12px 14px;
  }
  
  .video-title {
    font-size: 16px;
  }
  
  .video-caption {
    font-size: 13px;
  }
  
  .video-action-link {
    font-size: 14px;
    padding: 8px 0;
  }
  
  .video-mute-toggle,
  .video-play-pause-toggle {
    width: 36px;
    height: 36px;
    bottom: 12px;
  }
  
  .video-mute-toggle {
    right: 12px;
  }
  
  .video-play-pause-toggle {
    left: 12px;
  }
}

@media screen and (max-width: 749px) {
  .section-{{ section.id }}-padding {
    padding-top: calc({{ section.settings.padding_top }}px * 0.7);
    padding-bottom: calc({{ section.settings.padding_bottom }}px * 0.7);
  }
  
  .video-grid-item:hover {
    transform: translateY(-4px);
  }
}

@media screen and (max-width: 480px) {
  .video-grid-heading {
    margin-bottom: 20px;
  }
  
  .video-info {
    padding: 12px 10px 8px;
  }
  
  .video-link-section {
    padding: 0 10px 12px;
  }
  
  .video-title {
    font-size: 15px;
    margin-bottom: 4px;
  }
  
  .video-caption {
    font-size: 12px;
  }
  
  .video-action-link {
    font-size: 13px;
  }
  
  .video-mute-toggle,
  .video-play-pause-toggle {
    width: 32px;
    height: 32px;
    bottom: 10px;
  }
  
  .video-mute-toggle {
    right: 10px;
  }
  
  .video-play-pause-toggle {
    left: 10px;
  }
}

/* Hover effects for controls */
.video-container:hover .video-mute-toggle,
.video-container:hover .video-play-pause-toggle {
  opacity: 1;
}

@media (hover: hover) {
  .video-mute-toggle,
  .video-play-pause-toggle {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  }
  
  .video-container:hover .video-mute-toggle,
  .video-container:hover .video-play-pause-toggle {
    opacity: 1;
  }
}

/* Touch devices always show controls */
@media (hover: none) {
  .video-mute-toggle,
  .video-play-pause-toggle {
    opacity: 1;
  }
}