/* Blog Page Styles */

.blog-page {
    padding: 120px 0 4rem;
    min-height: 100vh;
}

.page-title {
    color: var(--primary-gold);
    font-family: 'Georgia', serif;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.page-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.filter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--accent-blue) 100%);
    color: var(--text-light);
    border: 2px solid var(--border-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--card-bg) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--accent-blue) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-gold);
}

.article-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2744 0%, #0a0e1a 100%);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.article-image img[src=""],
.article-image img:not([src]) {
    opacity: 0;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
    color: var(--dark-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    color: var(--primary-gold);
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8941f 100%);
    color: var(--dark-bg);
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-read-more:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-page {
        padding: 100px 1rem 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .category-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}

