/* ========================================
   GLOBÁLNÍ STYLY - BEM METODIKA
   MOBILE FIRST
   ======================================== */

/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevence horizontálního scrollování */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}
