/**
 * BlogPro Category View Styles
 * Copyright © Klartextmedia. All rights reserved.
 */

.blogpro-category-view {
#    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blogpro-category-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
#    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #ffe600 20%, #e41212 100%);

    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blogpro-category-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.blogpro-category-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogpro-category-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blogpro-category-title {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.blogpro-category-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.blogpro-category-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.blogpro-category-posts-count,
.blogpro-category-subcategories-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blogpro-category-posts-count::before {
    content: "📝";
}

.blogpro-category-subcategories-count::before {
    content: "📁";
}

.blogpro-category-content {
    display: grid;
    #grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.blogpro-category-main {
    min-width: 0;
}

.blogpro-category-sidebar {
    min-width: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blogpro-category-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blogpro-category-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blogpro-category-view {
        padding: 1rem 0.5rem;
    }
    
    .blogpro-category-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .blogpro-category-image {
        width: 100%;
        height: 200px;
    }
    
    .blogpro-category-title {
        font-size: 2rem;
    }
    
    .blogpro-category-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blogpro-category-content {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blogpro-category-title {
        font-size: 1.75rem;
    }
    
    .blogpro-category-description {
        font-size: 1rem;
    }
}
