/* faq.css — FAQ accordion styles */

p.lede {
  text-align: center;
  margin: 8px auto 20px;
  max-width: 62ch;
}

details {
  border: 1px solid #d8dee9;
  border-radius: 8px;
  background: #f0f0f0;
  margin: 10px 16px;
}

summary {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }

details[open] summary {
  border-bottom: 1px solid #e5e7eb;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.answer { padding: 12px 16px; }

a:hover { text-decoration: none; }

/* Accordion indicators */
summary::after { content: "+"; float: right; font-weight: 700; margin-left: 8px; }
details[open] summary::after { content: "\2212"; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
details[open] .answer { animation: fadeIn .2s ease; }

@media (min-width: 768px) {
  details { margin-left: 50px; margin-right: 50px; }
}
