.post-faq {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.post-faq__title {
  margin: 0 0 20px;
}

.post-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.post-faq__question {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
}

.post-faq__question::-webkit-details-marker {
  display: none;
}

.post-faq__answer {
  padding: 0 20px 18px;
  color: var(--color-dark);
  opacity:.8;
  line-height: 1.7;
  font-family:var(--font-secondary);
}

.post-faq__answer p:last-child {
  margin-bottom: 0;
}