/* ═══ FAQ ITEM — flat separator style ═══ */
.faq-item {
  border: none;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 8px;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--base-color-neutral--black);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color 0.2s;
  touch-action: manipulation;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 10px;
  box-sizing: content-box;
  color: var(--base-color-neutral--black);
  background: var(--base-color-neutral--white);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.faq-item[data-faq-open="true"] .faq-item__icon {
  transform: rotate(180deg);
  background: var(--base-color-neutral--neutral-light);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-item[data-faq-open="true"] .faq-item__answer {
  max-height: 800px;
}

.faq-item__answer-text {
  padding: 0 8px 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--base-color-neutral--black);
}

.faq-item__answer-text ul {
  margin: 8px 0;
  padding-left: 20px;
  list-style: disc;
}

.faq-item__answer-text li {
  margin-bottom: 4px;
}

.faq-item__answer-text strong {
  color: var(--base-color-neutral--black);
  font-weight: 600;
}

@media (min-width: 768px) {
  .faq-item__question {
    font-size: 20px;
    padding: 16px 8px;
  }

  .faq-item__answer-text {
    padding: 0 8px 16px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .faq-item__icon,
  .faq-item__answer,
  .faq-item__question {
    transition: none;
  }
}
