
    .blog-hero {
        background: #6a1b9a;
        padding: 50px 0;
        text-align: center;
        color: white;
    }
    
    .blog-hero h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .blog-hero p {
        font-size: 16px;
        opacity: 0.95;
    }
    
    .blog-description {
        background: #f8f9fa;
        padding: 30px 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .blog-description p {
        max-width: 800px;
        margin: 0 auto;
        color: #555;
        line-height: 1.6;
    }
    
    .featured-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        transition: all 0.3s;
        height: 100%;
    }
    
    .featured-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .featured-image {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    
    .section-header h3 {
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
    }
    
    .pagination-container {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .pagination-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #6a1b9a;
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .pagination-arrow:hover {
        background: #4a0e6e;
        transform: scale(1.05);
    }
    
    .pagination-arrow.disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
    }
    
    .page-info {
        font-size: 14px;
        color: #666;
    }
    
    .posts-container {
        position: relative;
    }
    
    .posts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        transition: all 0.3s;
    }
    
    .post-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .post-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    
    .post-image {
        height: 180px;
        object-fit: cover;
        width: 100%;
    }
    
    .post-content {
        padding: 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .post-meta {
        font-size: 12px;
        color: #e67e22;
        margin-bottom: 8px;
    }
    
    .post-meta .post-author {
        color: #3498db;
    }
    
    .post-title {
        font-size: 18px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .post-excerpt {
        font-size: 13px;
        color: #777;
        line-height: 1.5;
        margin-bottom: 15px;
        flex: 1;
    }
    
    .sidebar-card {
        background: white;
        border-radius: 10px;
        padding: 18px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .sidebar-title {
        font-size: 16px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid #6a1b9a;
    }
    
    .category-list {
        list-style: none;
        padding: 0;
    }
    
    .category-list li {
        margin-bottom: 8px;
    }
    
    .category-list a {
        color: #555;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 14px;
    }
    
    .category-list a:hover {
        color: #6a1b9a;
        padding-left: 5px;
    }
    
    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .tag {
        background: #f0f0f0;
        color: #555;
        padding: 3px 10px;
        border-radius: 15px;
        font-size: 11px;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .tag:hover {
        background: #6a1b9a;
        color: white;
    }
    
    .btn-read {
        background: #6a1b9a;
        color: white;
        padding: 6px 18px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
        align-self: flex-start;
    }
    
    .btn-read:hover {
        background: #4a0e6e;
        transform: translateX(3px);
        color: white;
    }
    
    /* Rotating Images Carousel */
    .carousel-container {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        object-fit: cover;
    }
    
    .carousel-slide.active {
        opacity: 1;
    }
    
    @media (max-width: 992px) {
        .posts-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .posts-grid {
            grid-template-columns: 1fr;
        }
        .blog-hero {
            padding: 40px 0;
        }
        .blog-hero h1 {
            font-size: 28px;
        }
        .blog-hero p {
            font-size: 14px;
        }
        .carousel-container {
            height: 200px;
        }
    }
