Card from @kibrisyazilim/design-system. Use via `window.KibrisDS.Card` (bundle loaded from the root `_ds_bundle.js`).

Surface container. Compose with `CardHeader`, `CardBody` and `CardFooter`
for a divided layout, or pass children directly with a `padding` value.

## Props

```ts
interface CardProps {
  elevation?: "flat" | "raised" | "floating";
  /** Padding applied to Card itself. Use `none` when composing with the parts. */
  padding?: "sm" | "md" | "lg" | "none";
  /** Adds hover feedback. Set when the whole card is a link or button. */
  interactive?: boolean;
  className?: string;
  id?: string;
  style?: CSSProperties;
  children?: React.ReactNode;
}
```

## Related

`CardBody`, `CardFooter`, `CardHeader`
