 /* Page Header */
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-title {
            font-size: 42px;
            font-weight: 700;
            color: #1976d2;
            margin-bottom: 16px;
        }

        .page-subtitle {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Blog Layout */
        .blog-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-bottom: 50px;
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            position: relative;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-image.no-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 60%);
        }

        .blog-content {
            padding: 24px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
            font-size: 13px;
            color: #6b7280;
        }

        .blog-category {
            background: #e3f2fd;
            color: #1976d2;
            padding: 4px 12px;
            border-radius: 16px;
            font-weight: 500;
            text-decoration: none;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .blog-title {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-title a {
            color: inherit;
            text-decoration: none;
        }

        .blog-title a:hover {
            color: #1976d2;
        }

        .blog-excerpt {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .blog-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #6b7280;
        }

        .author-avatar {
            width: 32px;
            height: 32px;
            background: #1976d2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 12px;
        }

        .read-more {
            color: #1976d2;
            font-weight: 500;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.3s;
        }

        .read-more:hover {
            color: #1565c0;
        }

        /* Sidebar */
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 20px;
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .recent-posts {
            list-style: none;
        }

        .recent-post {
            padding: 16px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .recent-post:last-child {
            border-bottom: none;
        }

        .recent-post a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            display: block;
            transition: color 0.3s;
        }

        .recent-post a:hover {
            color: #1976d2;
        }

        .recent-post-date {
            font-size: 12px;
            color: #6b7280;
            margin-top: 4px;
        }

        .tags {
            margin-top: 32px;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .tag {
            background: #f3f4f6;
            color: #6b7280;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .tag:hover {
            background: #e3f2fd;
            color: #1976d2;
        }

        /* WordPress Pagination */
        .pagination {
            text-align: center;
            margin: 0 auto;
            display: block;
            width: auto;
            background-color: transparent !important;
        }
        .pagination ul.page-numbers {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 50px;
            list-style: none;
        }

        .pagination .page-numbers li .page-numbers{
            padding: 10px 16px;
            border: 1px solid #d1d5db;
            background-color: #fff;
            color: #6b7280;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s;
            font-size: 14px;
        }

        .pagination .page-numbers li .page-numbers:hover,
        .pagination .page-numbers li .current {
            background: #1976d2;
            color: white;
            border-color: #1976d2;
        }

        .pagination .page-numbers.prev,
        .pagination .page-numbers.next {
            font-weight: 500;
        }

        /* No Posts */
        .no-posts {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .no-posts h2 {
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .no-posts p {
            color: #6b7280;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .blog-layout {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 32px;
            }
            
            .container {
                padding: 20px 16px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .pagination {
                flex-wrap: wrap;
                gap: 4px;
            }
            
            .pagination .page-numbers {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        /* Breadcrumb */
    .breadcrumb {
        margin-bottom: 2rem;
        font-size: 0.9rem;
        color: #7f8c8d;
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .breadcrumb a {
        color: #3498db;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    .breadcrumb span {
        margin: 0 0.5rem;
    }

    /* Article Header */
    .article-header {
        margin-bottom: 3rem;
        text-align: center;
    }

    .article-category {
        display: inline-block;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 1.5rem;
    }

    .article-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .article-subtitle {
        font-size: 1.2rem;
        color: #7f8c8d;
        margin-bottom: 2rem;
        font-weight: 400;
    }

    .article-meta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        color: #95a5a6;
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3498db, #2980b9);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        overflow: hidden;
    }

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Featured Image */
    .featured-image {
        width: 100%;
        height: 400px;
        border-radius: 12px;
        object-fit: cover;
        margin-bottom: 3rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Article Content */
    .article-content {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .article-content h2 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin: 2.5rem 0 1rem;
        font-weight: 600;
    }

    .article-content h3 {
        font-size: 1.4rem;
        color: #34495e;
        margin: 2rem 0 1rem;
        font-weight: 600;
    }

    .article-content p {
        margin-bottom: 1.5rem;
        color: #2c3e50;
    }

    .article-content ul, .article-content ol {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }

    .article-content li {
        margin-bottom: 0.5rem;
    }

    .article-content blockquote {
        border-left: 4px solid #3498db;
        padding: 1rem 2rem;
        margin: 2rem 0;
        background: #f8f9fa;
        border-radius: 0 8px 8px 0;
        font-style: italic;
        color: #34495e;
    }

    .article-content img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 2rem 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Highlight Box */
    .highlight-box {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 1px solid #dee2e6;
        border-radius: 12px;
        padding: 2rem;
        margin: 2rem 0;
        position: relative;
    }

    .highlight-box::after {
        content: "\f0eb";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: -10px;
        left: 20px;
        background: white;
        padding: 0 10px;
        font-size: 1.2rem;
        color: #3498db;
    }

    .highlight-box h4 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    /* Tags */
    .post-tags {
        margin: 2rem 0;
    }

    .post-tags .tag {
        display: inline-block;
        background: #ecf0f1;
        color: #2c3e50;
        padding: 0.3rem 0.8rem;
        margin: 0 0.5rem 0.5rem 0;
        border-radius: 15px;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .post-tags .tag:hover {
        background: #3498db;
        color: white;
    }

    /* Share Section */
    .share-section {
        margin: 3rem 0;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        text-align: center;
    }

    .share-section h3 {
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .share-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .share-btn {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 8px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .share-linkedin { background: #0077b5; }
    .share-twitter { background: #1da1f2; }
    .share-facebook { background: #1877f2; }
    .share-email { background: #6c757d; }

    /* Author Section */
    .author-section {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        margin: 3rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .author-info {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }

    .author-large-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3498db, #2980b9);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
        flex-shrink: 0;
        overflow: hidden;
    }

    .author-large-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author-details h4 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }

    .author-details p {
        color: #7f8c8d;
        margin-bottom: 1rem;
    }

    .author-details .author-title {
        color: #3498db;
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* Related Posts */
    .related-posts {
        margin: 4rem 0;
    }

    .related-posts h3 {
        text-align: center;
        margin-bottom: 2rem;
        color: #2c3e50;
        font-size: 1.8rem;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .related-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        color: inherit;
    }

    .related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .related-card-image {
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
        overflow: hidden;
    }

    .related-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .related-card-content {
        padding: 1.5rem;
    }

    .related-card h4 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .related-card p {
        color: #7f8c8d;
        font-size: 0.9rem;
    }

    /* Comments Section */
    .comments-section {
        margin-top: 4rem;
        padding-top: 3rem;
        border-top: 1px solid #ecf0f1;
    }

    /* Navigation */
    .post-navigation {
        display: flex;
        justify-content: space-between;
        margin: 3rem 0;
        gap: 2rem;
    }

    .nav-link {
        flex: 1;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        text-decoration: none;
        color: #2c3e50;
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        transform: translateY(-2px);
    }

    .nav-link.prev {
        text-align: left;
    }

    .nav-link.next {
        text-align: right;
    }

    .nav-link small {
        color: #7f8c8d;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .nav-link .nav-title {
        display: block;
        margin-top: 0.5rem;
        font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .main {
            padding: 2rem 1rem;
        }

        .article-title {
            font-size: 2rem;
        }

        .article-meta {
            flex-direction: column;
            gap: 1rem;
        }

        .featured-image {
            height: 250px;
        }

        .author-info {
            flex-direction: column;
            text-align: center;
        }

        .share-buttons {
            flex-direction: column;
            align-items: center;
        }

        .share-btn {
            width: 200px;
            justify-content: center;
        }

        .post-navigation {
            flex-direction: column;
        }

        .related-grid {
            grid-template-columns: 1fr;
        }
    }