@charset "UTF-8";
/* grossmann · _breakpoints.scss — Partial (wird NICHT eigenständig kompiliert).
 * Verbindliches Breakpoint-System (Tobi 2026-06-13), an Elementor ausgerichtet:
 *   mobile      ≤ 767px
 *   tablet      768 – 1024px
 *   desktop     1025 – 1219px
 *   desktop-xl  ≥ 1220px
 * IMMER diese Mixins benutzen — keine ad-hoc px-Breakpoints mehr.
 * Nutzung:  .x { @include mobile { … } }  bzw.  @include tablet-down { … } */
/* „down" = max-width (desktop-first Overrides) · „up" = min-width · sonst = Bereich */
/* ≤ 767 */
/* 768–1024 */
/* ≤ 1024 (Tablet + Mobile) */
/* ≥ 768 */
/* 1025–1219 */
/* ≥ 1025 */
/* ≥ 1220 */
/* Grossmann Text-Bild-Modul (Elementor-Widget „gm-colwrap"). Portiert aus v4,
 * an die Brand-Tokens angepasst. Geladen via get_style_depends() des Widgets.
 * Section-Hintergrund/Padding kommt aus dem Elementor-Container. */
.gm-colwrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.gm-colwrap .colwrap__col {
  font: 400 1.05rem/1.7 var(--f-body);
  color: var(--text);
}
.gm-colwrap .cw__chip {
  display: inline-flex;
  align-items: center;
  background: var(--pink-soft);
  color: var(--pink-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font: 700 0.72rem/1 var(--f-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gm-colwrap .cw__h {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--text);
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 14px 0 16px;
}
.gm-colwrap .cw__rt p {
  margin: 0 0 1.1em;
}
.gm-colwrap .cw__rt p:last-child {
  margin-bottom: 0;
}
.gm-colwrap .cw__rt a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gm-colwrap .cw__rt strong {
  color: var(--text);
  font-weight: 700;
}
.gm-colwrap {
  /* Bild bestimmt die Höhe (width:100%/height:auto) — kein aspect-ratio/cover (Tobi 2026-05-31). */
}
.gm-colwrap .cw__img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.gm-colwrap .cw__img img {
  width: 100%;
  height: auto;
  display: block;
}
.gm-colwrap .cw__img {
  /* margin !important: Elementor injiziert `…figure{margin:0}` (Spezifität 0,4,1) —
     ohne !important klebt das Bild sonst am Text. */
}
.gm-colwrap .cw__img--bl {
  float: left;
  width: 46%;
  margin: 6px 34px 20px 0 !important;
  shape-outside: inset(0 round 18px);
}
.gm-colwrap .cw__img--tr {
  float: right;
  width: 46%;
  margin: 6px 0 20px 34px !important;
  shape-outside: inset(0 round 18px);
}
.gm-colwrap .cw__cta {
  margin: 10px 0 0;
  clear: both;
}
.gm-colwrap .cw__cta .btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 999px;
  font: 700 0.92rem/1 var(--f-display);
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(220, 69, 132, 0.26);
  transition: background 0.2s ease, transform 0.18s ease;
}
.gm-colwrap .cw__cta .btn-pill:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  color: #fff !important;
}
@media (max-width: 1024px) {
  .gm-colwrap {
    grid-template-columns: 1fr;
  }
  .gm-colwrap .cw__img--bl,
  .gm-colwrap .cw__img--tr {
    float: none;
    width: 100%;
    margin: 4px 0 20px !important;
    shape-outside: none;
  }
}

/* CTA unter dem ganzen Modul (Widget-Switcher „cta_below") — volle Breite, Ausrichtung links/mittig/rechts. */
.cw__cta-below {
  display: flex;
  clear: both;
  margin-top: clamp(16px, 2.5vw, 28px);
}
.cw__cta-below .cw__cta {
  margin: 0;
}
.cw__cta-below--left {
  justify-content: flex-start;
}
.cw__cta-below--center {
  justify-content: center;
}
.cw__cta-below--right {
  justify-content: flex-end;
}
