/* ─── Card (family manifest) ──────────────────────────────────────────
   The card family is split across sheets: base rules (card-base.css),
   full-bleed media (card-media.css), depth/layout/link-card variants
   (card-variants.css), the category tile (category-card.css), and the
   grid-level equal-height helper (equal-height-cards.css).

   The loader enqueues ONLY <name>.css, so this file @imports every split
   sheet to give it a load path on the same request (the wave-4 video.css
   lesson: a variant sheet without an @import here is dead CSS in
   components mode — before this manifest, all four variant sheets only
   loaded via the assets/css/primitives.css fallback).

   Import order mirrors primitives.css (card.css → card-media →
   card-variants → category-card → equal-height-cards). card-variants
   overrides base .hzo-card declarations at EQUAL specificity
   (--bordered's box-shadow:none, --horizontal's flex-direction:row), so
   base MUST come first — and since CSS requires @imports before any
   rule, the base rules live in card-base.css rather than here. */
@import './card-base.css?ver=1787769613';
@import './card-media.css?ver=1787769613';
@import './card-variants.css?ver=1787769613';
@import './category-card.css?ver=1787769613';
@import './equal-height-cards.css?ver=1787769613';
