/* ===================== Organigramm Banner ===================== */
.organigramm-banner {
  background-color: white;
  padding: 20px;
}

/* Verlauf */
.organigramm-banner-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Standard: oben anfangen */
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(
    to top,
    #c2acc3 0%,
    #cebacd 50%,
    #d8c7d8 100%
  );
  min-height: 530px; /* Bannerhöhe */
  overflow: hidden; /* PNG bleibt im Container */
}




/* Bild füllt Fläche */
.organigramm-banner-img {
  position: absolute;
  right: 0%;      /* Abstand vom rechten Rand */
  bottom: 50px;   /* Abstand über Facts-Streifen */
  width: 45%;     /* gewünschte Größe */
  height: auto;   /* proportional */
  display: block;
}


/* Text über dem Bild */
.organigramm-banner-text {
  position: absolute;
  top: 30px;
  left: 3%;
  max-width: 56%;
  color: black;
}


/* Typo – Banner */
.organigramm-banner-text h1 {
  font-size: 5rem;      /* Hauptheadline */
  margin: 0 0 10px 0;
  color: white;
}

.organigramm-banner-text h2 {
  font-size: 2rem;      /* Subheadline */
  margin: 0 0 10px 0;
}

.organigramm-banner-text p {
  color: #963e8f;   /* Zusatzinfo */
    font-weight: 600;
}

/* ===================== Banner Button ===================== */
.hero-btn-banner {
  background-color: #963e8f;   /* lila */
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;          /* pillenförmig */
  display: inline-block;
  transition: all 0.3s ease;
    margin-top: 20px;  /* ← Abstand nach oben zum Text */
    flex-wrap: wrap;
}

.hero-btn-banner:hover {
  background-color: #7c2f77;    /* etwas dunkler */
  transform: translateY(-2px);
}

/* Mobile Anpassung */
@media (max-width: 1024px) {
  .hero-btn-banner {
    font-size: 1.2rem;
    padding: 14px 28px;
    width: auto;
    text-align: center;
  }
}



/* ===================== Mobile Organigramm Banner ===================== */

/* ===================== TABLET (769–1024px) ===================== */
@media (max-width: 1024px) and (min-width: 769px) {

  .organigramm-banner-box {
    min-height: 480px;
  }

  .organigramm-banner-text {
    top: 20px;
    left: 4%;
    max-width: 65%;
  }

  .organigramm-banner-text h1 {
    font-size: 3.2rem;
  }

  .organigramm-banner-text h2 {
    font-size: 1.4rem;
  }

   .organigramm-banner-text h5 {
    font-size: 1.2rem;
  }
  
  .organigramm-banner-img {
    width: 50%;
    right: -3%;
    bottom: 65px;
  }
}


@media (max-width: 768px) {
  
  .organigramm-banner-box {
    display: flex;
    flex-direction: column;
height: auto;  }

  .organigramm-banner-text {
    position: relative;
    order: 1;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    left: auto;
    right: auto;
  }

  .organigramm-banner-img {
    position: relative;  /* 🔹 im Flow unter Text */
    order: 2;
    width: 100%;         /* volle Breite mobil */
    height: auto;        /* proportional */
   margin: 100px 50% 0 10px; /* oben 100px, rechts 0, unten 0, links 15% */
    display: block;
    object-fit: cover;
    object-position: center; /* PNG mittig unter Text */
  }
  
/* 🔹 Mobile Schriftgrößen */
  .organigramm-banner-text h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
  }

  .organigramm-banner-text h2 {
    font-size: 1.4rem;
      margin: 0 0 0px 0;
  }

  .organigramm-banner-text h5 {
    font-size: 1.2rem;
  }
}


/* ===================== Banner Facts Streifen ===================== */
.banner-facts {
  position: relative;       
  margin-top: auto;         
  width: 100%;
  background-color: #963e8f;
  color: #fff;              /* Schrift weiß */
  display: flex;
  justify-content: space-evenly; /* Items gleichmäßig horizontal */
  align-items: center;      
  flex-wrap: wrap;          
  padding: 12px 16px;       /* Abstand oben/unten und links/rechts */
  box-sizing: border-box;   
}


.banner-facts > div {
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;      /* Fact bleibt in einer Zeile */
}

/* Tablet */
@media (max-width: 1024px)  {
  .banner-facts {
     padding: 16px; /* Abstand zwischen Items */
   order: 3;        /* Facts-Streifen immer am Ende */
  }
  
  .banner-facts  > div {
    font-size: 1rem;
     text-align: center;
        flex: 1 1 100px;   /* wächst und schrumpft automatisch, Basisbreite 200px */
     white-space: nowrap;      /* Fact bleibt in einer Zeile */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner-facts {
    gap: 20px;
        order: 3;        /* Facts-Streifen immer am Ende */
  }
  
  .banner-facts > div {
    font-size: 0.85rem;
  }
}
}





/* ===================== Organigramm Basis ===================== */
/* ===================== Organigramm Basis ===================== */
/* ===================== Organigramm Basis ===================== */
.organigramm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.organigramm-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.box-with-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box {
    background-color: white;
    border: 0.5px solid #963e8f;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    width: fit-content;
    position: relative; /* wichtig für Connectoren */
    max-width: 660px;
 /* 🔹 Fix für Zentrierung der Boxen */
    margin-left: auto;
    margin-right: auto;
}


.box.light {
    background-color: #fccafc;
}

.box.medium {
    background-color: #faafaf;
}

.box.top {
    font-size: 1.4rem;
}

.top-image {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}

