.faq-question {
  align-items: start;
  background: 0;
  border: 0;
  border-top: 1px solid;
  color: var(--black);
  cursor: pointer;
  display: flex;
  font-size: 1.25rem;
  font-weight: 600;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 0;
  text-align: left;
  width: 100%;
}

.theme--dark .faq-question {
  color: var(--white);
}

.faq-question:hover {
  background: var(--primary-very-light);
}

.faq-question .plus-icon {
  transition: transform 250ms;
  transform-origin: center;
  width: 1.5rem;
}

.faq-question .plus-icon path {
  stroke: var(--black) !important;
}

.theme--dark .faq-question .plus-icon path {
  stroke: var(--white) !important;
}

.faq-question.show-answer .plus-icon {
  transform: rotate(45deg);
}

.faq__wrapper {
  border-top: 0;
  border-bottom: 1px solid;
  margin: -1px 0 0;
}

.faq-answer {
  display: none;
  padding-bottom: 1rem;
}

.faq-answer.show-answer {
  display: block;
  padding-right: 2rem;
}
