/* ============================================================
   effectiv 10er-Karte – 10er.css
   Ergänzungen zu style.css
   ============================================================ */

/* ── KAMPAGNE HERO ──────────────────────────────────────── */
.hero-kampagne {
  background-color: #1a1a1a; /* Fallback */
  position: relative;
  overflow: hidden;
  min-height: 100svh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/background.jpg') center center / cover no-repeat;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Nur links abdunkeln für Lesbarkeit, rechts offen */
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0) 75%
  );
  z-index: 1;
}

.hero-kampagne-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-top: 110px;
  padding-bottom: 5rem;
  gap: 0;
}

/* Eyebrow Badge */
.hero-eyebrow-kampagne {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1.1rem 0.5rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease) 0.1s forwards;
  width: fit-content;
}
.hero-eyebrow-kampagne span:last-child {
  font-size: 0.78rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
/* Pulsierender Dot */
.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f39200;
  flex-shrink: 0;
  position: relative;
}
.eyebrow-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(243,146,0,0.35);
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Haupt-Claim – maximal dominant */
.hero-headline-kampagne {
  font-size: clamp(6rem, 11.5vw, 14rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.0;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.25s forwards;
  /* Akzentlinie links */
  padding-left: 1.25rem;
  border-left: 5px solid #f39200;
}

.hero-benefits {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.2rem 0 2rem;
  padding-left: 1.25rem;
}
.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.hero-benefit svg {
  flex-shrink: 0;
}
.hero-benefit-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: inline-block;
}
@media (max-width: 900px) {
  .hero-benefit-sep { display: none; }
  .hero-benefits { gap: 0.5rem 0.75rem; }
}

.hl-num {
  font-size: 1em;
  line-height: 1;
}
.hl-word {
  font-size: 0.32em;
  vertical-align: middle;
  margin-left: 0.25em;
}

/* Body: Beschreibung + Deal nebeneinander */
.hero-kampagne-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.45s forwards;
}

.hero-kampagne-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-copy-sub-kampagne {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 480px;
}

/* Deal-Badge */
.hero-kampagne-deal {
  flex-shrink: 0;
}
.deal-badge {
  background: #f39200;
  color: #111111;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(243,146,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.deal-badge::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 80%;
  height: 80%;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.deal-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.65);
  margin-bottom: 0.4rem;
}
.deal-badge-title {
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  color: #111111;
  margin-bottom: 0.75rem;
}
.deal-badge-offer {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: #111111;
}
.deal-badge-offer strong {
  font-weight: 900;
}

/* Kettlebells Freisteller */
.hero-kettlebells {
  position: absolute;
  right: 2%;
  bottom: -2%;
  width: clamp(320px, 44vw, 660px);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: heroImg 1s var(--ease) 0.5s forwards;
  filter: drop-shadow(-20px 10px 40px rgba(0,0,0,0.5));
}
.hero-kettlebells img {
  width: 100%;
  height: auto;
  display: block;
}

/* Kampagne-Button (orange) */
.btn-kampagne {
  background: #f39200;
  color: #111111;
  padding: 1.25rem 3rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.btn-kampagne:hover {
  background: #e08500;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(243,146,0,0.4);
}
.btn-kampagne::before {
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}

/* Trust-Line im Kampagne-Hero */
.hero-trust-kampagne {
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

/* Scroll-Indicator Farbe anpassen */
.hero-kampagne .scroll-indicator span {
  background: linear-gradient(to bottom, rgba(243,146,0,0.6), transparent);
}

/* ── HERO COUNTDOWN ─────────────────────────────────────── */
.hero-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.55s forwards;
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(17,17,17,0.12);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  padding: 0.6rem 1rem;
  min-width: 64px;
}
/* Im dunklen Kampagne-Hero: Blöcke heller */
.countdown-block-kampagne {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}
.countdown-num {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: var(--fw-black);
  font-style: italic;
  color: var(--c-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
  margin-top: 3px;
}
.countdown-sep {
  font-size: 1.6rem;
  font-weight: var(--fw-black);
  color: rgba(17,17,17,0.4);
  line-height: 1;
  padding-bottom: 14px;
}
/* Im dunklen Hero: Nummern + Separator weiß */
.hero-kampagne .countdown-num  { color: #ffffff; }
.hero-kampagne .countdown-label { color: rgba(255,255,255,0.45); }
.hero-kampagne .countdown-sep   { color: rgba(255,255,255,0.35); }

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--c-dark);
  padding: 2rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 3rem;
  text-align: center;
}
.trust-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--fw-black);
  font-style: italic;
  color: var(--c-white);
  line-height: 1;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: var(--fw-semi);
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.trust-stars {
  color: var(--c-hero);
  margin-top: 0.25rem;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── ANGEBOT (analog Story) ─────────────────────────────── */
.angebot { background: var(--c-white); }
.angebot-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
.angebot-content { max-width: 560px; }
.angebot-text {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.9;
  color: #444;
}
.angebot-text p { margin-bottom: 0.875rem; }
.angebot-text p:last-child { margin-bottom: 0; }
.angebot-content .btn { margin-top: 2rem; }

.angebot-collage {
  flex-shrink: 0;
  width: clamp(300px, 38vw, 560px);
}

.collage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 55% 45%;
  gap: 0.6rem;
  height: 520px;
}

