.faq-list__panel-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.016em;
  --font-size: 32px;
  --font-size-rem: 2rem;
  --line-height: 42px;
  --line-height-rem: 2.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.faq-list__search {
  margin-bottom: 2.5rem;
}
.faq-list__search-input {
  width: 100%;
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 1px solid rgba(17, 27, 33, 0.32);
  border-radius: 0;
  background: none;
  color: #111b21;
  font: inherit;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 20px;
  --line-height-rem: 1.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.faq-list__search-input::placeholder {
  color: rgba(17, 27, 33, 0.42);
}
.faq-list__search-input:focus-visible {
  outline: none;
  border-color: #111b21;
}
.faq-list__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-list__tabs {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.faq-list__tabs::-webkit-scrollbar {
  display: none;
}
.faq-list__tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(17, 27, 33, 0.32);
  border-radius: 24px;
  background: none;
  color: #111b21;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.faq-list__tab:not(.-active):hover {
  border-color: #111b21;
}
.faq-list__tab.-active {
  border-color: transparent;
  background-color: #e8cf80;
}
.faq-list__panels {
  min-width: 0;
}
.faq-list__panel[hidden] {
  display: none;
}
.faq-list__panel-title {
  margin: 0 0 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(17, 27, 33, 0.08);
}
.faq-list__empty[hidden] {
  display: none;
}
.faq-list__empty {
  margin: 2rem 0 0;
  color: rgba(17, 27, 33, 0.5);
}
.faq-list__footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(17, 27, 33, 0.14);
}
.faq-list__footer-text {
  margin: 0;
  color: #111b21;
  font-weight: 600;
  --font-size: 22px;
  --font-size-rem: 1.375rem;
  --line-height: 30px;
  --line-height-rem: 1.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
@media screen and (min-width: 768px) {
  .faq-list__panel-title {
    --font-size: 52px;
    --font-size-rem: 3.25rem;
    --line-height: 62px;
    --line-height-rem: 3.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .faq-list__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .faq-list__search {
    max-width: 540px;
    margin-bottom: 3.5rem;
  }
  .faq-list__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .faq-list__tabs {
    flex-direction: column;
    gap: 0.25rem;
    overflow-x: visible;
    flex: 0 0 260px;
  }
  .faq-list__tab {
    display: block;
    width: 100%;
    height: auto;
    padding: 0.85rem 1rem;
    border: 0;
    border-radius: 16px;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    --font-size: 15px;
    --font-size-rem: 0.9375rem;
    --line-height: 20px;
    --line-height-rem: 1.25rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .faq-list__tab:not(.-active):hover {
    background-color: rgba(17, 27, 33, 0.04);
  }
  .faq-list__tab.-active {
    font-weight: 600;
  }
  .faq-list__panels {
    flex: 1 1 auto;
  }
  .faq-list__footer-text {
    --font-size: 28px;
    --font-size-rem: 1.75rem;
    --line-height: 36px;
    --line-height-rem: 2.25rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}