/* Blog List Styles */

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.blog-list-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.blog-list-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-image-link {
    display: block;
    overflow: hidden;
    height: 200px;
}

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

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

.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.article-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-date {
    color: #6c757d;
}

.article-title {
    margin: 12px 0;
    font-size: 1.5rem;
    line-height: 1.3;
}

.article-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-title a:hover {
    color: #667eea;
}

.article-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin: 12px 0;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.article-author {
    color: #718096;
    font-size: 0.9rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #764ba2;
}

.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.no-articles p {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
