.faq {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.faq:not(.active) .wp-editor {
  display: none;
}
.faq.active {
  -webkit-box-shadow: 0px 14px 60px rgba(179, 190, 214, 0.2);
          box-shadow: 0px 14px 60px rgba(179, 190, 214, 0.2);
}
.faq__q {
  min-height: 38px;
  line-height: 1.4;
  font-size: 22px;
  font-weight: 500;
  padding-right: 50px;
  color: var(--text-color);
}
.faq__q:hover, .faq__q.active {
  color: var(--headings-color);
}
.faq__i {
  position: absolute;
  top: 6px;
  right: 3px;
  border: solid var(--headings-color);
  width: 12px;
  height: 12px;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.active .faq__i {
  top: 15px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.faq-s {
  padding: 40px 0 30px 0;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .faq-s {
    padding: 30px 0;
  }
}
.faq-s .wp-editor p {
  line-height: 27px;
}