.container_news {
    width: 100%;
    margin: 40px auto;
}

.articles-section {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.section-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-item {
    display: flex;
    justify-content: space-between;
    padding: 28px;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #e6e6e6;
}

.article-content {
    flex: 1;
    padding-right: 20px;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.3rem;
    color: #111;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-right: 15px;
}

.article-item:hover .article-title {
    color: #4361ee;
}

.article-date {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.article-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-tags {
    display: flex;
    gap: 8px;
}

.tag {
    padding: 4px 10px;
    background: #f5f7ff;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #4361ee;
}

.article-more {
    display: flex;
    align-items: center;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.more-link:hover {
    background: #4361ee;
    color: white;
    gap: 8px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #4361ee;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.view-all-btn:hover {
    background: #3a0ca3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 97, 238, 0.4);
    gap: 12px;
}

@media (max-width: 768px) {
    .article-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-item {
        padding: 20px;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .article-tags {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .container_news {
        padding: 10px;
    }
    
    .articles-section {
        padding: 25px;
    }
    
    .article-item {
        padding: 18px;
    }
    
    .article-title {
        font-size: 1.1rem;
    }
}