.news-list {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mỗi tin tức sẽ có 2 phần: Bên trái (ảnh đại diện) và bên phải (thông tin) */
.news-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Phần bên trái: ảnh đại diện */
.news-left {
    flex: 0 0 150px; /* Giữ ảnh luôn cố định với chiều rộng 150px */
    height: 150px;
    margin-right: 20px; /* Khoảng cách giữa ảnh và thông tin */
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 2px solid #ddd; /* Tạo đường viền ngăn cách giữa ảnh và thông tin */
}

/* Phần bên phải: thông tin tin tức */
.news-right {
    flex-grow: 1; /* Phần này sẽ chiếm không gian còn lại */
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
}

.news-title:hover {
    color: #007BFF;
}

.news-meta {
    font-size: 14px;
    color: #777;
    margin-bottom:1px;
	text-align:justify;
	font-style:italic
}

.news-views {
    font-size: 14px;
    color: #555;
}

.news-views i {
    margin-right: 5px;
}

/* Thiết kế responsive */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }

    .news-left {
        width: 100%;
        height: 200px;
        margin-right: 0;
    }

    .news-right {
        padding: 10px;
    }

    .news-title {
        font-size: 18px;
    }
}