/* ===================== Typo in boxen ===================== */
.title {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.subtitle {
    text-align: left;
    font-size: 1rem;
    margin: 0 auto 10px;    /* oben 0, unten 10px, horizontal auto = zentriert */
}

.box ul {
  font-size: 1.2rem;       /* gleiche Größe wie dein p */
  line-height: 1.4;      /* optional, wie p */
}


/* Transparente Boxen mit dezenter Kontur für die beiden Intro-Module */
.intro-gua-sha {
    background-color: #fccafc; /* Light / Gua Sha */
    border: 1.5px dashed rgba(150, 62, 143, 0.4);
}

.intro-schroepfen {
    background-color: #faafaf; /* Medium / Schröpfen */
    border: 1.5px dashed rgba(150, 62, 143, 0.4);
}


/* ===================== Vertikale Linien ===================== */
.connector.vertical {
    width: 2px;
    background-color: #963e8f;
    height: 40px;
    margin: 0 auto;
}

/* ===================== Connector Mobile Only ===================== */
/* Standard: unsichtbar */
.connector-mobile-only {
    display: none;
}

/* Mobile: sichtbar wie normale vertikale Linie */
@media (max-width: 1024px) {
    .connector-mobile-only {
        display: block;
        width: 2px;
        height: 50px; /* gleiche Höhe wie .connector.vertical */
        background-color: #963e8f;
        margin: 0 auto;
    }
}

/* ===================== T-Knoten für Woche 1 ===================== */
.t-row {
    position: relative;
    width: 700px; /* Abstand zwischen Boxen */
    height: 30px;
    margin: 0 auto;
}

/* Horizontale Linie */
.connector.horizontal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #963e8f;
}

/* Vertikale Linien vom T-Knoten zu den Boxen */
.connector.vertical.to-box {
    position: absolute;
    width: 2px;
    height: 30px;
    background-color: #963e8f;
    top: 0;
}

/* linke Linie */
.connector.vertical.to-box.left {
    left: 0;
}

/* rechte Linie — FIX */
.connector.vertical.to-box.right {
    right: 0;
}


/* ===================== Umgekehrter T-Knoten – FIX ===================== */
.inverted-t-row {
    position: relative;
    width: 700px;
    height: 30px;
    margin: 0 auto;
}

/* überschreibt .connector.vertical NUR hier */
.inverted-t-row .connector.vertical {
    margin: 0;              /* 🔑 DAS ist der Fix */
    position: absolute;
}

/* vertikale Linien */
.inverted-t-row .connector.vertical.from-box {
    top: 0;
    width: 2px;
    height: 30px;
    background-color: #963e8f;
}

.inverted-t-row .connector.vertical.from-box.left {
    left: 0;
}

.inverted-t-row .connector.vertical.from-box.right {
    right: 0;
}

/* horizontale Linie unten */
.inverted-t-row .connector.horizontal.bottom {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #963e8f;
}


/* ====== resoponsive Organigramm ====== */
@media (max-width: 1024px){

  /* Boxen innerhalb der Row untereinander */
  .organigramm-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Abstand innerhalb der Row */
  }
  
    .boxabstand {
    margin-bottom: 20px;
  }

  /* Boxen: maximale Breite 50% in Landscape, 100% in Portrait */
  .organigramm-row .box {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Optional: Bilder skalieren */
  .organigramm-row .box img {
    max-width: 100%;
    height: auto;
  }

  /* T-Knoten & horizontale Linien ausblenden */
  .t-row,
  .inverted-t-row,
  .connector.horizontal {
    display: none;
  }
  
  .organigramm-row .intro-gua-sha,
  .organigramm-row .intro-schroepfen {
    width: 100%;        /* überschreibt fit-content */
    box-sizing: border-box;
        max-width: 840px;
  }
  

}


@media (max-width: 768px) {

    /* ====== ALLE T-KNOTEN AUSBLENDEN ====== */
    .t-row,
    .inverted-t-row {
        display: none;
    }

    /* ====== horizontale Linien komplett weg ====== */
    .connector.horizontal {
        display: none;
    }

    /* ====== seitliche vertikale Linien weg ====== */
    .connector.vertical.to-box,
    .connector.vertical.from-box {
        display: none;
    }

    /* ====== Rows untereinander statt nebeneinander ====== */
    .organigramm-row {
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }

    /* ====== Boxen etwas schmaler für Mobile ====== */
    .box {
        max-width: 100%;
    }
}

/* ===================== Bezahlbereich ===================== */
.payment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
margin: 0px 0 0 0;
  background-color: white;
    padding: 20px 20px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

/* Call-to-Action Text */
.payment-cta {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Preis selbst */
.payment-price {
    font-size: 3rem;
    color: #f23737;
    margin-bottom: 30px;
}


.payment-section .ergebnisse-galerie-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
}

/* Buttons Container */
.payment-buttons {
    display: flex;
    flex-wrap: wrap;           /* Buttons umbrechen bei Bedarf */
    justify-content: center;
    gap: 20px;                 /* Abstand zwischen Buttons */
    width: 100%;
    align-items: flex-start;   /* Höhe der Buttons unabhängig */
}

/* Buttons selbst */
.payment-buttons .hero-btn {
    width: auto;               /* natürliche Breite, nur so breit wie Text */
    padding: 12px 25px;
    font-size: 1.6rem;
    text-align: center;
    white-space: normal;       /* Text darf umbrechen */
    flex: 0 0 auto;            /* kein Wachsen oder Schrumpfen */
    box-sizing: border-box;
}

