
    .category-hero {
        background: #6a1b9a;
        padding: 40px 0;
        text-align: center;
        color: white;
    }
    
    .category-hero h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .category-hero p {
        font-size: 14px;
        opacity: 0.9;
    }
    
    .posts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 30px;
    }
    
    .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;
    }
    
    .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;
    }
    
    .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;
    }
    
    .no-posts {
        text-align: center;
        padding: 60px 20px;
        background: white;
        border-radius: 10px;
        margin-top: 30px;
    }
    
    @media (max-width: 992px) {
        .posts-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .posts-grid {
            grid-template-columns: 1fr;
        }
    }
