/* Shared FAQ accordion — all pages */

.faq-wrapper {
  display: flex;
  flex-flow: column;
  width: 100%;
  margin-top: 40px;
}

.faq-card {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  cursor: pointer;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-header .h3.semi-bold {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq-chevron svg {
  display: block;
  width: 100%;
  height: 100%;
}

.faq-card.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-card .paragraph-5 {
  display: none;
  margin-top: 14px;
  padding-right: 36px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-card.open .paragraph-5 {
  display: block;
}
