/*
 * FAQ category filter — paired with faq-filter.js. Drives the chip active palette
 * from OUR class so it survives a re-sync regardless of which breakpoint variant
 * Framer shipped active. Scoped to .ht-faqf-chip; the hide-class is applied to an
 * item's OUTER container wrapper, never the item node (faq-accordion.js owns its
 * inline height).
 */
.ht-faqf-chip {
  cursor: pointer;
}
.ht-faqf-chip.ht-faqf-active {
  background-color: rgb(48, 180, 207) !important;
}
.ht-faqf-chip.ht-faqf-active p {
  color: rgb(214, 240, 245) !important;
}
.ht-faqf-chip:not(.ht-faqf-active) {
  background-color: rgb(214, 240, 245) !important;
}
.ht-faqf-chip:not(.ht-faqf-active) p {
  color: rgb(48, 180, 207) !important;
}

/* Filter hide: applied to the item's OUTER framer-*-container wrapper, never the
   item node (the accordion owns its height). */
.ht-faqf-hidden {
  display: none !important;
}
