/** Shopify CDN: Minification failed

Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
Line 30:18 Unexpected "{"
Line 30:27 Expected ":"
Line 40:18 Unexpected "{"
Line 40:27 Expected ":"
Line 48:18 Unexpected "{"
Line 48:27 Expected ":"
Line 51:18 Unexpected "{"
Line 51:27 Expected ":"
... and 116 more hidden warnings

**/
/* ==========================================================================
   NDL Feature Showcase Section
   Scoped under #shopify-section-{{ section.id }} via Liquid
   ========================================================================== */

/* ---- Section wrapper ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 1.95rem + 2.73vw, 4rem);
  padding-bottom: clamp(2.5rem, 1.95rem + 2.73vw, 4rem);
}

/* ---- Container ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__container {
  --ndl-fs-max: 1440px;
  width: 100%;
  max-width: var(--ndl-fs-max);
  margin: 0 auto;
  padding-right: clamp(1rem, 3vw, 2.5rem);
  padding-left: clamp(1rem, 3vw, 2.5rem);
}

/* ---- Row (2-column grid) ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.36rem + 3.18vw, 2.75rem);
  align-items: stretch;
}

/* ---- Image position swap ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__row--image-left .ndl_feature-showcase__col-text {
  order: 2;
}
#shopify-section-{{ section.id }} .ndl_feature-showcase__row--image-left .ndl_feature-showcase__col-image {
  order: 1;
}

/* ---- Text column ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ---- Content wrapper ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

/* ---- Eyebrow ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__eyebrow {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ---- Heading ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__heading {
  color: var(--ndl-fs-heading-color, currentColor);
  margin: 0 0 0.5rem;
  font-family: Epilogue, Arial, sans-serif;
  font-size: var(--ndl-fs-heading-size-desktop, clamp(2.07rem, 3.5vw + 1rem, 2.75rem));
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

/* ---- Feature badges row ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__features {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* ---- Single feature badge ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__feature-value {
  font-size: clamp(1.2rem, 1vw + 1rem, 1.29rem);
  line-height: 1.45;
  font-weight: 400;
  margin: 0;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__feature-label {
  font-size: 0.83rem;
  line-height: 1.3;
  opacity: 0.7;
  margin: 0;
}

/* ---- Feature divider ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__feature-divider {
  width: 1px;
  height: 20px;
  background-color: currentColor;
  opacity: 0.5;
}

/* ---- Body text ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__text {
  color: var(--ndl-fs-body-text-color, currentColor);
  margin-bottom: 1.6rem;
  font-size: var(--ndl-fs-text-size-desktop, 1rem);
  line-height: 1.5;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__text p {
  margin: 0 0 1rem;
}
#shopify-section-{{ section.id }} .ndl_feature-showcase__text p:last-child {
  margin-bottom: 0;
}

/* ---- CTA Button ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__btn {
  color: var(--ndl-fs-button-text-color, #282828);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1em 2em;
  font-family: Epilogue, Arial, sans-serif;
  font-size: var(--ndl-fs-button-size-desktop, 1rem);
  line-height: 1.1;
  font-weight: 700;
  text-decoration: none;
  text-transform: var(--ndl-fs-button-text-transform, none);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__btn:hover {
  opacity: 0.88;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__btn--primary {
  background-color: #e4a010;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__btn--secondary {
  background-color: #282828;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__btn--custom {
  background-color: var(--ndl-fs-custom-button-bg, #e4a010);
  color: var(--ndl-fs-custom-button-text-color, #282828);
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__btn-text {
  position: relative;
  z-index: 2;
  font-weight: var(--ndl-fs-button-font-weight, 700);
  text-transform: var(--ndl-fs-button-text-transform, none);
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__btn-overlay {
  position: absolute;
  inset: 100% 0 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: inset 0.25s ease;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__btn:hover .ndl_feature-showcase__btn-overlay {
  inset: 0;
}

/* ---- Image column ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__col-image {
  position: relative;
  overflow: hidden;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

#shopify-section-{{ section.id }} .ndl_feature-showcase__img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Image overlay (angled gradient) ---- */
#shopify-section-{{ section.id }} .ndl_feature-showcase__img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Desktop: horizontal angled gradient from left */
#shopify-section-{{ section.id }} .ndl_feature-showcase__row--image-right .ndl_feature-showcase__img-overlay {
  background-image: linear-gradient(100deg, var(--ndl-fs-overlay-color, transparent) 12%, transparent 12%);
}

/* Desktop: horizontal angled gradient from right when image is on the left */
#shopify-section-{{ section.id }} .ndl_feature-showcase__row--image-left .ndl_feature-showcase__img-overlay {
  background-image: linear-gradient(260deg, var(--ndl-fs-overlay-color, transparent) 12%, transparent 12%);
}

/* ==========================================================================
   Desktop: Bild bündig oben/rechts (bzw. links) zum Viewport
   ========================================================================== */

