FaqItem from @kuppwest/apple-clean. Use via `window.KuppwestAppleClean.FaqItem` (bundle loaded from the root `_ds_bundle.js`). Wrap the tree in `<Page>` (full provider chain in README.md — components read theme/i18n from that context).

White rounded FAQ card (`.kwac-faq-item`, 18px radius) with the question as a
bold heading and the answer as muted copy, always expanded. Child of `FaqGrid`.

## Props

```ts
interface FaqItemProps {
  /** The question, phrased as the customer would ask it. */
  question: string;
  /** The answer: one or two direct sentences, no accordion. */
  children: React.ReactNode;
}
```
