/*
Theme Name: DotPress Theme
Theme URI: https://dotcol.eu
Author: dotcol
Author URI: https://dotcol.eu
Description: Companion theme for the DotPress plugin. Pages are fully rendered by DotPress; this theme provides default templates for 404, search, and archive views styled with DotPress design tokens.
Version: 1.2.1
Requires at least: 6.4
Requires PHP: 8.1
License: Proprietary
License URI: https://dotcol.eu/legal/eula/
Text Domain: dotpress-theme
Tags: minimal, blade, dotpress
*/

/* Token-driven base styles. Tokens injected by DotPress canvas at runtime. */
:root {
    --dp-color-primary: #1f1f1f;
    --dp-color-background: #ffffff;
    --dp-color-text: #1c1614;
    --dp-color-muted: #857060;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--dp-color-text, #1c1614);
    background: var(--dp-color-background, #ffffff);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--dp-color-primary, #1f1f1f); }
img { max-width: 100%; height: auto; }
