/* FAQ page — aligned with kuang.woniu.eu.cc/FAQ.html */
.faq-page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 18px 80px;
  box-sizing: border-box;
}

.faq-banner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 28px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-banner img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

.faq-banner .fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0), #0b1220 92%);
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.faq-item .faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
}

.faq-item .faq-title .name {
  color: #111;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.4;
}

.faq-item .faq-title .right-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.open .faq-title .right-icon {
  transform: rotate(45deg);
  background: #6d28d9;
}

.faq-item .faq-content {
  display: none;
  padding: 0 18px 18px;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item.open .faq-content {
  display: block;
  padding-top: 14px;
}

.faq-item .faq-content p {
  margin: 0 0 10px;
}

.site-shell:has(.faq-page) .site-main {
  max-width: 1100px;
}

@media (max-width: 640px) {
  .faq-item .faq-title {
    padding: 14px;
  }

  .faq-item .faq-title .right-icon {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