@media screen and (min-width: 1000px) {
  #shopify-section-{{ section.id }} .ndl_feature-showcase {
    padding-top: 0;
    padding-bottom: 0;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__col-text {
    padding-top: clamp(2.5rem, 1.95rem + 2.73vw, 4rem);
    padding-bottom: clamp(2.5rem, 1.95rem + 2.73vw, 4rem);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-breakout .ndl_feature-showcase__container--img-right {
    padding-right: 0;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-breakout .ndl_feature-showcase__container--img-left {
    padding-left: 0;
  }

  /* Breakout aus zentriertem max-width bis zum Viewport-Rand */
  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-breakout .ndl_feature-showcase__row--image-right .ndl_feature-showcase__col-image {
    margin-right: calc((min(var(--ndl-fs-max), 100vw) - 100vw) / 2);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-breakout .ndl_feature-showcase__row--image-left .ndl_feature-showcase__col-image {
    margin-left: calc((min(var(--ndl-fs-max), 100vw) - 100vw) / 2);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-contained .ndl_feature-showcase__col-image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-contained .ndl_feature-showcase__row--image-right .ndl_feature-showcase__col-image {
    justify-content: flex-end;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-contained .ndl_feature-showcase__img-wrapper {
    width: var(--ndl-fs-image-width-desktop, 100%);
    height: auto;
    aspect-ratio: var(--ndl-fs-image-aspect-ratio, 1.7778);
    min-height: 0;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-contained .ndl_feature-showcase__img {
    object-fit: contain;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase--desktop-image-contained .ndl_feature-showcase__img-overlay {
    display: none;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__row--image-right .ndl_feature-showcase__img {
    object-position: top right;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__row--image-left .ndl_feature-showcase__img {
    object-position: top left;
  }

  /* Abstand Text ↔ Button: fest wie bisher (Mobile wird separat gesetzt) */
  #shopify-section-{{ section.id }} .ndl_feature-showcase__text {
    margin-bottom: 1.6rem;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ---- Tablet & below (< 1000px) ---- */
@media screen and (max-width: 999px) {
  #shopify-section-{{ section.id }} .ndl_feature-showcase__row {
    grid-template-columns: 1fr;
  }

  /* Image always on top on mobile */
  #shopify-section-{{ section.id }} .ndl_feature-showcase__col-image {
    order: -1 !important;
  }
  #shopify-section-{{ section.id }} .ndl_feature-showcase__col-text {
    order: 1 !important;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__col-text {
    align-items: stretch;
    text-align: center;
    margin-top: var(--ndl-fs-mobile-image-text-gap, 24px);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__content {
    align-items: stretch;
    text-align: center;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__eyebrow,
  #shopify-section-{{ section.id }} .ndl_feature-showcase__heading {
    width: 100%;
    align-self: var(--ndl-fs-mobile-heading-align-items, center);
    text-align: var(--ndl-fs-mobile-heading-text-align, center);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__features {
    justify-content: var(--ndl-fs-mobile-features-justify-content, center);
    width: 100%;
    margin-bottom: var(--ndl-fs-mobile-features-text-gap, 16px);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__feature {
    align-items: var(--ndl-fs-mobile-features-align-items, center);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__feature--hide-label-mobile .ndl_feature-showcase__feature-label {
    display: none;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__feature-value {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__text {
    align-self: var(--ndl-fs-mobile-text-align-items, center);
    width: 100%;
    margin-bottom: var(--ndl-fs-mobile-text-btn-gap, 28px);
    max-width: 32rem;
    text-align: var(--ndl-fs-mobile-text-align, center);
    font-size: 16px;
    line-height: 1.45;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__btn {
    align-self: var(--ndl-fs-mobile-button-align-items, center);
    min-height: 44px;
    width: min(var(--ndl-fs-mobile-button-width, 214px), 100%);
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__img-wrapper {
    min-height: 200px;
    max-height: 400px;
  }

  /* Mobile: vertical angled gradient (top+bottom) */
  #shopify-section-{{ section.id }} .ndl_feature-showcase__img-overlay {
    background-image: linear-gradient(
      355deg,
      var(--ndl-fs-overlay-color, transparent) 12%,
      transparent 12%,
      transparent 88%,
      var(--ndl-fs-overlay-color, transparent) 88%
    ) !important;
  }
}

/* ---- Phone (< 740px) ---- */
@media screen and (max-width: 739px) {
  #shopify-section-{{ section.id }} .ndl_feature-showcase__heading {
    font-size: clamp(1.88rem, 7vw, 2.25rem);
    line-height: 1.08;
    margin-bottom: 1rem;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__eyebrow {
    margin-bottom: .75rem;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
  }

  #shopify-section-{{ section.id }} .ndl_feature-showcase__img-wrapper {
    min-height: 180px;
    max-height: 300px;
  }
}
