/* ============================================
   FAQ
   ============================================ */

.faq {
  background: var(--color-bg);
}

.faq__list {
  max-width: 680px;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-5) 0;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  background: none;
  border: none;
  gap: var(--space-4);
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: '';
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--color-text-muted);
}

details[open] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding-bottom: var(--space-5);
}

.faq__answer p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq__answer p + p {
  margin-top: var(--space-3);
}
