/*
 * The public-website stylesheets are third-party (Bootstrap-derived) and were
 * previously linked directly. Loaded that way they are unlayered, and in CSS
 * cascade unlayered rules beat every layered rule regardless of specificity —
 * so they overrode all of Tailwind v4's utilities, which are layered.
 *
 * Importing them into a `vendor` layer restores the intended precedence. `app.css`
 * declares the layer order (vendor first, so lowest priority).
 *
 * Kept in `public/` and imported with relative paths so each sheet's own
 * `url(../images/...)` references still resolve against its own location.
 */
@import url('./main.min.css') layer(vendor);
@import url('./screen.css') layer(vendor);
@import url('./slick.css') layer(vendor);
