/** Shopify CDN: Minification failed

Line 20:16 Expected identifier but found whitespace
Line 20:18 Unexpected "{"
Line 20:27 Expected ":"
Line 20:56 Expected ":"
Line 28:2 Unexpected "{"
Line 28:3 Expected identifier but found "%"
Line 29:11 Expected identifier but found whitespace
Line 29:13 Unexpected "{"
Line 29:22 Expected ":"
Line 29:54 Expected ":"
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.dual-featured-section {
  margin-bottom: {{ section.settings.bottom_spacing }}px;
}

.dual-featured-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;

  {% if section.settings.height_unit == 'vh' %}
    height: {{ section.settings.section_height_vh }}vh;
  {% else %}
    height: {{ section.settings.section_height_px }}px;
  {% endif %}
}

.dual-featured-item {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #fefcfb;
  box-sizing: border-box;
}

.dual-featured-item:last-child {
  border-right: none;
}

.dual-featured-item img,
.dual-featured-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dual-featured-text {
  position: absolute;
  margin: 0;
  padding: 1rem;
  color: var(--text-color, #ffffff);
  font-size: var(--text-size, 18px);
  pointer-events: none;
  z-index: 2;
  max-width: 90%;
  word-break: break-word;
}

.dual-featured-text.top-left { top: 0; left: 0; }
.dual-featured-text.top-right { top: 0; right: 0; }
.dual-featured-text.bottom-left { bottom: 0; left: 0; }
.dual-featured-text.bottom-right { bottom: 0; right: 0; }
.dual-featured-text.center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

@media (max-width: 749px) {
  .dual-featured-grid {
    flex-direction: column;
  }

  .dual-featured-item {
    flex: 1 1 100%;
    margin-bottom: 1px;
    border-right: none;
    border-bottom: 1px solid #fefcfb;
  }

  .dual-featured-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
}