.col-img-wrap {
  overflow: hidden;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.col-img-wrap.collage-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.col-img-wrap:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  z-index: 1;
}
.col-img-wrap:hover .col-img { transform: scale(1.07); }

/* Linke Spalte: Bild 1 oben groß, Bild 3 unten */
.col-img-wrap-1 { grid-column: 1; grid-row: 1; transition-delay: 0s, 0s; }
.col-img-wrap-3 { grid-column: 1; grid-row: 2; transition-delay: 0.12s, 0s; }
/* Rechte Spalte: Bild 2 oben, Bild 4 unten groß */
.col-img-wrap-2 { grid-column: 2; grid-row: 1; transition-delay: 0.06s, 0s; }
.col-img-wrap-4 { grid-column: 2; grid-row: 2; transition-delay: 0.18s, 0s; }


/* ── LEISTUNGEN ─────────────────────────────────────────── */
.leistungen { background: var(--c-white); }

.leistungen-header {
  margin-bottom: 3rem;
}
.leistungen-header .section-label { display: block; }
.leistungen-header .section-headline { margin-bottom: 0; }

/* ── BENTO GRID ─────────────────────────────────────────── */
.leistungen-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0.875rem;
}

/* Basis für alle Bento-Cards */
.bento-card {
  border-radius: 20px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.bento-card:hover { transform: translateY(-4px); }

/* Große Feature-Card (Geräte) – dunkler Hintergrund, dominiert */
.bento-feature {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
}
.bento-feature::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: rgba(243,146,0,0.08);
  border-radius: 50%;
}

/* Coaching – helles Grau */
.bento-coaching {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  background: #f4f4f4;
}

/* Kurse – weißer Rand, kompakt */
.bento-kurse {
  grid-column: 8 / 11;
  grid-row: 2 / 3;
  background: var(--c-white);
  border: 1.5px solid #e8e8e8;
}

/* Zeiten – orange accent border */
.bento-zeiten {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
  background: var(--c-white);
  border: 1.5px solid #e8e8e8;
}

/* Atmosphäre – grau, volle Breite halb */
.bento-atmo {
  grid-column: 1 / 6;
  grid-row: 3 / 4;
  background: #f4f4f4;
}

/* Standorte – orange, Akzent-Card */
.bento-standorte {
  grid-column: 6 / 13;
  grid-row: 3 / 4;
  background: #f39200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

/* Bento-Nummern: dekorativ, groß */
.bento-num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
}
/* Für helle Cards: dunkle Nummer */
.bento-coaching .bento-num,
.bento-kurse .bento-num,
.bento-zeiten .bento-num,
.bento-atmo .bento-num {
  color: rgba(0,0,0,0.05);
}

