.faq {
   padding: 20px 0;
   background-color: #f9f9f9;
}
 .faq__container {
   display: grid;
   gap: 20px;
}
 .faq__block {
   display: grid;
   gap: 20px;
}
 .faq__item {
   border-bottom: 1px solid rgba(0, 0, 0, 0.10);
   padding-bottom: 16px;
}
 .faq__question {
   color: #275894;
   font-size: 20px;
   font-weight: 600;
   line-height: 28px;
   letter-spacing: -0.4px;
   cursor: pointer;
   padding-right: 32px;
   background-image: url(/wp-content/themes/gas/build/images/icons/icon-arrow-up.svg);
   background-size: 24px;
   background-repeat: no-repeat;
   background-position: right center;
}
 .faq__text {
   display: none;
   color: #000;
   font-size: 14px;
   line-height: 20px;
   padding-top: 16px;
}
 @media screen and (min-width: 992px) {
   .faq {
     padding: 64px 0;
  }
   .faq__container {
     grid-template-columns: repeat(2, minmax(0, 1fr));
  }
   .faq__block {
     gap: 40px;
  }
}
 