/*
 * NxtGen Review — faq.css
 * Section 7: FAQs
 */

#nxrv-page .nxrv-faq-list {
  column-count: 2;
  column-gap: 32px;
  max-width: 100%;
}

#nxrv-page .nxrv-faq-item {
  break-inside: avoid;
  margin-bottom: 10px;
}

#nxrv-page .nxrv-faq-item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 140ms;
}

#nxrv-page .nxrv-faq-item[open] {
  box-shadow: 0 6px 20px rgba(108,99,255,0.08);
  border-color: rgba(108,99,255,0.25);
}

#nxrv-page .nxrv-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

#nxrv-page .nxrv-faq-q::-webkit-details-marker {
  display: none;
}

#nxrv-page .nxrv-faq-q::after {
  content: "+";
  font-size: 1.2rem;
  color: #6C63FF;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 200ms;
}

#nxrv-page .nxrv-faq-item[open] .nxrv-faq-q::after {
  content: "−";
}

#nxrv-page .nxrv-faq-body {
  padding: 0 20px 16px;
}

#nxrv-page .nxrv-faq-a {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.65;
  margin: 0 0 10px;
}

#nxrv-page .nxrv-faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

#nxrv-page .nxrv-faq-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6C63FF;
  background: rgba(108,99,255,0.07);
  border: 1px solid rgba(108,99,255,0.15);
  border-radius: 999px;
  padding: 2px 10px;
}

@media (max-width: 700px) {
  #nxrv-page .nxrv-faq-list {
    column-count: 1;
  }
}