.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.sub-page .editorial-gradient {
  background: linear-gradient(135deg, #af101a 0%, #d32f2f 100%);
}

.sub-page .glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
}

.sub-page .premium-shadow {
  box-shadow: 0 12px 32px rgba(26, 28, 28, 0.06);
}

.sub-page .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sub-page .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.8rem;
  background: #ffffff;
  overflow: hidden;
}

.sub-page .faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.sub-page .faq-question-main {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.sub-page .faq-qa-badge {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  background: #af101a;
  flex-shrink: 0;
}

.sub-page .faq-qa-badge-answer {
  margin-top: 0.08rem;
  background: #6b7280;
}

.sub-page .faq-question-label {
  display: block;
}

.sub-page .faq-caret {
  font-size: 1.1rem;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.sub-page .faq-item.is-open .faq-caret {
  transform: rotate(180deg);
}

.sub-page .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.sub-page .faq-item.is-open .faq-answer {
  opacity: 1;
}

.sub-page .faq-answer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.6rem;
  padding: 0 1.1rem 1rem;
}

.sub-page .faq-answer-text {
  grid-column: 2;
  margin: 0;
  color: #5f5e5e;
  font-size: 0.88rem;
  line-height: 1.6;
}

.sub-page .faq-answer-text + .faq-answer-text {
  margin-top: 0.75rem;
}

.sub-page .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html[lang="zh-CN"] .sub-page {
  line-height: 1.72;
}

html[lang="zh-CN"] .sub-page h1,
html[lang="zh-CN"] .sub-page h2,
html[lang="zh-CN"] .sub-page h3,
html[lang="zh-CN"] .sub-page h4 {
  line-height: 1.38;
}

.sub-page .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sub-page [data-no-reveal],
.sub-page [data-no-reveal] .reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0ms !important;
}

@media (prefers-reduced-motion: reduce) {
  .sub-page .reveal-on-scroll,
  .sub-page .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
