        .articles-container { margin: 0 auto; padding: 20px 0; }
        .articles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
        .article-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
        .article-thumb { height: 200px; overflow: hidden; }
        .article-thumb img { width: 100%; height: 100%; object-fit: cover; }



.author-name::after {
    content: ",";
    margin-right: 4px;
    color: #ccc;
}
.author-name:last-child::after {
    content: none;
}
        .article-content { 
            padding: 20px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
        }
        
        /* Заголовок + дата */
        .article-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            
        }
        
        .article-title {
            font-size: 1em;
            margin: 0;
            line-height: 1.1;
            color: #333;
            flex: 1;
            font-weight: 400;
        }
        .article-card:hover .article-title {
            color: var(--color-accent-2);
        }
        .article-date {
            font-size: 13px;
            color: #888;
            white-space: nowrap;
            font-weight: 500;
        }
        
        .article-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 16px;
            flex-grow: 1;
        }
        
        /* Автор-специалист */
        .article-author {
            padding-top: 12px;
            border-top: 1px solid #eee;
            font-size: 13px;
            color: #555;
        }

        
        .author-name {
            font-weight: 600;
            color: #333;
        }
        
        /* Пагинация */
        .articles-pagination ul { display: flex; justify-content: center; list-style: none; padding: 0; gap: 5px; }
        .articles-pagination li a, .articles-pagination li span { padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px; text-decoration: none; color: #333; }
        .articles-pagination li a:hover { background: var(--color-accent); color: #fff; border-color: #0073aa; }
        .articles-pagination span.current { background: var(--color-accent-2); color: #fff; border-color: var(--color-accent-2);; }
        /* Адаптивность */
        @media (max-width: 1024px) { 
            .articles-grid { grid-template-columns: repeat(2, 1fr); }
            .article-header { flex-direction: column; align-items: flex-start; }
            .article-date { margin-top: 4px; }
        }
        @media (max-width: 600px) { 
            .articles-grid { grid-template-columns: 1fr; }
        }
        
        /* Индикатор загрузки */
        .ajax-loading { text-align: center; padding: 20px; display: none; }
        .ajax-loading.active { display: block; color: #666; font-style: italic; }