/* Entry stylesheet.
   Layers, lowest to highest: theme (tokens, fonts, syntax colors), base (element defaults),
   components. A later layer always wins, whatever the selector's specificity, and any
   unlayered <style> in a shortcode wins over all of them. */
@layer theme, base, components;

@import url("theme.css") layer(theme);
@import url("fonts.css") layer(theme);
@import url("syntax.css") layer(theme);
@import url("base.css") layer(base);
@import url("components.css") layer(components);
