/** Shopify CDN: Minification failed

Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
Line 27:18 Unexpected "{"
Line 27:27 Expected ":"
Line 36:18 Unexpected "{"
Line 36:27 Expected ":"
Line 45:18 Unexpected "{"
Line 45:27 Expected ":"
Line 59:18 Unexpected "{"
Line 59:27 Expected ":"
... and 50 more hidden warnings

**/
/* ==========================================================================
   NDL Promo Highlights
   2x2 Grid mit Promo-Karten, Hintergrundbild + Overlay + CTA
   ========================================================================== */

/* ---- Section ---- */
#shopify-section-{{ section.id }} .ndl_promo-highlights {
  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_promo-highlights__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

/* ---- Grid ---- */
#shopify-section-{{ section.id }} .ndl_promo-highlights__grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, .36rem + 3.18vw, 2.75rem);
  width: 100%;
}

/* ---- Card ---- */
#shopify-section-{{ section.id }} .ndl_promo-card {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 250px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
}

#shopify-section-{{ section.id }} .ndl_promo-card--right {
  align-items: flex-end;
}

/* ---- Background Images ---- */
#shopify-section-{{ section.id }} .ndl_promo-card__img--desktop {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

#shopify-section-{{ section.id }} .ndl_promo-card__img--mobile {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0;
}

/* ---- Overlays ---- */
#shopify-section-{{ section.id }} .ndl_promo-card__overlay {
  z-index: 2;
  position: absolute;
  inset: 0;
}

#shopify-section-{{ section.id }} .ndl_promo-card__overlay--left {
  background-image: linear-gradient(90deg, #282828, #28282800 60%);
}

#shopify-section-{{ section.id }} .ndl_promo-card__overlay--right {
  background-image: linear-gradient(270deg, #282828, #28282800 60%);
}

#shopify-section-{{ section.id }} .ndl_promo-card__overlay--top {
  background-image: linear-gradient(180deg, #282828, #28282800 60%);
}

#shopify-section-{{ section.id }} .ndl_promo-card__overlay--bottom {
  background-image: linear-gradient(0deg, #282828, #28282800 60%);
}

#shopify-section-{{ section.id }} .ndl_promo-card__overlay--mobile {
  display: none;
}

/* ---- Content ---- */
#shopify-section-{{ section.id }} .ndl_promo-card__content {
  z-index: 3;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  position: relative;
}

#shopify-section-{{ section.id }} .ndl_promo-card--right .ndl_promo-card__content {
  align-items: flex-end;
  text-align: right;
}

#shopify-section-{{ section.id }} .ndl_promo-card__heading {
  color: #fff;
  font-size: clamp(1.44rem, 1.5vw + 1rem, 1.66rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: none;
}

#shopify-section-{{ section.id }} .ndl_promo-card__text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* ---- Badge ---- */
#shopify-section-{{ section.id }} .ndl_promo-card__badge {
  z-index: 3;
  background-color: #496099;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* ---- Button ---- */
#shopify-section-{{ section.id }} .ndl_promo-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 1em 2em;
  background-color: #e4a010;
  color: #282828;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

#shopify-section-{{ section.id }} .ndl_promo-card__btn:hover {
  opacity: 0.85;
}

/* ---- Responsive: Tablet ---- */
@media screen and (max-width: 999px) {
  #shopify-section-{{ section.id }} .ndl_promo-highlights__grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }
}

/* ---- Responsive: Phone ---- */
@media screen and (max-width: 767px) {
  #shopify-section-{{ section.id }} .ndl_promo-card {
    aspect-ratio: 1;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card--right {
    justify-content: flex-end;
    align-items: center;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card__content {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card--right .ndl_promo-card__content {
    align-items: center;
    text-align: center;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card__img--desktop {
    display: none;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card__img--mobile {
    display: block;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card__overlay--desktop {
    display: none;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card__overlay--mobile {
    display: block;
  }

  #shopify-section-{{ section.id }} .ndl_promo-card__badge {
    margin-bottom: 0.75rem;
    padding: 0.2rem 0.5rem;
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
    z-index: 3;
  }
}
