section.block-faq {
  background-color: var(--wp--preset--color--light);
  padding-top: var(--wp--preset--spacing--4-xl);
  padding-bottom: var(--wp--preset--spacing--4-xl);
}
@media screen and (max-width: 768px) {
  section.block-faq {
    padding-top: var(--wp--preset--spacing--4-xl-mobile);
    padding-bottom: var(--wp--preset--spacing--4-xl-mobile);
  }
}
section.block-faq .block-faq__content {
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  section.block-faq .block-faq__content {
    flex-direction: column;
    gap: 30px;
  }
}
section.block-faq .block-faq__content--left, section.block-faq .block-faq__content--right {
  flex: 1;
}
section.block-faq .block-faq__content--left {
  max-width: 393px;
}
section.block-faq .block-faq__content--left h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  section.block-faq .block-faq__content--left h2 {
    font-size: 35px;
  }
}
section.block-faq .block-faq__content .block-faq__item {
  padding: 30px 0;
  border-bottom: 1px solid #DDD;
}
section.block-faq .block-faq__content .block-faq__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
section.block-faq .block-faq__content .block-faq__item--question {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 0;
  display: flex;
  gap: 23px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
section.block-faq .block-faq__content .block-faq__item--question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
section.block-faq .block-faq__content .block-faq__item--answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  line-height: 150%;
}
section.block-faq .block-faq__content .block-faq__item.is-open .block-faq__item--question svg {
  transform: rotate(90deg);
}
section.block-faq .block-faq__content .block-faq__item.is-open .block-faq__item--answer {
  max-height: 1000px;
  opacity: 1;
  margin-top: 20px;
}