.schema-faq-section {
  border-top: 1px solid var(--beige-50);
  border-bottom: 1px solid var(--beige-50);
  cursor: pointer;
  padding-top: var(--spacer-m);
  padding-bottom: var(--spacer-m);
}

.schema-faq-section:not(:first-child) {
  margin-top: -1px;
}

.schema-faq-question {
  margin-bottom: var(--spacer-xxs);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-size: var(--heading-xs-font-size);
  line-height: var(--heading-xs-line-height);
  font-weight: 700;
  padding-right: 50px;
}

.schema-faq-question::after {
  content: url("https://assets-global.website-files.com/63d32de856f6323a43a277f2/64b994337348cfabb95e5bae_red-chevron.svg");
  transition: transform 0.2s ease-in-out;
  transform: rotate(180deg);
  height: 24px;
  width: 24px;
  position: absolute;
  top: -2px;
  right: 12px;
}

.schema-faq-section.active .schema-faq-question::after {
  transform: rotate(0deg);
}

.wp-block-yoast-faq-block .schema-faq-section .schema-faq-answer {
  max-height: 0;
  transition: max-height 0.2s ease-in-out;
  overflow: hidden;
  margin-bottom: 0;
}
