.naujas-news-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px;
			
        }

        .naujas-news-card {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px var(--background-dark-40);
            transition: transform 0.3s ease;
            border: 1px solid rgba(220, 38, 38, 0.2);
            height: 160px;
            display: flex;
            flex-direction: row;
        }

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

        .naujas-news-image {
            width: 200px;
            height: 160px;
            background: linear-gradient(45deg, #7f1d1d, #450a0a);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
        }

        .naujas-news-image::after {
            content: '📰';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5rem;
            opacity: 0.2;
            color: var(--color-white);
        }

        .naujas-news-image.has-img::after {
            display: none;
        }

        .naujas-news-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .naujas-news-category {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(45deg, #dc2626, #991b1b);
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            z-index: 10;
        }

        .naujas-news-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5f5f5;
            margin-bottom: 8px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .naujas-news-excerpt {
            color: #b5b5b5;
            font-size: 0.9rem;
            line-height: 1.4;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .naujas-news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #888;
            font-size: 0.8rem;
            margin-top: 10px;
        }

        .naujas-news-date {
            font-weight: 500;
        }

        .naujas-read-more {
            color: #dc2626;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 0.8rem;
        }

        .naujas-read-more:hover {
            color: #991b1b;
        }

        .naujas-loading {
            text-align: center;
            padding: 40px;
            color: #888;
            font-size: 1.1rem;
        }

        .naujas-error {
            text-align: center;
            padding: 40px;
            color: #dc2626;
            font-size: 1.1rem;
            background: rgba(220, 38, 38, 0.1);
            border-radius: 10px;
            margin: 20px;
        }

        .naujas-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin: 40px 0;
            padding: 20px;
            flex-wrap: wrap;
        }

        .naujas-pagination-btn {
            background: rgba(30, 30, 30, 0.9);
            border: 1px solid rgba(220, 38, 38, 0.3);
            color: #f5f5f5;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 600;
            min-width: 44px;
            text-align: center;
        }

        .naujas-pagination-btn:hover {
            background: rgba(220, 38, 38, 0.2);
            border-color: #dc2626;
        }

        .naujas-pagination-btn.active {
            background: linear-gradient(45deg, #dc2626, #991b1b);
            color: white;
        }

        .naujas-pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .naujas-pagination-info {
            color: #888;
            font-size: 0.85rem;
            margin: 0 15px;
            order: 3;
            width: 100%;
            text-align: center;
            margin-top: 15px;
        }

        #naujasPageNumbers {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Overlay Styles */
        .naujas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .naujas-overlay.active {
            display: flex;
            opacity: 1;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .naujas-overlay-content {
            background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(220, 38, 38, 0.3);
            border: 1px solid rgba(220, 38, 38, 0.2);
            position: relative;
        }

        .naujas-overlay-header {
            padding: 30px 30px 0;
            position: relative;
        }

        .naujas-overlay-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(220, 38, 38, 0.2);
            border: none;
            color: #dc2626;
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .naujas-overlay-close:hover {
            background: rgba(220, 38, 38, 0.3);
        }

        .naujas-overlay-category {
            display: inline-block;
            background: linear-gradient(45deg, #dc2626, #991b1b);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .naujas-overlay-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #f5f5f5;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .naujas-overlay-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(220, 38, 38, 0.1);
        }

        .naujas-overlay-date {
            font-weight: 500;
        }

        .naujas-overlay-author {
            color: #dc2626;
            font-weight: 600;
        }

        .naujas-overlay-body {
            padding: 0 30px 30px;
        }

        .naujas-overlay-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #7f1d1d, #450a0a);
            border-radius: 15px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .naujas-overlay-image.has-img {
            font-size: 0;
        }

        .naujas-overlay-text {
            color: #e5e5e5;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            white-space: pre-wrap;
        }

        @media (max-width: 768px) {
            .naujas-news-card {
                height: auto;
                flex-direction: column;
                min-height: 200px;
            }
            
            .naujas-news-image {
                width: 100%;
                height: 120px;
            }
            
            .naujas-news-content {
                padding: 15px;
            }

            .naujas-overlay-content {
                margin: 10px;
                max-height: 95vh;
            }
            
            .naujas-overlay-header {
                padding: 20px 20px 0;
            }
            
            .naujas-overlay-body {
                padding: 0 20px 20px;
            }
            
            .naujas-overlay-title {
                font-size: 1.8rem;
            }
            
            .naujas-overlay-text {
                font-size: 1rem;
            }

            .naujas-pagination {
                margin: 20px 0;
                padding: 15px;
                gap: 8px;
            }

            .naujas-pagination-btn {
                padding: 8px 12px;
                font-size: 0.8rem;
                min-width: 40px;
            }

            .naujas-pagination-info {
                font-size: 0.8rem;
                margin: 10px 0 0 0;
            }

            #naujasPageNumbers {
                gap: 5px;
            }
        }
		
		
		