/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 9:23 Expected identifier but found whitespace
Line 9:48 Expected identifier but found "%"

**/
{%- comment -%} Custom: für eigene css regeln {%- endcomment -%}
/* Fließtext-Links (RTE) – Unterstrich einfärben */
.rte a:not(.btn)::after {
  border-bottom-color: #E5007D !important;
  background-color: #E5007D !important;
}

/* Optional: nur im Rich-Text-Block mit .enlarge-text */
.enlarge-text a:not(.btn)::after {
  border-bottom-color: #E5007D !important;
  background-color: #E5007D !important;
}


/* Layout für das Geschenkset-Intro auf der Kategorieseite */
.set-hero {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: row-reverse; /* Desktop: Text links, Bild rechts */
}

/* Bild-Spalte (Desktop) */
.set-hero__image {
  flex: 0 0 40%;
  max-width: 40%;
}

.set-hero__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Text-Spalte (Desktop) */
.set-hero__text {
  flex: 0 0 60%;
  max-width: 60%;
  padding-left: 24px; /* etwas Abstand nach links */
}

/* Mobile: untereinander, Bild oben, Text darunter */
@media screen and (max-width: 749px) {
  .set-hero {
    flex-direction: column;
  }

  .set-hero__image,
  .set-hero__text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0; /* mobil wieder bündig */
  }
}