.bento-title {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.bento-feature .bento-title { color: #ffffff; font-size: clamp(1.4rem, 2.2vw, 2rem); }
.bento-coaching .bento-title,
.bento-kurse .bento-title,
.bento-zeiten .bento-title,
.bento-atmo .bento-title { color: var(--c-dark); }

.bento-desc {
  font-size: 0.875rem;
  line-height: 1.7;
}
.bento-feature .bento-desc { color: rgba(255,255,255,0.55); }
.bento-coaching .bento-desc,
.bento-kurse .bento-desc,
.bento-zeiten .bento-desc,
.bento-atmo .bento-desc { color: var(--c-grey-text); }

/* Standorte-Card interne Styles */
.bento-standorte-label {
  font-size: 0.65rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
}
.bento-standorte-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--c-dark);
  margin: 0;
}
.bento-standorte-locs {
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(17,17,17,0.65);
  letter-spacing: 0.05em;
}
.bento-standorte-cta {
  margin-top: 0.75rem;
  align-self: flex-start;
  padding: 0.85rem 2rem;
  background: var(--c-dark);
  color: #fff;
  font-size: 0.82rem;
}
.bento-standorte-cta:hover { background: #222; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* ── SELECT & TEXTAREA IN FORM ──────────────────────────── */
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255,255,255,0.35);
  pointer-events: none;
}
.select-wrapper select {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: var(--fw-med);
  color: var(--c-white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-sm);
  padding: 0.9rem 2.5rem 0.9rem 1.1rem;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.select-wrapper select:focus {
  border-color: var(--c-hero);
  background: rgba(243,146,0,0.09);
}
.select-wrapper select option {
  background: #1a1a1a;
  color: var(--c-white);
}
.select-wrapper select option[disabled] {
  color: rgba(255,255,255,0.3);
}

.form-field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: var(--fw-med);
  color: var(--c-white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-sm);
  padding: 0.9rem 1.1rem;
  outline: none;
  resize: vertical;
  min-height: 90px;
  width: 100%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-field textarea:focus {
  border-color: var(--c-hero);
  background: rgba(243,146,0,0.09);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .trust-inner { gap: 0; }
  .trust-item  { padding: 0.75rem 1.5rem; }
  .trust-divider { height: 30px; }

  .angebot-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .angebot-collage { width: 100%; }
  .collage-grid    { height: 380px; }

  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }

  /* Kampagne Hero Mobile */
  .hero-hero-body { grid-template-columns: 1fr; gap: 2rem; }

  .hero-kettlebells {
    display: none;
  }
  .hero-headline-kampagne { font-size: clamp(3.8rem, 16vw, 6.5rem); hyphens: auto; }
  .hl-word { font-size: 0.35em; hyphens: auto; }

  /* Bento → 2 Spalten auf Tablet */
  .leistungen-bento { grid-template-columns: 1fr 1fr; }
  .bento-feature  { grid-column: 1 / -1; grid-row: auto; min-height: 220px; }
  .bento-coaching { grid-column: 1 / 2; grid-row: auto; }
  .bento-zeiten   { grid-column: 2 / 3; grid-row: auto; }
  .bento-atmo     { grid-column: 1 / 2; grid-row: auto; }
  .bento-standorte { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 600px) {
  .trust-inner    { flex-direction: column; gap: 0; }
  .trust-divider  { width: 40px; height: 1px; }
  .trust-item     { padding: 0.75rem 1rem; }

  /* Bento → 1 Spalte auf Mobile */
  .leistungen-bento { grid-template-columns: 1fr; }
  .bento-feature, .bento-coaching,
  .bento-zeiten, .bento-atmo, .bento-standorte {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .bento-feature { min-height: 200px; }
  .bento-num { font-size: 4rem; }

  .hero-countdown { justify-content: center; }
  .countdown-block { min-width: 54px; padding: 0.5rem 0.75rem; }
}

/* ── TESTIMONIALS SLIDER ────────────────────────────────── */
.testimonials { background: #111111; overflow: hidden; }
.testimonials .section-label { color: rgba(255,255,255,0.45); }
.testimonials .section-headline { color: #ffffff; }

.testi-slider-wrap {
  margin-top: 3rem;
}

/* Grid-Container für den Slider */
.testi-slider-outer {
  overflow: hidden;
  border-radius: 24px;
}

.testi-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}

.testi-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  min-height: 480px;
}

.testi-slide-img {
  position: relative;
  overflow: hidden;
}
.testi-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.testi-slide-content {
  background: #1a1a1a;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}

.testi-stars {
  color: #f39200;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.testi-quote {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin: 0;
  font-style: italic;
}

.testi-author {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
}
.testi-name {
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.testi-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 0.5rem;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.testi-btn:hover {
  border-color: #f39200;
  color: #f39200;
  background: rgba(243,146,0,0.08);
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active {
  background: #f39200;
  transform: scale(1.3);
}

.testi-source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .testi-slide { grid-template-columns: 1fr; grid-template-rows: auto 1fr; min-height: auto; }
  .testi-slide-img { aspect-ratio: 4/3; height: auto; border-radius: 24px 24px 0 0; overflow: hidden; }
  .testi-slide-img img { object-fit: cover; object-position: center top; }
  .testi-slide-content { padding: 2rem 1.75rem; }
}
@media (max-width: 600px) {
  .testi-slide { grid-template-rows: auto 1fr; }
  .testi-slide-img { aspect-ratio: 3/4; }
  .testi-slide-content { padding: 1.75rem 1.25rem; gap: 1.25rem; }
}

/* ── KLEINGEDRUCKTES ────────────────────────────────────── */
.kleingedruckt-section {
  background: #f4f4f4;
  padding: 2rem 0;
  border-top: 1px solid #e2e2e2;
}
.kleingedruckt {
  font-size: 0.72rem;
  line-height: 1.75;
  color: #888888;
  max-width: 860px;
}

/* Hero-Body ohne Deal-Badge: volle Breite */
.hero-kampagne-body {
  grid-template-columns: 1fr;
  max-width: 640px;
}
