.category-detail-page {
    max-width: 100%; /* было 1000px */
    margin: 0 auto;
    padding: 0px;
}
/* Заголовок категории */
.category-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.category-header h1 {
    font-size: 20px;
    color: #333;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header h1 i {
    color: #667eea;
}

.category-description {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.articles-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Подкатегории */
.subcategories {
    margin-bottom: 40px;
}

.subcategories h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.subcategory-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.subcategory-card:hover {
    background: #fff;
    border-color: #667eea;
    transform: translateX(5px);
}

.subcategory-card i {
    color: #667eea;
    font-size: 1.2rem;
}

.subcategory-card .count {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: auto;
}

/* Список статей */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.article-thumb {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.article-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size:11px;
    color: #6c757d;
    flex-wrap: wrap;
}

.category-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
}

.article-info h2 {
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.article-info h2 a {
    color: #333;
    text-decoration: none;
}

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

.excerpt {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
       font-size: 13px;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    align-self: flex-start;
        font-size: 12px;
}

.read-btn:hover {
    gap: 12px;
}

/* Пустая категория */
.empty-category {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-category i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #dee2e6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .article-item {
        flex-direction: column;
    }
    
    .article-thumb {
        width: 100%;
        height: 200px;
    }
    
    .subcategories-grid {
        grid-template-columns: 1fr;
    }
}
