/* scoped: si-faq-FAQContentSection */

  .faq-content:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    width: 100%;
    padding: 60px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    background: #FFFFFF;
    box-sizing: border-box;
  }

  .faq-group:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    display: flex;
    flex-direction: column;
    gap: 27px;
    width: 740px;
  }


  .group-title:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    color: #1A1A24;
    margin: 0;
  }

  .questions-list:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .question-item:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E5EB;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .question-trigger:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    width: 100%;
    height: 44px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }

  .question-text:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #1A1A24;
    text-transform: uppercase;
    margin: 0;
  }

  .question-arrow:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    color: #D62121;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 180ms ease;
  }

  .question-item.is-open .question-arrow:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    transform: rotate(180deg);
  }

  .question-answer:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    height: 0;
    overflow: hidden;
    transition: height 250ms ease;
  }

  .question-answer-inner:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    padding: 0 15px 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #272727;
  }



  html.is-mobile .faq-content:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    padding: 40px 20px;
    gap: 40px;
    align-items: center;
  }

  html.is-mobile .faq-group:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    width: 296px;
    margin: 0 auto;
  }

  html.is-mobile .group-title:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  html.is-mobile .questions-list:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    gap: 12px;
    width: 296px;
  }

  html.is-mobile .question-text:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  html.is-mobile .question-trigger:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    height: auto;
    padding: 8px 15px;
  }

  html.is-mobile .question-arrow:where(.si-faq-FAQContentSection, .si-faq-FAQContentSection *){
    padding-left: 8px;
  }
