.list-news:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-title a {
    text-decoration: none;
    color: inherit;
}
.news-title a:hover {
    text-decoration: none;
}
.news-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}
.news-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: white;
    color: #7f181d;
    font-size: 12px;
    border-radius: 25px;
    border: 1px solid #7f181d;
    margin-bottom: 10px;
}
.view-details-btn {
    display: inline-block;
    padding: 6px 20px;
    background-color: #7f181d;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 0;
    transition: background-color 0.3s ease;
}
.view-details-btn:hover {
    background-color: #7f181d;
    color: white;
}