/**
 * FAQ accordion collapse — committed (not Tailwind-built).
 * Guarantees closed panels even if public/css/style.css is stale or incomplete.
 */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}
