Storybook stories for `CaseStudyCard`, covering both the compact chat-inline (`sm`) and full catalog grid (`default`) size variants of the `case_study` entity card. ## Key Components | Export | Type | Description | |---|---|---| | `meta` | `Meta` | Storybook metadata — registers the component under `Chat/EntityCards/CaseStudyCard` with fullscreen layout | | `ChatInlineSm` | `Story` | Renders the compact card variant used inline within chat messages | | `Default` | `Story` | Renders the full catalog grid card variant | ## Usage Example ```typescript import { CaseStudyCard } from '../components/chat/entity-cards' import { caseStudy } from './__fixtures__/chat-cards' // Compact chat-inline variant // Full catalog grid variant ``` ## Notes - Both stories are wrapped in `ChatColumnDecorator` to simulate the chat column layout context. - The `CaseStudyCard` supports two sizes: `"sm"` (chat-inline compact) and `"default"` (catalog grid). Both render a user + MSP badge overlay. - Fixture data is sourced from [`__fixtures__/chat-cards`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/stories/__fixtures__/chat-cards.ts).