.elvi-faq {
  padding: 64px 20px;
  background: #fff;
}

.elvi-faq__inner {
  max-width: 820px;
  margin: 0 auto;
}

.elvi-faq__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

/* Item */

/* Frage-Button */
.elvi-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 18px;
  background: var(--ast-global-color-6);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  gap: 16px;
  line-height: 1.4;
}

.elvi-faq__question:hover {
  color: #8B6F4E; /* Cord-Braun als Akzentfarbe – ggf. anpassen */
}

/* Chevron-Icon */
.elvi-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.elvi-faq__item.is-open .elvi-faq__icon {
  transform: rotate(180deg);
}

/* Antwort */
.elvi-faq__answer {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.elvi-faq__item.is-open .elvi-faq__answer {
  grid-template-rows: 1fr;
}

.elvi-faq__answer > p {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 20px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a4a4a;
}

/* Responsive */
@media (max-width: 600px) {
  .elvi-faq__title {
    font-size: 1.4rem;
  }

  .elvi-faq__question {
    font-size: 0.95rem;
  }
}