NoteCard from @kuppwest/apple-clean. Use via `window.KuppwestAppleClean.NoteCard` (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).

Light-gray rounded note card (`.kwac-note`) for "good to know" caveats and
installation documents: heading, muted copy, an uppercase doc label and a
list of white link rows with trailing chevrons. Child of `NoteGrid`.

## Props

```ts
interface NoteCardProps {
  /** Bold 19px heading, e.g. "Zur Anhängerkupplung". */
  title: string;
  /** Muted body copy with the caveats. */
  children: React.ReactNode;
  /** Tiny uppercase label above the document list, e.g. "Einbauanleitungen · 5 PDF-Dateien". */
  docsTitle?: string;
  /** Document links rendered as white rounded rows (`.kwac-doclist`), opened in a new tab. */
  docs?: NoteDoc[];
}
```
