    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .blog-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
    }

    .blog-card-image {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-card:hover .blog-card-image img {
        transform: scale(1.05);
    }

    .blog-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #8b5a2b;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
    }

    .blog-card-content {
        padding: 25px;
    }

    .blog-date {
        color: #8b5a2b;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .blog-card-content h3 {
        font-family: 'Arima Madurai', sans-serif;
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .blog-card-content h3 a {
        color: #5c3a2a;
        text-decoration: none;
    }

    .blog-card-content h3 a:hover {
        color: #8b5a2b;
    }

    .blog-card-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .read-more {
        color: #8b5a2b;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
    }

    .read-more:hover {
        text-decoration: underline;
    }

    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 50px;
    }

    .pagination .page,
    .pagination .current,
    .pagination .next {
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
    }

    .pagination .current {
        background: #8b5a2b;
        color: white;
    }

    .pagination .page {
        background: #f5f5f5;
        color: #333;
    }

    .pagination .page:hover {
        background: #e0e0e0;
    }

    .pagination .next {
        background: #5c3a2a;
        color: white;
    }

    .sidebar {
        max-width: 300px;
        margin: 0 auto;
    }

    .sidebar-widget {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    .sidebar-widget h3 {
        font-family: 'Amatic SC', sans-serif;
        font-size: 28px;
        color: #5c3a2a;
        margin-bottom: 20px;
        border-bottom: 2px solid #f0e6dc;
        padding-bottom: 10px;
    }

    .category-list {
        list-style: none;
        padding: 0;
    }

    .category-list li {
        margin-bottom: 10px;
    }

    .category-list a {
        color: #333;
        text-decoration: none;
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .category-list a:hover {
        color: #8b5a2b;
        padding-left: 10px;
        transition: padding-left 0.3s ease;
    }

    .popular-posts {
        list-style: none;
        padding: 0;
    }

    .popular-posts li {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .popular-posts li:last-child {
        border-bottom: none;
    }

    .popular-posts a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    .popular-posts a:hover {
        color: #8b5a2b;
    }

    .popular-posts span {
        color: #8b5a2b;
        font-size: 12px;
    }

    .cta-widget {
        background: linear-gradient(135deg, #5c3a2a 0%, #8b5a2b 100%);
        color: white;
        text-align: center;
    }

    .cta-widget h3 {
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .cta-widget p {
        margin-bottom: 20px;
    }

    .cta-widget .btn {
        background: white;
        color: #5c3a2a;
    }

    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: 1fr;
        }
    }


        /* STYLE ARTYKUŁU w stylu strony głównej */
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            line-height: 1.8;
        }
        
        .article-content h1 {
            font-family: 'Amatic SC', sans-serif;
            font-size: 48px;
            color: #5c3a2a;
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #8b5a2b;
            padding-bottom: 15px;
        }
        
        .article-content h2 {
            font-family: 'Amatic SC', sans-serif;
            font-size: 36px;
            color: #5c3a2a;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d6cc;
        }
        
        .article-content h3 {
            font-family: 'Amatic SC', sans-serif;
            font-size: 28px;
            color: #8b5a2b;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .article-content p {
            font-family: 'Arima Madurai', sans-serif;
            font-size: 17px;
            color: #333;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-content strong {
            color: #5c3a2a;
            font-weight: bold;
        }
        
        .article-content ul, .article-content ol {
            font-family: 'Arima Madurai', sans-serif;
            font-size: 17px;
            color: #333;
            margin-bottom: 20px;
            padding-left: 25px;
        }
        
        .article-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .article-intro {
            background-color: #f9f5f0;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #8b5a2b;
            margin-bottom: 30px;
        }
        
        .article-intro p {
            font-size: 18px;
            color: #5c3a2a;
            margin-bottom: 0;
        }
        
        .article-meta {
            text-align: center;
            color: #8b5a2b;
            font-family: 'Arima Madurai', sans-serif;
            font-size: 14px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #d4c4b4;
        }
        
        .article-image {
            width: 100%;
            max-width: 700px;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #e0d6cc;
        }
        
        .prev-article, .next-article {
            font-family: 'Arima Madurai', sans-serif;
            color: #8b5a2b;
            text-decoration: none;
            font-weight: bold;
        }
        
        .prev-article:hover, .next-article:hover {
            color: #5c3a2a;
            text-decoration: underline;
        }
        
        .cta-box {
            background: linear-gradient(135deg, #5c3a2a 0%, #8b5a2b 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
        }
        
        .cta-box h3 {
            color: white;
            font-family: 'Amatic SC', sans-serif;
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .cta-box p {
            color: white;
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .article-content h1 {
                font-size: 36px;
            }
            
            .article-content h2 {
                font-size: 28px;
            }
            
            .article-content h3 {
                font-size: 24px;
            }
            
            .article-content p {
                font-size: 16px;
            }
        }
