/** Shopify CDN: Minification failed

Line 53:12 Expected identifier but found whitespace
Line 53:14 Unexpected "{"
Line 53:23 Expected ":"
Line 53:48 Expected ":"
Line 55:10 Expected identifier but found whitespace
Line 55:12 Unexpected "{"
Line 55:21 Expected ":"
Line 55:48 Expected ":"
Line 56:8 Expected identifier but found whitespace
Line 56:10 Unexpected "{"
... and 60 more hidden warnings

**/


/* CSS from section stylesheet tags */
.video-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-content {
  max-width: {{ section.settings.text_width }}px;
  width: calc(100% - 40px);
  padding: {{ section.settings.text_padding }}px;
  color: {{ section.settings.text_color }};
  background-color: {{ section.settings.text_bg_color }};
  border-radius: 8px;
  text-align: center;
}

.video-content h2 {
  color: {{ section.settings.text_color }};
  font-size: {{ section.settings.heading_size }}px;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.video-content .rte {
  font-size: {{ section.settings.text_size }}px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.video-button {
  display: inline-block;
  padding: {{ section.settings.button_padding }}px {{ section.settings.button_padding | times: 2 }}px;
  background-color: {{ section.settings.button_bg_color }};
  color: {{ section.settings.button_color }};
  font-size: {{ section.settings.button_size }}px;
  text-decoration: none;
  border-radius: {{ section.settings.button_radius }}px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid {{ section.settings.button_bg_color }};
}

.video-button:hover {
  background-color: {{ section.settings.button_hover_bg }};
  color: {{ section.settings.button_hover_color }};
  border-color: {{ section.settings.button_hover_bg }};
}

.video-placeholder {
  background: #f5f5f5;
  padding: 40px;
  text-align: center;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
  .video-content {
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .video-content {
    max-width: 90%;
    padding: 30px;
  }
  
  .video-content h2 {
    font-size: calc({{ section.settings.heading_size }}px * 0.7);
  }
  
  .video-content .rte {
    font-size: calc({{ section.settings.text_size }}px * 0.9);
    margin-bottom: 20px;
  }
  
  .video-button {
    font-size: calc({{ section.settings.button_size }}px * 0.9);
    padding: {{ section.settings.button_padding | times: 0.8 }}px {{ section.settings.button_padding | times: 1.6 }}px;
  }
}

@media screen and (max-width: 480px) {
  .video-content {
    padding: 20px;
    width: calc(100% - 20px);
  }
  
  .video-content h2 {
    font-size: calc({{ section.settings.heading_size }}px * 0.5);
    margin-bottom: 10px;
  }
  
  .video-content .rte {
    font-size: calc({{ section.settings.text_size }}px * 0.8);
    margin-bottom: 15px;
  }
  
  .video-button {
    font-size: calc({{ section.settings.button_size }}px * 0.8);
    padding: {{ section.settings.button_padding | times: 0.7 }}px {{ section.settings.button_padding | times: 1.4 }}px;
  }
}