.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--outline);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
}

.faq-q:hover {
  color: var(--white);
}

.faq-toggle {
  width: 26px;
  height: 26px;
  background: var(--s3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--white);
  color: #111;
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.35rem;
}
