
        :root {
            --primary-color: #4a6fa5;
            --secondary-color: #6c757d;
            --accent-color: #ff6b6b;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .masonry-grid {
            column-count: 3;
            column-gap: 20px;
        }
        
        @media (max-width: 992px) {
            .masonry-grid {
                column-count: 2;
            }
        }
        
        @media (max-width: 768px) {
            .masonry-grid {
                column-count: 1;
            }
        }
        
        .post-card {
            break-inside: avoid;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .post-card.no-image {
            padding-top: 20px;
        }
        
        .post-card:hover {
            transform: translateY(-5px);
        }
        
        .post-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .post-content {
            padding: 20px;
        }
        
        .post-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .post-meta {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.85rem;
            color: var(--secondary-color);
        }
        
        .post-author {
            font-weight: bold;
            margin-right: 10px;
        }
        
        .post-excerpt {
            color: #555;
            margin-bottom: 15px;
        }
        
        .continue-reading {
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
        }
        
        .continue-reading:hover {
            text-decoration: underline;
        }
        
        .category-badge {
            display: inline-block;
            padding: 3px 10px;
            background-color: #f0f0f0;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            color: #555;
            margin-right: 8px;
            text-transform: uppercase;
        }
        
        .reading-time {
            font-size: 0.8rem;
            color: #888;
        }
        
        .pagination-container {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        
        .pagination-link {
            padding: 8px 15px;
            margin: 0 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-decoration: none;
            color: #333;
        }
        
        .pagination-link.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .pagination-link:hover:not(.active) {
            background-color: #f0f0f0;
        }
        
        .search-container {
            margin: 20px 0;
        }
        
        .no-image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .stats span {
            margin-right: 15px;
        }
        
        .stats i {
            margin-right: 5px;
        }
