.item-baiviet-2 {
    display: flex;
    gap: 16px;
    position: relative;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid #E8EAF0;
    border-bottom: 1px solid #E8EAF0;
}

.item-baiviet-2 .media img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}

.item-baiviet-2 .content {
    width: calc(100% - 150px);
}

.item-baiviet-2 .content .post-title {
    margin: 0;
}
.item-baiviet-2 .content .date-info {
    display: flex;
    gap: 8px;
}
.item-baiviet-2 .content .date-info .left i{
    font-size: 14px;
    color: var(--primary);
}
.item-baiviet-2 .content .date-info .right {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.item-baiviet-2 .content .post-title:hover a {
    text-decoration: underline;
}
.item-baiviet-2 .content .post-title a {
    font-weight: 800;
    color: var(--heading);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 27px;
}

/* style for section thong bao */

.section-thong-bao {
    display: flex;
    gap: 30px;
}

.section-thong-bao .ova-blog {
    width: 70%;
}

.section-thong-bao .posts-right {
    width: 30%;
    background-color: #F9F9F9;
    border: 1px solid #E8EAF0;
    margin: 0;
    padding: 24px;
    list-style-type: none;
}

.section-thong-bao .posts-right .post-title {
    margin-top: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E8EAF0;
}

.item-baiviet-3:last-child .post-title {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.section-thong-bao .posts-right .post-title a {
    font-size: 15px;
    font-weight: 800;
    line-height: 22.5px;
    text-align: left;
    color: var(--heading);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 27px;
}

.section-thong-bao .posts-right .post-title a:hover {
    text-decoration: underline;
}

.ova-blog.v1_template_2.gap-0 {
    row-gap: 0px;
}

.ova-blog.v1_template_2.gap-30 {
    row-gap: 30px;
}

@media screen and (max-width: 1024px) {
    .section-thong-bao .ova-blog, 
    .section-thong-bao .posts-right {
        width: 100%;
    }

    .section-thong-bao {
        flex-direction: column;
    }
}