/* ===================== Tablet (iPad) Anpassungen ===================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .payment-cta {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .payment-buttons .hero-btn {
        font-size: 1.5rem;
        padding: 12px 22px;
          margin: 0 10px;
    }
  
  .payment-section .ergebnisse-galerie-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
}

/* ===================== Mobile (<768px) ===================== */
@media (max-width: 767px) {
    .payment-cta {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .payment-buttons {
        flex-direction: column;  /* Buttons untereinander */
        gap: 15px;
        align-items: center;
    }

    .payment-buttons .hero-btn {
        width: auto;              /* natürliche Breite auch auf Mobile */
        font-size: 1.5rem;
        padding: 12px 20px;
        white-space: normal;      /* Text umbrechen */
    }
  
    .payment-section .ergebnisse-galerie-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
}















/*Der Seitenkopf von Cassiopeia hat die Klasse "header" du steuerst diese also mit .header an */
.header {
 background: #d79dc2;
background: linear-gradient(#d79dc2),
rgba(0,212,255,1) 100%);
}

.btn-primary {
 background: #d79dc2;
  border: 0px;
}

.btn-primary:hover {
 background: #166295;
}


#redim-cookiehint{
	padding: 20px 20px;
	box-sizing: border-box;
	font-size: 16px;
	-webkit-box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.21);
	-moz-box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.21);
	box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.21);

	background-color: #593737;
	text-align: center;
}

#redim-cookiehint .cookiebuttons .btn:hover{ 
	background-color: #166295 !important;
	color: #fff !important;
}








.footer {
	background: #d79dc2;
background: linear-gradient(#d79dc2),
}

/*Hintergrundfarben im body und in modulen, die cards genannt werden*/
body {
  background-color: #f1d2e4; /* Deine gewünschte Farbe */
}






/* Offline-Logo samt Kreis ausblenden */
#frame > svg,
#frame .offline-logo-wrapper {
    display: none !important;
}

/* Offline-Logo + Kreis ausblenden */
.logo-icon {
    display: none !important;
}




/* Scroll-Offset für Sticky Header */
#angebote,
#testimonials,
#kurse,
#faq,
#ueber-mich {
  scroll-margin-top: 300px;
}



/* Hero Section */
.hero-section {
  position: relative;
  background: url('/images/as%20Medien/Cellulite-reduzieren-mit-Anastasia-Hero.jpg') no-repeat right center; /* Gesicht rechts ausgerichtet */
  background-size: cover;
  height: 100vh; /* volle Höhe */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0px 20px 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    rgba(79, 40, 41, 0) 0%,    /* Start transparent */
    rgba(79, 40, 41, 0.5) 75%, /* 60% opacity of brown */
    rgba(79, 40, 41, 0) 100%   /* End transparent */
  );
  z-index: 0; /* Damit der Verlauf hinter dem Text bleibt */
}

.hero-content {
  position: relative;
      max-width: 700px;  /* hier die Zeile anpassen */
    z-index: 1;
    margin: 0 auto;     /* zentriert den Inhalt */
    padding: 50px 20px;    /* verhindert, dass Text direktam Rand klebt */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
   line-height: 1.1;   /* Zeilenabstand */
}

.hero-content h2 {
  color: #fff !important;       /* weiße Farbe */
  font-size: 2rem;              /* Desktop-Größe */
  font-weight: 600;             /* Semi-Bold */
  margin-bottom: 15px;          /* Abstand nach unten */
}

/* habs gemacht, weil für ggogle h2 zu lang ist, deshalb die selben Werte für p */
.hero-content p {
  color: #fff !important;       /* weiße Farbe */
  font-size: 2rem;              /* Desktop-Größe */
  font-weight: 600;             /* Semi-Bold */
  margin-bottom: 15px;          /* Abstand nach unten */
}


.hero-btn {
  display: inline-block;
  background: #d79dc2;
    font-size: 2rem;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #166295;
}

/* ✅ Responsive Anpassungen */
@media (max-width: 1024px) {
  .hero-section {
    background-position: right center; /* Gesicht nach rechts ausrichten */
    height: 80vh; /* nicht ganz so hoch auf Tablet */
  }

  .hero-content h1 {
    font-size: 2rem;
     margin-bottom: 10px; /* Abstand nach unten verkleinern */
    max-width: 60%;     /* schnellerer Umbruch */
        margin: 12px auto;        /* zentriert den Text */
  }

.hero-section .hero-content h2  {
    font-size: 1.5rem;
        max-width: 80%;        /* neue Zeile für Umbruch */
    margin: 0 auto;        /* zentriert den Text */
  }

  /* habs gemacht, weil für ggogle h2 zu lang ist, deshalb die selben Werte für p */
.hero-content p {
    font-size: 1.5rem;
    margin: 0 auto;        /* zentriert den Text */  
  }
  
  .hero-btn { padding: 15px 30px;
   font-size: 2rem; }


  .hero-content {
    margin-top: 20px; /* 👈 zieht den ganzen Block etwas nach oben */
}

}

@media (max-width: 820px) {
  .hero-section {
    background-position: 85% top; /* 👈 Verschiebt das Bild leicht nach rechts */
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.45rem; 
    margin-bottom: 10px; /* Abstand nach unten verkleinern */
        margin-top: 40px; /* Abstand oben vergrößert */
        max-width: 100%;         /* mehr Breite → späterer Umbruch */
  }

    .hero-section .hero-content h2 {
    font-size: 1.1rem;
     margin-bottom: 20px; /* Abstand zwischen h4-Elementen reduzieren */
     max-width: 100%;        /* neue Zeile für Umbruch */
    margin: 0 auto;        /* zentriert den Text */
  }

  .hero-content p {
       font-size: 1.1rem;
  }

  .hero-btn {
    padding: 10px 18px !important;   /* ← geändert: kleinerer Button für mobile */
    font-size: 1.5rem !important;   /* ← geändert: kleinere Schrift nur mobile */
  }
}

@media (max-width: 820px) {
  .hero-section {
    min-height: 350px; /* Fix gegen iOS shrink */
    height: 60dvh; /* bleibt Richtwert */
  }
}








