/**
 * SHARED STORIES BASE STYLESHEET
 *
 * Styly specifické pro sekci Stories (3.0).
 * Obsahuje typografii a další stories-specifické styly.
 *
 * Dependencies:
 * - /css/shared/shared-page-base.css (imported in PageLayout)
 * - /assets/css/tokens/stories-tokens.css (imported in StoriesLayout)
 *
 * Used by:
 * - Story Cover (3.3)
 * - Story Chapter (3.4)
 * - Log Book Overview (3.1)
 * - Log Entry (3.2)
 *
 * Version: 2.0
 * Updated: 2026-01-29
 */

/* ============================================
   STORIES TYPOGRAPHY
   ============================================ */

body {
    font-family: var(--font-family-story);
    font-size: var(--font-size-story-body);
    line-height: var(--line-height-story);
    letter-spacing: var(--letter-spacing-story);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ============================================
   RESPONSIVE DESIGN (Mobile)
   ============================================ */

@media (max-width: 768px) {
    /* Typography adjustments */
    body {
        font-size: var(--font-size-story-body-mobile);
    }
}


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    body {
        background-color: white;
        color: black;
    }
}
