/* FAQ Page Styles - PLCivilization */

/* Hero */
.faq-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.faq-hero-text p {
  font-size: var(--font-size-lg);
}

.faq-hero-media {
  min-height: 280px;
}

/* Search + actions */
.faq-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: flex-end;
  justify-content: space-between;
}

.faq-search {
  flex: 1 1 480px;
}

.faq-actions {
  display: inline-flex;
  gap: var(--space-3);
}

/* FAQ list */
.faq-list {
  display: grid;
  gap: var(--space-6);
}

.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.faq-question {
  list-style: none;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  display: inline-block;
}

.faq-answer {
  margin-top: var(--space-4);
}

/* Card anchors */
.faq-list a.card {
  color: inherit;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-actions { width: 100%; }
}
