/* Обёртка FAQ */
.faq-wrap {
  max-width: 760px;
}

/* Блок вопроса */
details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 8px;
  overflow: hidden;
}
details[open] {
  border-color: var(--blue);
}

/* Заголовок вопроса */
summary {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  user-select: none;
  transition: .15s;
}
summary:hover {
  background: var(--surface);
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}
details[open] summary::after {
  content: '−';
}

/* Текст ответа */
.faq-ans {
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-ans a {
  color: var(--blue);
}
.faq-ans a:hover {
  text-decoration: underline;
}