/* ============ FAQ ============ */
.faq {
  padding: 64px 0 80px;
}

.faq--white {
  background: #fff;
}

.faq--purple {
  background: #f4f3ff;
}

.faq--peach {
  background: var(--orange-bg, #ffeede);
}

.faq__item {
  border-bottom: 1px solid #e4e3f1;
}

.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq__question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15.2px;
  color: var(--purple-dark);
}

.faq__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq__answer {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a62;
}

.faq__answer p {
  margin-bottom: 12px;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

.faq__answer ul,
.faq__answer ol {
  margin-bottom: 12px;
  padding-left: 20px;
}

.faq__answer li {
  margin-bottom: 4px;
}
