/* Blog Page Styles */
.blog-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    background: url('../images/section_bg.png') center center / cover;
    background-attachment: scroll;
    position: relative;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
}

.filter-button {
    padding: 10px 24px;
    background: var(--background-card);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.article-card {
    background: var(--background-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--glow-gold);
}

.article-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.article-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
    width: fit-content;
}

.article-card-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card-title a:hover {
    color: var(--primary-color);
}

.article-card-excerpt {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    flex: 1;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--primary-color);
}

.article-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card-link:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .blog-filters {
        gap: var(--spacing-xs);
    }
    
    .filter-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