/* Signika Negative eingebunden */
/* Regular */
@font-face {
    font-family: 'Signika Negative';
    src: url('/media/vendor/Signika/Signika-Negative-Regular.woff2') format('woff2'),
         url('/media/vendor/Signika/Signika-Negative-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Light (300) */
@font-face {
    font-family: 'Signika Negative';
    src: url('/media/vendor/Signika/Signika-Negative-300.woff2') format('woff2'),
         url('/media/vendor/Signika/Signika-Negative-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

/* Medium (500) */
@font-face {
    font-family: 'Signika Negative';
    src: url('/media/vendor/Signika/Signika-Negative-500.woff2') format('woff2'),
         url('/media/vendor/Signika/Signika-Negative-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* Semi-Bold (600) */
@font-face {
    font-family: 'Signika Negative';
    src: url('/media/vendor/Signika/Signika-Negative-600.woff2') format('woff2'),
         url('/media/vendor/Signika/Signika-Negative-600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* Bold (700) */
@font-face {
    font-family: 'Signika Negative';
    src: url('/media/vendor/Signika/Signika-Negative-700.woff2') format('woff2'),
         url('/media/vendor/Signika/Signika-Negative-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


body {
    font-family: 'Signika Negative', sans-serif;
}

h1 { font-family: 'Signika Negative', sans-serif;
     font-weight: 700; /* Bold */ 
}


h2 {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 700; /* Semi-Bold */
  color: #963e8f ;
  margin-bottom: 10px; 
  font-size: 2rem;
}

h3 {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 700; /* Medium */
    color: #963e8f;  /* optional, passend zu h2 */
    margin-bottom: 10px; /* Abstand nach unten */
}

p {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 300; /* Light */
    font-size: 1.2rem;       /* Schriftgröße für alle Absätze */
    line-height: 1.3;        /* Zeilenhöhe, etwas kompakter */
}


/* h4 */
h4 {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 600; /* Semi-Bold */
}

/* h5 */
h5 {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 400; /* Regular */
  line-height: 1.4;
}

/* h6 */
h6 {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 400; /* Light */
    line-height: 1.5;
}


/* Links */
a {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 400; /* Regular */
    color: #963e8f; /* Beispiel-Linkfarbe */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover-Effekt für Links */
a:hover {
    color: white; /* Dunklere Farbe bei Hover */
    text-decoration: underline;
    font-weight: 600; /* Semi-Bold beim Hover für bessere Sichtbarkeit */
}




/* Streckt alle angegebenen Modul-Positionen über die gesamte Breite des Grids / Eigene Anmerkung: Für main-top und main-bottom hat es mit Streckung allerdings nicht geklappt. */
.container-top-a {
    grid-column: 1 / -1; /* Streckt das Modul über die gesamte Breite */
    margin: 0;            /* Kein Abstand zu anderen Modulen */
    padding: 0;           /* Kein innerer Abstand (optional anpassen) */
}

.card {
  background-color: #fff; /* Hintergrundfarbe von Modulen*/
}




/* Entfernt den Rand (border) und die Outline von den Cards */
.card {
    --card-border-width: 0; /* Entfernt die Grenze */
    --card-border-color: transparent; /* Macht die Grenze unsichtbar */
    border: none !important; /* Entfernt den Border */
    outline: none !important; /* Entfernt die Outline */
    box-shadow: none !important; /* Entfernt den Box-Shadow, falls vorhanden */
    padding: 0; /* Setzt das Padding auf null, falls nötig */
}





/* Hintergrund der Level-2 Dropdown-Elemente */
li.metismenu-item.level-2 {
    background-color: #d79dc2; /* gewünschte Hintergrundfarbe */
}

/* Links innerhalb des Dropdowns */
li.metismenu-item.level-2 a {
    color: white; /* Textfarbe */
    padding: 10px 15px; /* Optional: mehr Abstand für Klickbereich */
    display: block;
    text-decoration: none;
}

/* Hover-Effekt für die Links */
li.metismenu-item.level-2 a:hover {
    background-color: white; /* Hover-Hintergrund */
    color: #166295;             /* Hover-Textfarbe */
}










 
/* ===================== Highlight-Sektion ===================== */
.row.g-5 {
  display: flex;
  flex-wrap: wrap;      /* Umbruch bei kleiner Breite */
  align-items: center;  /* Vertikal zentriert */
}

/* Bildspalte */
.row.g-5 .col-md-7 {
  flex: 0 0 58%;        /* Desktop: ca. 7/12 */
  max-width: 58%;
  text-align: center;
}

/* Textspalte */
.row.g-5 .col-md-4 {
  flex: 0 0 40%;        /* Desktop: ca. 4/12 */
  max-width: 40%;
  text-align: left;
}

.row.g-5 p {
  font-size: 1.2rem;
  font-weight: 300;
    line-height: 1.4;
  color: #963e8f;
}


/* ===================== Tablet ===================== */

@media (max-width: 1024px) {
  .row.g-5 .col-md-7,
  .row.g-5 .col-md-4 {
    flex: 0 0 100%;       /* Spalten untereinander stapeln */
    max-width: 100%;
  }

  .row.g-5 h2 {
    font-size: 1.8rem;      /* kleiner auf Tablet */
  }

  .row.g-5 p {
    font-size: 1.2rem;
  }
}

/* Mobile & Tablet: Abstand zwischen Spalten reduzieren */
@media (max-width: 991px) {
  .row.g-5 {
    display: block;        /* Flex auflösen, damit Margin greift */
  }

  .row.g-5 .col-md-7,
  .row.g-5 .col-md-4 {
    width: 100%;
    margin-bottom: -10px;  /* Abstand Bild → Text */
  }

  .row.g-5 h2 {
    font-size: 1.5rem;    /* noch kleiner auf Mobile */
    margin-top: -10px !important;
  }

  .row.g-5 p {
    font-size: 1.2rem;
  }
}

/* ===================== Smartphone ===================== */
@media (max-width: 576px) {
  .row.g-5 .col-md-7,
  .row.g-5 .col-md-4 {
    width: 100%;
    margin-bottom: -15px;  /* noch enger auf Mobile */
  }

  .row.g-5 h2 {
    font-size: 1.5rem;      
    margin-top: -15px !important; /* H2 direkt am Bild */
  }

  .row.g-5 p {
    font-size: 1.2rem;
  }
}

/* ===================== Highlight: Icon-Sektion ===================== */
.icon-section {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.icon-section h2 {
  margin-bottom: 20px;
}

.icon-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;      /* Damit sie umbrechen */
  text-align: center;
}

.icon-box {
  flex: 1 1 180px;
  max-width: 300px;
}

.icon-box img {
  width: 180px;         /* Standardgröße für Desktop */
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease; /* sanfte Animation */
}

.icon-box img:hover {
  transform: scale(1.1); /* leichtes Vergrößern bei Hover */
}

.icon-box h3 {
  margin: 0;
  font-weight: 600;
  color: #963e8f;
  font-size: 1.2rem;
}

.icon-box p {
  font-weight: 400;
}

/* Tablet */
@media (max-width: 1024px) {
  .icon-box img {
    width: 150px;
  }
  
.icon-section h2 {
  font-size: 1.8rem;
}
}

/* Smartphone */
@media (max-width: 991px) {
  .icon-box img {
    width: 150px;
  }
  
   .icon-section h2 {
  font-size: 1.5rem;
}
}









/* Card Angebote */
.angebote-container {
  display: flex;
  flex-wrap: wrap;       /* erlaubt Umbruch */
  gap: 20px;
  justify-content: space-between;
}

.angebot-card {
  flex: 1 1 calc(33.333% - 20px); /* Desktop: 3 Spalten */
  box-sizing: border-box;
  text-align: center;
  padding: 15px;
  border-left: 1.5px solid #f23737;
  border-right: 1.5px solid #f23737;
    border-radius: 6px; /* abgerundete Ecken */
    position: relative; /* 👈 wichtig für Overlay */
}

/* Overlay nur für deaktivierte Angebot-Card */
.angebot-card.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6); /* halbtransparentes Overlay */
  z-index: 2;
  border-radius: 6px;
  pointer-events: none;
}

/* Button in inaktiver Card */
.angebot-card.disabled .angebot-btn {
  pointer-events: none;
  cursor: default;
}

     .angebote-h2 {
    font-size: 2rem;
  }


/* Neue Klasse für H2 in den Angebot-Cards */
.angebot-title {
  margin-top: 15px;
      font-size: 1.8rem;
}



/* Tablet: 2 Spalten */
@media (max-width: 1024px) {
  .angebot-card {
    flex: 1 1 calc(50% - 20px);
  }
  
   .angebote-h2 {
    font-size: 1.8rem;
  }
  
  .angebot-title {
  margin-top: 15px;
      font-size: 1.4rem;
}
}

/* Smartphone: alle untereinander */
@media (max-width: 576px) {
  .angebote-container {
    flex-direction: column; /* Mobile: untereinander */
  }

     .angebote-h2 {
    font-size: 1.5rem;
  }
  
  .angebot-card {
    flex: none;
    width: 100%;
  }
  
  .angebot-title {
  margin-top: 15px;
      font-size: 1.4rem;
}
  }
  .angebot-btn {
    padding: 8px 15px; /* kleiner als der Hero-Button */
    font-size: 1.3rem; /* Schriftgröße bleibt gleich */
    font-weight: 600;
    border-radius: 8px; /* optional, etwas kleiner als Hero */
}












/* Kurse */
.kurse-container {
  display: flex;
  flex-wrap: wrap;       /* erlaubt Umbruch */
  gap: 20px;
  justify-content: space-between;
}

.kurs-card {
  flex: 1 1 calc(33.333% - 20px); /* Desktop: 3 Spalten */
  box-sizing: border-box;
  text-align: center;
  padding: 15px;
  border-radius: 6px;
  border-left: 1.5px solid #f23737;
  border-right: 1.5px solid #f23737;
  position: relative; /* nötig für Overlay */
  position: relative; /* nötig für Overlay */
}

/* Overlay nur für deaktivierte Card */
.kurs-card.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6); /* halbtransparent */
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  border-radius: 8px; /* gleiche Rundung wie Card */
  padding: 15px;
  pointer-events: none; /* Overlay blockiert keine Klicks, optional */
}

.kurs-card.disabled .kurs-btn {
  pointer-events: none;   /* Klicks deaktivieren */
  cursor: default;        /* Mauscursor ändert sich */
}

  .kurs-card h3 {
  font-size: 1.8rem; /* Desktop */
}

  .kurs-card-h2 {
  font-size: 2rem; /* Basisgröße auf Desktop */
}


/* Tablet: 2 Spalten */
@media (max-width: 1024px) {
  .kurs-card {
    flex: 1 1 calc(50% - 20px);
  }
  
  .kurs-card-h2 {
  font-size: 1.8rem; 
}
    .kurs-card h3 {
  font-size: 1.4rem; 
}
}

/* Smartphone: alle untereinander */
@media (max-width: 576px) {
  .kurse-container {
    flex-direction: column;
  }
  
  .kurs-card {
    flex: none;
    width: 100%;
  }
  
  .kurs-card-h2 {
  font-size: 1.5rem; 
}
  
  .kurs-card h3 {
  font-size: 1.4rem; 
}
}

/* Kurs-Teil-Buttons */
.kurs-btn {
  padding: 8px 15px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 8px;
}


/* =========================
   Container für Text + Button
   ========================= */
.kurse-check-footer {
  width: 100%;
  padding: 20px; /* Innenabstand */
  border-radius: 8px;
  box-sizing: border-box;
  border-left: 1.5px solid #f23737;
  border-right: 1.5px solid #f23737;
  border-bottom: 1.5px solid #f23737;
  border-top: none;

  display: flex;
  justify-content: center; /* zentriert Inhalt */
}

.kurse-check-bg {
  background-color: #f9edf4;
  padding: 30px 20px;
  width: 100%;
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border: none;
  border-radius: inherit;
}

.kurse-check-bg h3 {
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.kurse-check-btn {
  text-align: center;
  max-width: 600px;
  margin: 20px auto 0;
  padding: 0 15px;
}

.kurse-check-btn p {
  line-height: 1.3;
  margin-bottom: 20px;
  word-wrap: break-word;
  hyphens: auto;
}

/* =========================
   Prominenter Button
   ========================= */
.kurs-button {
  display: inline-block;
  width: auto;
  font-size: 1.75rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 10px;
  background-color: #963e8f;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  margin: 0 auto;
}

.kurs-button:hover {
  background-color: #166295;
}

/* =========================
   Tablet (768px – 1024px)
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .kurse-check-footer {
    padding: 25px 15px;
  }

  .kurse-check-bg {
    padding: 20px 25px;
    max-width: 90%;
  }

  .kurse-check-btn {
    max-width: 90%;
    margin-top: 30px;
  }

  .kurs-button {
    font-size: 1.75rem;
    margin: 20px auto 0;
  }
}

/* =========================
   Smartphone (≤ 576px)
   ========================= */
@media (max-width: 576px) {
  .kurse-check-footer {
    padding: 20px 10px;
  }

  .kurse-check-bg {
    padding: 15px 20px;
    max-width: 100%;
  }

  .kurse-check-btn {
    max-width: 90%;
    margin-top: 25px;
  }

  .kurs-button {
    font-size: 1.3rem;
    padding: 10px 18px;
  }

  .kurse-check-bg h3 {
    max-width: 90%;
  }
}


  
  
  
  
  
  
  
  
  
  
 /* ===================== Card Testimonials ===================== */
.row.g-5 {
  display: flex;
  flex-wrap: wrap;
}

/* Spalten: Desktop nebeneinander, Mobile untereinander */
.row.g-5 .col-md-6 {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  box-sizing: border-box;
  padding: 15px;
}

/* Testimonial Card */
.testimonial-card {
  background-color: #f9edf4;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
}

/* Name */
.testimonial-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #963e8f;
  margin-bottom: 15px;
  text-align: center;
}

/* Bild + Caption */
.testimonial-image {
  margin: 0 auto 15px;
  text-align: center;
}

.testimonial-image img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.testimonial-image figcaption {
  font-size: 0.95rem;
  margin-top: 15px;
  text-align: center;
}

/* Zitat */
.testimonial-text {
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 15px;
  text-align: center;
}

/* ===================== Tablet & Mobile ===================== */
@media (max-width: 991px) {
  .row.g-5 .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .testimonial-text {
    font-size: 1.25rem; /* größer wie H4 */
    font-weight: 600 !important;
    margin-top: 20px;
  }
}


  
  
  
  
  
/* Über mich */
/* Wrapper sicher vor Template-Konflikten */
.ueber-mich-wrapper {
  width:100%;
  box-sizing:border-box;
}

/* Alle Tabellen gleich formatieren */
.ueber-mich-wrapper .ueber-mich-table {
  width:100%;
  border-collapse:collapse;
}

.ueber-mich-wrapper td {
  vertical-align:top;
  box-sizing:border-box;
}

/* Bilder */
.ueber-mich-wrapper img {
  max-width:100%;
  height:auto;
  display:block;
  margin:0 auto;
}

/* Button */
.ueber-mich-wrapper .hero-btn {
  font-size:2rem;
  font-weight:600;
  padding:10px 25px;
  text-decoration:none;
  background-color:#d79dc2;
  border-radius:8px;
  display:inline-block;
}

  .ueber-mich-wrapper .hero-btn:hover {
  background: #166295;
}
  
/* Sub-Spalten: Desktop / Tablet nebeneinander */
.ueber-mich-wrapper .sub-column {
  display:table-cell;
  width:50%;
  vertical-align:top;
  padding:5px;
}

      .ueber-mich-wrapper h3 {
    font-size: 1.3rem;   
 line-height: 1.4;

  }

/* Mobile ≤600px: Sub-Spalten untereinander */
@media (max-width:600px) {
  .ueber-mich-wrapper .sub-column {
    box-sizing: border-box; /* Padding wird berücksichtigt */
    width:100% !important;
    padding-left:5px !important;
    padding-right:5px !important;
        word-wrap: break-word; /* Zeilen umbrechen */
    overflow-wrap: break-word;
  }
  
      .ueber-mich-wrapper h3 {
    font-size: 1.2rem;   
  }
}

/* Mobile ≤600px */
@media (max-width: 600px) {
  .ueber-mich-wrapper .hero-btn {
    font-size: 1.5rem;  /* kleiner für Smartphone */
    padding: 10px 18px;
  }
    .ueber-mich-wrapper h2 {
    font-size: 1.5rem;   /* kleinere Größe auf Tablet */
  }
  
      .ueber-mich-wrapper h3 {
    font-size: 1.2rem;   
  }
}

/* Tablet 601px–1024px */
@media (min-width: 601px) and (max-width: 1024px) {
  .ueber-mich-wrapper .hero-btn {
    font-size: 1.5rem; /* etwas kleiner als Desktop */
    padding: 120px 25px;
  }
  
    .ueber-mich-wrapper h2 {
    font-size: 1.8rem;   /* kleinere Größe auf Tablet */
  }
  
      .ueber-mich-wrapper h3 {
    font-size: 1.2rem;   
  }
}

  
  
  





/* Container */
.myfaq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* etwas enger */
  width: 100%;
  box-sizing: border-box;
}

/* Überschrift */
.myfaq-container h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

/* FAQ-Item */
.myfaq-item {
  flex: 1 1 calc(33.333% - 15px);
  border: 1px solid #ddd; /* dezenter Rahmen statt rosa Hintergrund */
  border-radius: 6px;
  padding: 10px;
  box-sizing: border-box;
  background: none;
}

/* Checkbox verstecken */
.myfaq-item input[type="checkbox"] {
  display: none;
}

/* Frage */
.myfaq-item label {
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

/* Antwort */
.myfaq-item .answer {
  font-weight: 300;
  line-height: 1.3;
  font-size: 0.9rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Antwort sichtbar, wenn Checkbox aktiv */
.myfaq-item input[type="checkbox"]:checked + label + .answer {
  max-height: 1000px; /* groß genug für alle Antworten */
}

/* Responsive: 2 Spalten für Tablets */
@media (max-width: 991px) {
  .myfaq-item {
    flex: 1 1 calc(50% - 15px);
  }
}

/* Responsive: 1 Spalte für Smartphones */
@media (max-width: 576px) {
  .myfaq-item {
    flex: 1 1 100%;
  }
}

  
  
  
  
  
  
  
  
  
  
/* Modul Light 1 */
.light-1 {
  position: relative;
  overflow: hidden;
  background-color: #fccafc; /* Hintergrund des Moduls */
}

/* Bild immer über volle Breite */
.light-1-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 600px; /* Desktop Standard */
}

/* Button Wrapper */
.light-1-btn-wrapper {
  text-align: center;
  padding: 10px 0 40px 0; /* oben kleiner, unten größer */
  background-color: #fccafc; /* Hintergrund für den Wrapper */
}

/* Hero-Button im Light-Modul (wie Medium-1) */
.light-1-btn-wrapper .hero-btn {
  font-size: 2rem;
  padding: 15px 30px;
  background-color: #963e8f; /* Buttonfarbe */
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.light-1-btn-wrapper .hero-btn:hover {
  background-color: #166295; /* dunkler beim Hover */
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
  .light-1-img {
    min-height: 200px; /* kleineres Bild für Mobile */
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .light-1-img {
    min-height: 300px; /* etwas größer für Tablet */
  }
}

/* Desktop bleibt min-height: 600px */
@media (min-width: 1025px) {
  .light-1-img {
    min-height: 600px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .light-1-btn-wrapper .hero-btn {
    font-size: 1.5rem;  /* kleiner für Smartphone */
    padding: 10px 18px;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 1024px) {
  .light-1-btn-wrapper .hero-btn {
    font-size: 1.5rem; /* etwas kleiner als Desktop */
    padding: 12px 25px;
  }
}






/* Modul Medium 1 */
.medium-1 {
  position: relative;
  overflow: hidden;
  background-color: #FAAFAF; /* Hintergrund des Moduls */
}

/* Bild immer über volle Breite */
.medium-1-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 600px; /* Desktop Standard */
}

/* Button Wrapper */
.medium-1-btn-wrapper {
  text-align: center;
  padding: 10px 0 40px 0; /* oben kleiner, unten größer */
  background-color: #FAAFAF; /* Hintergrund für den Wrapper */
}

/* Hero-Button im Medium-Modul */
.medium-1-btn-wrapper .hero-btn {
  font-size: 2rem;
  padding: 15px 30px;
  background-color: #963e8f; /* neue Buttonfarbe */
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.medium-1-btn-wrapper .hero-btn:hover {
  background-color: #166295; /* dunkleres Rot beim Hover */
      text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
  .medium-1-img {
    min-height: 200px; /* kleineres Bild für Mobile */
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .medium-1-img {
    min-height: 300px; /* etwas größer für Tablet */
  }
}

/* Desktop bleibt min-height: 600px */
@media (min-width: 1025px) {
  .medium-1-img {
    min-height: 600px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .medium-1-btn-wrapper .hero-btn {
    font-size: 1.5rem;  /* kleiner für Smartphone */
    padding: 10px 18px;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 1024px) {
  .medium-1-btn-wrapper .hero-btn {
    font-size: 1.5rem; /* etwas kleiner als Desktop */
    padding: 12px 25px;
  }
}







/* ================================
   Light2 Modul Basis-Styles
   ================================ */

/* Container für das Modul Light 2 */
.light2-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Linke Spalte (Text) */
.light2-left {
  flex: 2;
  padding: 10px 20px 10px 10px;
  box-sizing: border-box;
}

/* Rechte Spalte (Bilder untereinander) */
.light2-right {
  flex: 1.18;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

/* Bilder in der rechten Spalte */
.light2-right img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Buttons wie Hero-Buttons */
.light2-button {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 10px;
  background-color: #963e8f;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  margin: 20px 0;
}

.light2-button:hover {
  background-color: #166295;
  text-decoration: underline;
}

/* Spezieller Link als großer Button */
.download-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #963e8f;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: #166295;
  text-decoration: underline;
}

.light2-button-container {
  text-align: center;
}

.light2-button-container .light2-button {
  display: inline-block;
  margin: 20px 10px;
}

/* Vorteile-Liste */
.light2-vorteile {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.light2-vorteile li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
  color: #963e8f;
}

.light2-vorteile .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  color: white !important;
  background-color: #963e8f !important;
}

/* Volle Breite Divs */
.light2-full {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #f9edf4;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Kursinhalte-Liste */
.kurs-inhalte {
  list-style: none !important;
  padding: 0;
  margin: 0 0 20px 0;
}

.kurs-inhalte li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.kurs-inhalte .icon {
  color: #963e8f;
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ================================
   Light2 Sonstiges (Kontraindikationen, Material, Rechtliches)
   ================================ */

/* Desktop-Basis */
.light2-sonstiges-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0px 0;
}

.light2-sonstiges-col {
  flex: 1;
  min-width: 250px;
}

/* ================================
   Responsive: Tablets und Smartphones
   ================================ */

@media (max-width: 1024px) {
  /* Light2 Container stapeln */
  .light2-container {
    flex-direction: column;
  }

  .light2-left,
  .light2-right {
    padding: 5px;
  }

  .light2-button {
    font-size: 1.5rem;
    padding: 10px 18px;
  }

  /* Kursinhalte-Pfeile auf Tablets */
  .kurs-inhalte li {
    display: flex;
    align-items: flex-start;
  }

  .kurs-inhalte .icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    margin-right: 15px;
  }

  /* Sonstiges: Spalten untereinander */
  .light2-sonstiges-container {
    flex-direction: column;
    gap: 20px;
  }

  .light2-sonstiges-col {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 576px) {
  /* Rechte Spalte Bilder zentrieren */
  .light2-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Sonstiges auf Smartphone stapeln */
  .light2-sonstiges-container {
    flex-direction: column;
  }
}




  
  

/* Light3 Desktop: 3 Spalten */
#light3 {
  display: flex;
  flex-wrap: wrap;
  background-color: #f9edf4; /* hellrosa */
  border-radius: 10px;  
}

/* Spalten */
#light3 .light3-column {
  flex: 1 1 calc(33.33% - 30px);
  box-sizing: border-box;
}

/* Nur erste Bildspalte rechts etwas Platz */
#light3 .image-column:first-of-type {
  padding-left: 15px;
}

/* Nur zweite Bildspalte links etwas Platz */
#light3 .image-column:last-of-type {
  padding-right: 15px;
}

/* Text-Spalte: max-width begrenzen */
#light3 .text-column .testimonial-card {
  max-width: 800px;       /* begrenzt Textbreite auf Desktop */
  margin: 0 auto;         /* zentriert die Karte */
}

/* Bild-Spalten */
#light3 .image-column img {
  height: auto;
  object-fit: cover;
}

/* Bildunterschrift */
#light3 .light3-caption  {
  font-size: 0.95rem;
  margin-top: 2px;   /* kleinerer Abstand zum Bild */
  text-align: center;
    line-height: 1.4;
}

/* Tablet & Mobile: alle Spalten untereinander, volle Breite */
@media (max-width: 991px) {
  #light3 {
    gap: 0;
  }

  #light3 .light3-column {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 15px;  /* links Abstand */
    padding-right: 15px; /* rechts Abstand */
  }

  #light3 .text-column .testimonial-card {
    max-width: 100%; /* volle Breite auf Tablet/Mobile */
    margin: 0;
  }

  #light3 .image-column img {
    max-height: none; /* Bilder passen sich Containerbreite an */
  }
}














/* ================================
   Medium2 Modul Basis-Styles
   ================================ */

/* Container für das Modul Medium 2 */
.medium2-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Linke Spalte (Text) */
.medium2-left {
  flex: 2;
  padding: 10px 20px 10px 10px;
  box-sizing: border-box;
}

/* Rechte Spalte (Bilder untereinander) */
.medium2-right {
  flex: 1.43;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

/* Bilder in der rechten Spalte */
.medium2-right img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Buttons wie Hero-Buttons */
.medium2-button {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 10px;
  background-color: #963e8f;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  margin: 20px 0;
}

.medium2-button:hover {
  background-color: #166295;
  text-decoration: underline;
}

/* Spezieller Link als großer Button */
.download-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #963e8f;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.download-link:hover {
  color: #166295;
  text-decoration: underline;
}

.medium2-button-container {
  text-align: center;
}

.medium2-button-container .medium2-button {
  display: inline-block;
  margin: 20px 10px;
}

/* Vorteile-Liste */
.medium2-vorteile {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.medium2-vorteile li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
  color: #963e8f;
}

.medium2-vorteile .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  color: white !important;
  background-color: #963e8f !important;
}

/* Volle Breite Divs */
.medium2-full {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #f9edf4;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Kursinhalte-Liste */
.kurs-inhalte {
  list-style: none !important;
  padding: 0;
  margin: 0 0 20px 0;
}

.kurs-inhalte li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.kurs-inhalte .icon {
  color: #963e8f;
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ================================
   Medium2 Sonstiges (Kontraindikationen, Material, Rechtliches)
   ================================ */

/* Desktop-Basis */
.medium2-sonstiges-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0px 0;
}

.medium2-sonstiges-col {
  flex: 1;
  min-width: 250px;
}

/* ================================
   Responsive: Tablets und Smartphones
   ================================ */

@media (max-width: 1024px) {
  /* Medium2 Container stapeln */
  .medium2-container {
    flex-direction: column;
  }

  .medium2-left,
  .medium2-right {
    padding: 5px;
  }

  .medium2-button {
    font-size: 1.5rem;
    padding: 10px 18px;
  }

  /* Kursinhalte-Pfeile auf Tablets */
  .kurs-inhalte li {
    display: flex;
    align-items: flex-start;
  }

  .kurs-inhalte .icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    margin-right: 15px;
  }

  /* Sonstiges: Spalten untereinander */
  .medium2-sonstiges-container {
    flex-direction: column;
    gap: 20px;
  }

  .medium2-sonstiges-col {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 576px) {
  /* Rechte Spalte Bilder zentrieren */
  .medium2-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Sonstiges auf Smartphone stapeln */
  .medium2-sonstiges-container {
    flex-direction: column;
  }
}




