.news-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width:calc(100% + 10px);
}
.news-5 .article {
    background-color: #f9f9f9;
    margin-right: 10px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    width: calc(33.333% - 10px);
    box-sizing: border-box;
    transition: transform 0.3s;
}
.news-5 .article:hover {
    transform: translateY(-10px);
}
@media (max-width: 768px) {
    .news-5 .article {
        flex: 1 1 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
.news-5 .article-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.news-5 .article-title {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}
.news-5 .article-meta {
    font-size: 12px;
    color: #666;
    padding-top: 10px;
}
.news-5 .article-content {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}