.elementor-83 .elementor-element.elementor-element-873011b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-83 .elementor-element.elementor-element-7f1c44f{--display:flex;}body.elementor-page-83:not(.elementor-motion-effects-element-type-background), body.elementor-page-83 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://extatica.de/wp-content/uploads/2025/11/cropped-3X9A8236-Verbessert-RR-1_LISA_04-scaled-2.jpg");}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ad4dfac *//* Der Hauptcontainer für alle Fragen */
.extatica-faq-container {
  max-width: 1000px; /* Beibehalten laut deinem Screenshot */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: inherit; /* Nutzt die Schrift deiner Webseite */
}

/* Das einzelne ausklappbare Element */
.extatica-faq-item {
  background: rgba(5, 5, 5, 0.55); /* Dein Glas-Effekt aus dem Intro [cite: 77] */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Hover-Effekt: Leichter Glow und Anheben [cite: 164-166] */
.extatica-faq-item:hover {
  border-color: rgba(255, 79, 135, 0.35);
  transform: translateY(-2px);
}

/* Die Frage (Header) - Hier liegt die Lösung für das Handy-Problem */
.extatica-faq-question {
  padding: 18px 25px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(14px, 4vw, 16px); /* Skaliert automatisch zwischen 14px und 16px */
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.05em;
  white-space: normal; /* Erlaubt Zeilenumbruch, damit nichts abgeschnitten wird */
  line-height: 1.4;    /* Abstand zwischen den Zeilen bei Umbruch */
  text-align: left;
}

/* Das "+" Icon rechts (dein Pink-Ton [cite: 101]) */
.extatica-faq-question::after {
  content: '+';
  color: #ff4f87;
  font-size: 22px;
  margin-left: 15px;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* Verhindert, dass das Plus-Zeichen gequetscht wird */
}

/* Drehung des Icons, wenn offen */
.extatica-faq-item[open] .extatica-faq-question::after {
  transform: rotate(45deg);
}

/* Die Antwort (Textbereich) [cite: 119-120] */
.extatica-faq-answer {
  padding: 0 25px 22px 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

/* Safari Browser-Fix für den Standard-Pfeil */
.extatica-faq-question::-webkit-details-marker {
  display: none;
}/* End custom CSS */