/* FAQ – Lovable-AI-Stil (ohne JS, via <details>) */
.ci-faq{
  margin: clamp(24px, 4vw, 40px) 0;
}
.ci-faq__title{
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--text, #111827);
  text-align: left;
}

.ci-faq__list{
  max-width: 900px;
  display: grid;
  gap: 10px;
}

.ci-faq__item{
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.ci-faq__item[open]{ box-shadow: 0 10px 26px rgba(0,0,0,.07); }

.ci-faq__q{
  list-style: none;
  cursor: pointer;
  padding: 14px 48px 14px 16px;
  font-weight: 700;
  position: relative;
  outline: none;
}
.ci-faq__q::-webkit-details-marker { display: none; }

.ci-faq__icon{
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 999px;
  background: #f3f4f6;
}
.ci-faq__icon::before, .ci-faq__icon::after{
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 2px; background: #6b7280; border-radius: 2px;
  transform: translate(-50%, -50%);
}
.ci-faq__icon::after{ transform: translate(-50%, -50%) rotate(90deg); }
.ci-faq__item[open] .ci-faq__icon::after{ display: none; } /* Minus statt Plus */

.ci-faq__q:focus-visible{
  box-shadow: 0 0 0 3px rgba(138,195,63,.35);
  border-radius: 10px;
}

.ci-faq__a{
  padding: 0 16px 16px;
  color: #374151;
  line-height: 1.6;
}
.ci-faq__a p{ margin: 10px 0 0; }
.ci-faq__a a{ color: #2563eb; text-decoration: underline; text-underline-offset: 3px; }
.ci-faq__a ul, .ci-faq__a ol{ margin: 8px 0 0 18px; }
