.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #e6e8ee;
  border-radius: 12px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid #e6e8ee;
}

.faq-answer {
  padding: 10px 14px 14px;
}

.faq-answer p {
  margin: 0;
}
