/*
Single entrypoint for the embed stylesheets — the only sheet the layouts link.

The cascade here is source order: our component rules override the base layer, which overrides
the DS build, and all of them share specificity. Keep the imports in this order and add new
component files at the end.

`@import` must precede every style rule, so this file holds imports only — no declarations.
Relative URLs inside an imported sheet resolve against that sheet, not against this one, so the
DS keeps finding its fonts and images.
*/

@import url("../designsystem2026/swiss/1.0.45.css"); /* third-party DS build */
@import url("base.css"); /* base layer: tokens + page layout */
@import url("components/search-form.css"); /* components, in load order */
@import url("components/search.css");
@import url("components/card.css");
@import url("components/collection.css");
