/**
 * FAQ Component Styles
 * 
 * FAQ accordion and content styling
 */

/* ========== FAQ COMPONENTS ========== */
.faq-content {
  transition: max-height 0.3s ease-out;
}

.faq-trigger:hover .faq-arrow svg {
  color: #6b7280;
}

/* ========== FAQ PROSE CONTENT ========== */
.prose {
  color: #374151;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  color: #1f2937;
}

.prose a {
  color: #6b7280;
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose ul,
.prose ol {
  margin-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose strong {
  font-weight: 600;
  color: #1f2937;
}

.prose em {
  font-style: italic;
}

.prose blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  margin-left: 0;
  font-style: italic;
  color: #6b7280;
}

/* ========== ACCORDION UTILITIES ========== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.open {
  max-height: 500px; /* Adjust based on content */
}
