.gb-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  visibility: hidden;
  will-change: max-height;
}

.gb-accordion__item-open .gb-accordion__content {
  max-height: inherit;
  visibility: visible;
}

.gb-accordion__item:not(.gb-accordion__item-open) > .gb-accordion__toggle .gb-accordion__toggle-icon-close {
  display: none;
}

:where(div).gb-accordion__toggle {
  cursor: pointer;
}

.gb-accordion__item.gb-accordion__item-open > .gb-accordion__toggle .gb-accordion__toggle-icon-open {
  display: none;
}

:where(.gb-accordion[data-transition=fade]) .gb-accordion__content {
  transition: opacity 0.25s ease;
}

:where(.gb-accordion[data-transition=fade]) > .gb-accordion__item-open > .gb-accordion__content {
  opacity: 1;
}

:where(.gb-accordion[data-transition=fade]) > .gb-accordion__item-transition > .gb-accordion__content {
  opacity: 0;
}

:where(.gb-accordion[data-transition=fade]) > :not(.gb-accordion__item-open) > .gb-accordion__content {
  display: none;
}

.faq-archieve {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #ffffff;
  gap: 48px;
}
.faq-archieve .faq-content {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  grid-column: span 3/span 3;
}
.faq-archieve .faq-content .faq-category-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 130%;
  margin-bottom: 24px;
}
.faq-archieve .faq-content .gb-accordion__item {
  border-bottom: 1px solid #ffffff;
  padding: 24px 48px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.faq-archieve .faq-content .gb-accordion__item .gb-accordion__toggle {
  display: flex;
  justify-content: space-between;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0.03em;
}
.faq-archieve .faq-content .gb-accordion__item-open {
  background: var(--bg-alt-color);
}
.faq-archieve .faq-fixed-wrapper {
  height: 100%;
}
.faq-archieve .faq-fixed-wrapper .faq-fixed {
  display: flex;
  flex-direction: column;
}
.faq-archieve .faq-fixed-wrapper .faq-fixed h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
}
.faq-archieve .faq-fixed-wrapper .faq-fixed a {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  padding: 12px 8px;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  color: #ffffff;
}

@media (max-width: 768px) {
  .faq-archieve {
    grid-template-columns: 1fr;
  }
  .faq-archieve .faq-content {
    grid-column: 1;
  }
  .faq-fixed-wrapper {
    display: none;
  }
}
