﻿/* Blog Page Header Container */
/*.blog-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

    .blog-page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
        background-size: cover;
    }*/

/* Header Sections */
/*.header-section {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

    .header-section:last-child {
        margin-bottom: 0;
    }*/

/* Section Labels */
/*.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}*/

/* Category Name */
/*.category-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}*/

/* Tags Container */
/*.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}*/

/* Individual Tag Pills */
/*.tag-pill {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

    .tag-pill:hover {
        background: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }*/

/* Responsive Design */
/*@media (max-width: 768px) {
    .blog-page-header {
        padding: 1.8rem;
        margin-bottom: 2rem;
        border-radius: 8px;
    }

    .category-name {
        font-size: 1.8rem;
    }

    .tags-container {
        gap: 0.5rem;
    }

    .tag-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}*/

/* Animation */
/*.blog-page-header {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Special styling for "All Categories" */
/*.category-name:contains("All Categories") {
    opacity: 0.9;
    font-style: italic;
}*/


.blog-header-compact {
    background: #f8fafc;
    border-left: 10px solid #D49820;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 6px 6px 0;
}

.blog-meta-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.meta-category {
    font-weight: 600;
    color: #2d3748;
    font-size: 25px;
}

.meta-separator {
    color: #a0aec0;
    font-weight: 300;
}

.meta-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tag-mini {
    background: #D49820;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-header-compact {
        padding: 0.6rem 0.8rem;
        margin-bottom: 1rem;
    }

    .blog-meta-line {
        font-size: 0.85rem;
        gap: 0.3rem;
    }

    .tag-mini {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }
}
