/* Pilot Version 10 */
/* (c) Laurent Groult | Air4.media 2007-2026 */
/* AirBlog Theme: Site — inherits all design tokens from Site Builder */
/* No layout overrides — uses blog-base.css + site design tokens as-is */

/* The "site" theme means: use whatever the site builder configured.
   All --site-* tokens from DesignTokenService are already loaded via design-head.php.
   This file just sets blog-specific layout vars to use those tokens directly. */

:root {
    --blog-header-bg: var(--site-bg-primary, #fff);
    --blog-footer-bg: var(--site-bg-primary, #1f2937);
    --blog-footer-text: var(--site-text-secondary, #9ca3af);
    --blog-footer-link: var(--site-text-primary, #d1d5db);
    --blog-code-bg: var(--site-bg-tertiary, #f3f4f6);
}

/* Post cards use site card styling */
.post-card {
    border-radius: var(--site-radius-lg, 12px);
}

/* Match site's button style for share/submit buttons */
.comment-submit-btn,
.share-btn {
    border-radius: var(--site-radius, 8px);
}

