.articles-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .articles-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .articles-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: #333;
    }

    .articles-header p {
        font-size: 1.1rem;
        color: #666;
    }

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

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

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

    .article-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: #f5f5f5;
    }

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .article-image.placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: #ddd;
    }

    .article-content {
        padding: 20px;
    }

    .article-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: #999;
    }

    .article-title {
        font-size: 1.3rem;
        margin: 10px 0;
        color: #333;
        line-height: 1.4;
    }

    .article-excerpt {
        color: #666;
        margin: 15px 0;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .read-more {
        display: inline-block;
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    .read-more:hover {
        color: #0056b3;
    }

    .pagination {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .pagination-links {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-pagination {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
        color: #333;
        text-decoration: none;
        transition: all 0.3s;
    }

    .btn-pagination:hover {
        background: #007bff;
        color: #fff;
        border-color: #007bff;
    }

    .current-page {
        padding: 8px 12px;
        background: #007bff;
        color: #fff;
        border-radius: 4px;
        font-weight: bold;
    }

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

    .empty-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .empty-state i {
        font-size: 4rem;
        color: #ddd;
    }

    .empty-state h2 {
        font-size: 1.8rem;
        color: #333;
    }

    .empty-state p {
        color: #666;
        font-size: 1.1rem;
    }