/* Site-wide FAQ accordion fix: question text must WRAP, not clip.
   The design-system accordion button computes white-space:nowrap (global button rule); the
   .sc-interp question span inherits it -> one line -> clipped by the item's overflow:hidden.
   Force normal wrapping on every accordion button + its contents. Added 2026-08-27 per Pradeep. */
[data-dy-acc-item] button,
[data-dy-acc-item] button * {
  white-space: normal !important;
}