.faqs {
  position: relative;
  width: var(--baseWidth);
  max-width: var(--maxWidthBig);
  margin-left: auto;
  margin-right: auto;
}
.faqs .ce-faq-questions {
  column-count: 2;
  gap: 20px;
}
@media all and (max-width: 768px) {
  .faqs .ce-faq-questions {
    column-count: 1;
  }
}
.faqs .ce-faq-questions .faq-question {
  break-inside: avoid;
  background: var(--lightGray, #fff);
  border-radius: 6px;
  padding: clamp(1.6666666667rem, 1.2612612613rem + 2.2804054054vw, 3.1666666667rem);
  margin-bottom: 20px;
}
.faqs .ce-faq-questions .faq-question .question h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}