/* faq block */
.faq-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq {
  max-width: 820px;
  margin: 0 auto;
}
details {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--bg-2);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}
details[open] summary::after {
  content: "–";
}
details p {
  padding: 0 20px 18px;
  color: #c4b994;
  font-size: 15px;
  margin: 0;
}
