.kwz-faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 0 64px;
}

.kwz-faq__kicker {
  margin: 0 0 8px;
  color: var(--primary-color, #6f37ff);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.kwz-faq__title {
  margin: 0 0 28px;
  color: #17131f;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.kwz-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kwz-faq__item {
  border: 1px solid #e8e3ec;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.kwz-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: #17131f !important;
  font-family: var(--heading-font-family, inherit);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.kwz-faq__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}

.kwz-faq__icon::before,
.kwz-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary-color, #6f37ff);
  transform: translate(-50%, -50%);
}

.kwz-faq__icon::before {
  width: 12px;
  height: 2px;
}

.kwz-faq__icon::after {
  width: 2px;
  height: 12px;
  transition: opacity 0.15s ease;
}

.kwz-faq__item.is-open .kwz-faq__icon::after {
  opacity: 0;
}

.kwz-faq__a {
  padding: 0 18px 16px;
  color: #6f6978;
  font-size: 15px;
  line-height: 1.55;
}

.kwz-faq__a[hidden] {
  display: none !important;
}

.kwz-faq__a-inner > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .kwz-faq__title {
    font-size: 24px;
  }

  .kwz-faq__q {
    font-size: 16px;
    padding: 14px 16px;
  }
}
