/* Публичная страница FAQ (оформление как about.html, без ЛК) */
.faq-standalone .faq-msg {
  text-align: center;
  font-size: 0.9rem;
  color: rgb(148 163 184);
}
.faq-standalone .faq-cat-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.35rem 0 0.6rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(148 163 184);
}
.faq-standalone .faq-cat-label:first-child {
  margin-top: 0.25rem;
}
.faq-standalone .faq-cat-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 84, 165, 0.28), transparent);
}
.faq-standalone .faq-item {
  margin-bottom: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(0, 84, 165, 0.12);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.35);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.faq-standalone .faq-item:last-child {
  margin-bottom: 0;
}
.faq-standalone .faq-item:hover {
  border-color: rgba(0, 84, 165, 0.22);
  background: rgba(0, 84, 165, 0.06);
}
.faq-standalone .faq-item.open {
  border-color: rgba(0, 84, 165, 0.32);
  background: rgba(0, 84, 165, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.faq-standalone .faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgb(241 245 249);
}
.faq-standalone .faq-question-text {
  flex: 1;
  min-width: 0;
}
.faq-standalone .faq-chevron {
  flex-shrink: 0;
  font-size: 1.35rem !important;
  color: rgb(0 84 165);
  transition: transform 0.25s ease;
}
.faq-standalone .faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-standalone .faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-standalone .faq-item.open .faq-answer-wrap {
  max-height: 600px;
}
.faq-standalone .faq-answer {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(0, 84, 165, 0.12);
  padding-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgb(148 163 184);
  white-space: pre-wrap;
}
.faq-standalone .faq-support .faq-support-icon .material-symbols-outlined {
  font-size: 1.35rem !important;
}
