/* ============================================================
   ablauf-block.css
   Ablauf-Sektion "Wie eine Atemreise abläuft"
   Soulmate Breathwork – Simona Otto
   Version: 1.0 | 2026-08-09
   Eigenständiger Block, alle Werte als Custom Properties
   auf .ablauf gescopet (kollidiert nicht mit globalem CSS).
   ============================================================ */

/* Zielgruppen-Raster */
.needs {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: clamp(3rem, 6vw, 7rem);
  row-gap: 3rem;
  

  background: transparent;
  border: 0;
overflow: visible;
}

@media (min-width: 40rem) {
  .needs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .needs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.needs__item {
  background: transparent;
  padding: 0;
}

.needs__item h3 {
  margin: 0 0 0.8rem;

  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;

  color: var(--c-ink);
}

.needs__item p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.75;

  color: var(--c-text);
}

.section--alt .needs__item {
  background: transparent;
}


#Begleitung.section.section--image-text.section--alt div.wrap div.split.split--narrow-media {
  grid-template-columns: 0.30fr 1fr !important;   
}

#Begleitung .divider {
  display:none;
}


#Begleitung .wrap--text {
  max-width: calc(var(--w-text) + var(--gutter) * 10);
}


/* Großes Bild der Begleitung kompakter darstellen */
#Begleitung .media {
  width: min(100%, 320px);
  justify-self: center;
}

#Begleitung .media img {
  width: 100%;
  height: auto;
}

/* ============================================================
   Begleitung – Angebotskarten
   Gleich hohe Karten, Link immer unten
   ============================================================ */


.begleitung__angebote {
  --begleitung-color: #6b5246;
  --begleitung-hover: #ecddcd;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  width: 100%;
  margin: 28px 0 0;
  color: var(--begleitung-color);
}



.begleitung__angebote .begleitung__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  height: 100%;
  padding: 28px 0px 85px;
  background-color: #fff;
  border: 1px solid rgba(107, 82, 70, 0.15);
text-align: center;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.begleitung__angebote .begleitung__item:hover {
  background-color: var(--begleitung-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

/* WebP-Icons aus dem HTML */
.begleitung__angebote .begleitung__icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.begleitung__angebote .begleitung__item h3 {
  flex: 0 0 auto;
  margin: 0 0 16px !important;
  color: var(--begleitung-color) !important;
}

.begleitung__angebote .begleitung__item p {
  flex: 0 0 auto;
  max-width: 220px;
  margin: 0 auto !important;
  color: var(--begleitung-color) !important;
  line-height: 1.6;
}

/* Link immer am unteren Rand der Karte */
.begleitung__angebote .link-more {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 12px !important;
  line-height: 1.35;
  white-space: nowrap;
}

/* Falls der globale Link-Pfeil per Pseudoelement erzeugt wird:
   direkt neben dem Text halten. */
.begleitung__angebote .link-more::after {
  display: inline-block;
  margin: 0;
}

/* Alte senkrechte Trennlinien deaktivieren */
.begleitung__angebote .begleitung__item + .begleitung__item::before {
  display: none;
}

@media (min-width: 1450px) {
  .begleitung__angebote {
    gap: 22px;
  }
}

@media (max-width: 1050px) {
  #Begleitung .media {
    width: min(100%, 280px);
  }

  .begleitung__angebote {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .begleitung__angebote .begleitung__item {
    min-height: 0;
    padding: 26px 20px 76px;
  }

  .begleitung__angebote .link-more {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .begleitung__angebote .begleitung__item p {
    max-width: 360px;
  }
}

