/* FAQ Section
--------------------------------------------- */

.faq-section__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* Left: sticky panel */

.faq-section__left {
  width: 547px;
}

.faq-section__heading {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 62px;
  line-height: 1.2;
  color: #fff;
  text-transform: none;
  margin: 20px 0 0;
  max-width: 414px;
}

.faq-section__desc {
  font-size: 18px;
  line-height: 1.5;
  color: #b4b4b4;
  margin: 16px 0 0;
  max-width: 442px;
}

.faq-section__button {
  margin-top: 24px;
  width: fit-content;
}

.faq-section__button .button {
  min-width: 324px;
  justify-content: space-between;
}
.faq-section__button .button-text {
  text-align: center;
  padding-left: 25px;
  width: stretch;
}

/* Right: accordion */

.faq-section__items {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-section__item {
  border: 1px solid #040405;
  border-radius: 22px;
  overflow: hidden;
}

.faq-section__glass-border {
  position: relative;
}

.faq-section__glass-border:before,
.faq-section__glass-border:after {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
}

.faq-section__glass-border:before {
  left: -1.5px;
  top: -1.5px;
  border-radius: 24px 0 0 0;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}

.faq-section__glass-border:after {
  right: -1.5px;
  bottom: -1.5px;
  border-radius: 0 0 24px 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.faq-section__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 148px;
  padding: 0 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq-section__item-question {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: #fff;
}

.faq-section__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 227, 0, 0.3);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-section__item.is-open .faq-section__item-icon {
  transform: rotate(90deg);
}

/* Answer: hidden by default, expands on open */

.faq-section__item-answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 40px;
  font-size: 18px;
  line-height: 1.5;
  color: #b4b4b4;
}

.faq-section__item-answer p {
  margin: 0 0 32px;
}

.faq-section__item.is-open .faq-section__item-answer {
  max-height: 600px;
  padding: 0 40px;
}

/* ============================================================
   # MEDIA: 1200px
   ============================================================ */

@media screen and (max-width: 1200px) {
  .faq-section__left {
    width: 430px;
  }

  .faq-section__item-question {
    font-size: 22px;
    line-height: 30px;
  }
}

/* ============================================================
   # MEDIA: 992px
   ============================================================ */

@media (max-width: 992px) {
  .faq-section__inner {
    gap: 60px;
    flex-direction: column;
  }
  .faq-section__item-header {
    min-height: 120px;
  }
}

/* ============================================================
   # MEDIA: 576px
   ============================================================ */

@media (max-width: 576px) {
}
