/* Clean White Background */
    body {
        background: #ffffff !important;
        color: #333;
    }
    
    main {
        background: #f8f9fa;
        min-height: 100vh;
        padding-bottom: 3rem;
    }
    
    /* Shimmer loading animation for images */
    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }
    
    /* Page Header Styling */
    h1 {
        color: #2d3748;
        font-weight: 700;
    }
    
    h1 .fa-newspaper {
        color: #ff6b35 !important;
    }
    
    .text-muted {
        color: #718096 !important;
    }

    .blog-seo-intro {
        background: #fff !important;
    }

    .blog-seo-intro a {
        color: #ff6b35;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .blog-seo-intro a:hover {
        color: #e85d2c;
    }

    .blog-category-mpl-intro a {
        color: #ff6b35;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .blog-category-mpl-intro a:hover {
        color: #e85d2c;
    }

    .blog-pillar-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .blog-pillar-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1) !important;
        border-color: #ff6b35 !important;
    }

    .blog-card-internal-nav a {
        color: #ff6b35;
        font-weight: 600;
        text-decoration: none;
    }

    .blog-card-internal-nav a:hover {
        text-decoration: underline;
    }

    .blog-activity-list a {
        color: #2d3748;
        font-weight: 500;
    }

    .blog-activity-list a:hover {
        color: #ff6b35;
    }
    
    /* Search and Filter Bar */
    .form-control {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 0.6rem 1rem;
        background: white;
    }
    
    .form-control:focus {
        border-color: #ff6b35;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }
    
    .btn-primary {
        background: #ff6b35;
        border: none;
        border-radius: 8px;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background: #ff5722;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    
    .btn-outline-secondary {
        border: 1px solid #e2e8f0;
        color: #4a5568;
        background: white;
        border-radius: 8px;
    }
    
    .btn-outline-secondary:hover {
        background: #f7fafc;
        border-color: #cbd5e0;
        color: #2d3748;
    }
    
    /* Blog Cards */
    .blog-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        border: 1px solid #f0f0f0;
    }
    
    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        border-color: #ff6b35;
    }
    
    .blog-card.featured {
        border: 2px solid #ff6b35;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    }
    
    /* Blog Image */
    .blog-image {
        height: 200px;
        background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff6b35;
        position: relative;
        overflow: hidden;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .featured-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #ff6b35;
        color: #ffffff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
    
    /* Blog Content */
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-category {
        color: #ff6b35;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .blog-title {
        color: #2d3748;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .blog-title a {
        text-decoration: none;
        color: inherit;
        transition: color 0.2s ease;
    }
    
    .blog-title a:hover {
        color: #ff6b35;
    }
    
    .blog-excerpt {
        color: #718096;
        margin-bottom: 1rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.9rem;
    }
    
    .blog-meta {
        display: flex;
        gap: 1rem;
        color: #a0aec0;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
    }
    
    .blog-meta i {
        color: #cbd5e0;
    }
    
    .blog-stats {
        display: flex;
        gap: 1.5rem;
        color: #718096;
        font-size: 0.85rem;
        border-top: 1px solid #f0f0f0;
        padding-top: 0.75rem;
    }
    
    .blog-stats i {
        color: #ff6b35;
        margin-right: 4px;
    }
    
    /* Featured Section */
    h3 .fa-star {
        color: #ff6b35 !important;
    }
    
    /* Statistics Card */
    .card.bg-light {
        background: white !important;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    
    .card-title {
        color: #2d3748;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item i.fa-newspaper {
        color: #ff6b35 !important;
    }
    
    .stat-item i.fa-comments {
        color: #48bb78 !important;
    }
    
    .stat-item i.fa-heart {
        color: #f56565 !important;
    }
    
    .stat-item i.fa-users {
        color: #4299e1 !important;
    }
    
    .stat-item h4 {
        margin: 0.75rem 0 0.25rem;
        color: #2d3748;
        font-weight: 700;
        font-size: 2rem;
    }
    
    .stat-item p {
        margin: 0;
        color: #718096;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    /* Pagination */
    .pagination .page-link {
        color: #4a5568;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin: 0 4px;
        padding: 0.5rem 1rem;
    }
    
    .pagination .page-link:hover {
        background: #f7fafc;
        color: #ff6b35;
        border-color: #ff6b35;
    }
    
    .pagination .page-item.active .page-link {
        background: #ff6b35;
        border-color: #ff6b35;
        color: white;
    }
    
    .pagination .page-item.disabled .page-link {
        color: #cbd5e0;
        background: #f7fafc;
    }
    
    /* Dropdown */
    .dropdown-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
        padding: 0.6rem 1rem;
        color: #4a5568;
        transition: all 0.2s ease;
    }
    
    .dropdown-item:hover {
        background: #fff5f2;
        color: #ff6b35;
    }
    
    .dropdown-item .badge {
        background: #ff6b35 !important;
    }
    
    .dropdown-menu {
        text-align: left !important;
        left: 0 !important;
        right: auto !important;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .dropdown-toggle::after {
        margin-left: auto;
    }
    
    .dropdown-menu .dropdown-item {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    /* Empty State */
    .text-center i.fa-search {
        color: #cbd5e0 !important;
    }
