/** Shopify CDN: Minification failed

Line 18:0 Unexpected "<"
Line 30:6 Expected identifier but found whitespace
Line 30:8 Unexpected "{"
Line 30:17 Expected ":"
Line 30:39 Expected ":"
Line 35:10 Expected identifier but found whitespace
Line 35:12 Unexpected "{"
Line 35:21 Expected ":"
Line 35:43 Expected ":"
Line 154:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.custom-promo-section {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.custom-promo-container {
  display: flex;
  flex-wrap: wrap;
  gap: {{ section.settings.spacing }}px;
  margin: 0 calc(-1 * {{ section.settings.spacing }}px);
}

.promo-box-wrapper {
  padding: {{ section.settings.spacing }}px;
  width: calc(33.33% - {{ section.settings.spacing }}px);
  box-sizing: border-box;
}

.promo-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}

.promo-box:hover {
  transform: translateY(-5px);
}

.promo-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--overlay-color, #000000);
  opacity: var(--overlay-opacity, 0.3);
  z-index: 1;
}

.promo-box .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  width: 100%;
  color: var(--text-color, #ffffff);
}

.promo-content.align-left { text-align: left; }
.promo-content.align-center { text-align: center; }
.promo-content.align-right { text-align: right; }

.promo-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 1px;
  color:white;
}

.promo-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.3;
  color:white;
}

.promo-content a.btn {
  background: #fff;
  color: #000;
  padding: 5px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.promo-content a.btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .promo-box-wrapper {
    width: calc(100% / 3);
  }
  
  .promo-content {
    padding: 20px;
  }
  
  .promo-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .promo-box-wrapper {
    width: calc(100% / {{ section.settings.cols_mobile }});
  }
  
  .promo-content {
    padding: 15px;
  }
  
  .promo-content h4 {
    font-size: 12px;
  }
  
  .promo-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .promo-content a.btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}
</style>