/* ============ FAQ ACCORDION ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--line-2);
  background: var(--fg);
}

.faq-item:hover > *,
.faq-item[open] > * {
  color: var(--bg);
}

.faq-question {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

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

.faq-question:after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--fg-3);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question:after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  color: var(--fg-2);
  line-height: 1.65;
  font-size: 1.05rem;
}

@media only screen and (max-width: 768px){
  .faq-question{
    padding: 1rem;
  }
}