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

        /* Oprava navigace pro mobily */
        @media screen and (max-width: 768px) {
            .nav {
                padding-right: 1rem;
            }
        }

        /* Oprava hero obrázku */
        .hero-image {
            width: 100%;
            max-width: 100vw;
        }

        /* Zajištění, že žádný element nepřesáhne viewport */
        * {
            max-width: 100%;
            font-family: "Montserrat", sans-serif;
        }

        .workshop-hero {
            width: 100%;
            overflow-x: hidden;
        } 
        
        .workshop-hero {
            background: linear-gradient(135deg, #86855e 0%, #3e4233 100%);
            padding: 250px 0 80px;
            text-align: center;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;  /* VERTIKÁLNÍ CENTRACE */
            align-items: center;      /* HORIZONTÁLNÍ CENTRACE */
        }

        .workshop-hero h1 {
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 1rem;
        }

        .workshop-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .aktuality-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .clanek-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 40px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .clanek-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .clanek-content {
            padding: 30px;
        }
        
        .clanek-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .clanek-title {
            font-size: 1.8rem;
            font-weight: 500;
            color: #333;
            margin: 0;
            line-height: 1.3;
        }
        
        .clanek-date {
            color: #8b8366;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .clanek-image {
            width: 200px;
            height: 150px;
            object-fit: cover;
            border-radius: 15px;
            float: right;
            margin: 0 0 20px 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .clanek-preview {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }
        
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #86855e 0%, #3e4233 100%);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(189, 158, 137, 0.3);
            color: white;
        }
        
        /* Stránkování */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: white;
            color: #666;
            text-decoration: none;
            border-radius: 50%;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .pagination a:hover,
        .pagination a.current {
            background: linear-gradient(135deg, #bd9e89, #e5c2ab);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(189, 158, 137, 0.3);
        }
        
        .no-articles {
            text-align: center;
            padding: 100px 20px;
            color: #666;
        }
        
        .no-articles i {
            font-size: 4rem;
            color: #535848;
            margin-bottom: 20px;
        }
        
        .no-articles h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 10px;
        }
        
        /* Responzivní styly pro aktuality.php */

        /* Tablet (1024px a méně) */
        @media (max-width: 1024px) {
            .aktuality-hero {
                padding: 200px 0 60px;
            }
            
            .aktuality-hero h1 {
                font-size: 3.5rem;
            }
            
            .aktuality-hero p {
                font-size: 1.1rem;
                padding: 0 40px;
            }
            
            .aktuality-container {
                max-width: 800px;
                padding: 60px 40px;
            }
            
            .clanek-card {
                margin-bottom: 35px;
            }
            
            .clanek-content {
                padding: 25px;
            }
            
            .clanek-title {
                font-size: 1.7rem;
            }
            
            .clanek-image {
                width: 180px;
                height: 135px;
                margin: 0 0 15px 25px;
            }
        }

        /* Mobile (768px a méně) */
        @media (max-width: 768px) {
            .aktuality-hero {
                padding: 180px 0 50px;
            }
            
            .aktuality-hero h1 {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }
            
            .aktuality-hero p {
                font-size: 1rem;
                padding: 0 20px;
                line-height: 1.5;
            }
            
            .aktuality-container {
                padding: 40px 15px;
            }
            
            .clanek-card {
                margin-bottom: 30px;
                border-radius: 15px;
            }
            
            .clanek-content {
                padding: 20px;
            }
            
            .clanek-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                margin-bottom: 15px;
            }
            
            .clanek-title {
                font-size: 1.4rem;
                line-height: 1.4;
                margin-bottom: 5px;
            }
            
            .clanek-date {
                font-size: 0.9rem;
            }
            
            .clanek-image {
                float: none;
                width: 100%;
                height: 200px;
                margin: 0 0 15px 0;
                border-radius: 10px;
            }
            
            .clanek-preview {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 15px;
            }
            
            .read-more-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                border-radius: 20px;
            }
            
            .pagination {
                gap: 8px;
                margin-top: 40px;
            }
            
            .pagination a {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .no-articles {
                padding: 60px 15px;
            }
            
            .no-articles i {
                font-size: 3rem;
                margin-bottom: 15px;
            }
            
            .no-articles h2 {
                font-size: 1.5rem;
                margin-bottom: 8px;
            }
            
            .no-articles p {
                font-size: 0.95rem;
            }
        }

        /* Mobile malý (480px a méně) */
        @media (max-width: 480px) {
            .aktuality-hero {
                padding: 150px 0 40px;
            }
            
            .aktuality-hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .aktuality-hero p {
                font-size: 0.95rem;
                padding: 0 15px;
            }
            
            .aktuality-container {
                padding: 30px 10px;
            }
            
            .clanek-card {
                margin-bottom: 25px;
                border-radius: 12px;
            }
            
            .clanek-content {
                padding: 15px;
            }
            
            .clanek-title {
                font-size: 1.3rem;
                line-height: 1.3;
            }
            
            .clanek-date {
                font-size: 0.85rem;
            }
            
            .clanek-date i {
                font-size: 0.8rem;
            }
            
            .clanek-image {
                height: 180px;
                border-radius: 8px;
            }
            
            .clanek-preview {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 12px;
            }
            
            .read-more-btn {
                padding: 8px 16px;
                font-size: 0.85rem;
                gap: 6px;
            }
            
            .read-more-btn i {
                font-size: 0.8rem;
            }
            
            .pagination {
                gap: 6px;
                margin-top: 30px;
            }
            
            .pagination a {
                width: 35px;
                height: 35px;
                font-size: 0.85rem;
            }
            
            .no-articles {
                padding: 40px 10px;
            }
            
            .no-articles i {
                font-size: 2.5rem;
                margin-bottom: 12px;
            }
            
            .no-articles h2 {
                font-size: 1.3rem;
                margin-bottom: 6px;
            }
            
            .no-articles p {
                font-size: 0.9rem;
                line-height: 1.4;
            }
        }

        /* Landscape orientace na mobilu */
        @media (max-width: 768px) and (orientation: landscape) {
            .aktuality-hero {
                padding: 120px 0 30px;
            }
            
            .aktuality-hero h1 {
                font-size: 2.2rem;
            }
            
            .aktuality-hero p {
                font-size: 0.95rem;
            }
            
            .clanek-image {
                height: 150px;
            }
        }

        /* Optimalizace pro velmi malé výšky */
        @media (max-height: 600px) {
            .aktuality-hero {
                padding: 100px 0 30px;
            }
            
            .aktuality-hero h1 {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }
        }

        /* Vylepšení pro dotykové zařízení */
        @media (hover: none) and (pointer: coarse) {
            .clanek-card:hover {
                transform: none;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .read-more-btn:hover {
                transform: none;
                box-shadow: 0 5px 15px rgba(189, 158, 137, 0.2);
            }
            
            .pagination a:hover {
                transform: none;
                box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            }
            
            /* Zvětšení klikacích ploch pro dotykové ovládání */
            .read-more-btn {
                min-height: 44px;
            }
            
            .pagination a {
                min-width: 44px;
                min-height: 44px;
            }
        }

        /* Vylepšení čitelnosti na malých obrazovkách */
        @media (max-width: 480px) {
            .clanek-preview {
                color: #555;
            }
            
            .clanek-title {
                color: #222;
                font-weight: 700;
            }
            
            .clanek-date {
                color: #bd9e89;
                font-weight: 600;
            }
        }

        /* Oprava pro velmi široké obrazovky */
        @media (min-width: 1200px) {
            .aktuality-container {
                max-width: 1100px;
            }
            
            .clanek-image {
                width: 220px;
                height: 165px;
            }
        }