.faq__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.faq__item { border-top: var(--hairline); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-5);
  font-size: var(--text-md);
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }

.faq__icon {
  flex: none;
  width: 1em;
  font-size: var(--text-lg);
  line-height: 1;
  text-align: center;
  color: var(--accent-ink);
}
.faq__icon::before { content: "+"; }
.faq__item[open] .faq__icon::before { content: "\2212"; }

.faq__answer {
  margin: 0;
  padding-bottom: var(--space-5);
  max-width: var(--container-text);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  color: var(--text-body);
}
