/* neofold-customizations.css */

/* Anpassungen an NeoFold-Elementen */

/* Testimonials sollen nicht vertikal wackeln - alle auf gleiche Hoehe bringen */

/* 1. Slider-Auto-Height ueberschreiben */
.avia-slider-testimonials .avia-testimonial-row {
  height: auto !important;           /* Inline-Hoehe von Enfold ausser Kraft setzen */
  display: flex !important;          /* Flexbox aktivieren */
  flex-wrap: wrap !important;        /* Mehrere Zeilen erlauben */
  align-items: stretch !important;   /* Hoehe aller Items vereinheitlichen */
}

/* 2. Einzel-Testimonial flexen */
.avia-slider-testimonials .avia-testimonial {
  display: flex !important;          /* Flex-Container fuer jedes Testimonial */
  flex-direction: column !important; /* Inhalt + Meta untereinander */
  flex: 1 1 50% !important;          /* Basis 50% Breite (zwei Spalten) */
}

/* 3. Content-Bereich auf volle Hoehe ziehen */
.avia-slider-testimonials .avia-testimonial-content {
  flex: 1 0 auto !important;         /* Dehnt den Textblock auf volle Hoehe */
}

