.news-events-section::before {
    content: "";
    position: absolute;
    background-image: url(https://maiamgiadinhviet.vn/wp-content/themes/thuythu-child/custom/images/bg_home_sec_7.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 20.885rem;
    height: 20.885rem;
    top: -7.03125rem;
    left: 5.208rem;
    z-index: 0;
}

.news-events-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden; /* ẩn phần thừa, tránh tràn lên title */
    z-index: 1;
    background: #eae2ef !important;
}

/* ===== TITLE ===== */
.news-events-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 5; /* đảm bảo luôn nằm trên */
}

.news-events-title-left .line1 {
    font-family: 'UVN Ben Xuan';
    font-size: 40px;
    color: #0D4E91;
}

.news-events-title-left .line2 {
    font-family: 'SVN-GilroyBold';
    font-size: 60px;
    color: rgba(215, 34, 98, 0.8);
}

.news-events-title-right .btn-more {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(215, 34, 98, 0.8);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.news-events-title-right:hover a {
    background: #0D4E91;
}

/* ===== GRID CONTENT ===== */
.news-events-content {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    height: 600px;
}

/* Bài 1 chiếm full cột trái */
.news-events-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.news-events-item.item-1 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
}

/* Bài 2, 3 */
.news-events-right-top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.news-events-right-bottom {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* ===== ITEM ===== */
.news-events-item {
    position: relative;
    color: #fff;
    height: 100%;
}

.news-events-item.item-2,
.news-events-item.item-3 {
    display: flex;
    flex-direction: row;
}

.news-events-item.item-2 .thumb,
.news-events-item.item-3 .thumb {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* ===== BOX ===== */
.news-events-box {
    padding: 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.news-events-box .box-line1 {
    font-size: 17px;
    margin-bottom: 5px;
    font-family: 'SVN-GilroyBold';
    padding: 0 15px;
    color: #0D4E91;
}
.news-events-box .box-title {
    font-family: 'SVN-GilroyBold';
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    max-height: calc(1.4em * 4);
    overflow: hidden;
    padding: 0 15px;
    color: #333333;
}
.news-events-box .box-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
    padding: 0 15px;
    color: #333333;
}
.news-events-box .icon svg {
    display: block;
}

/* BOX bài 1 */
.news-events-item.item-1 .news-events-box {
    width: 50%;
    min-height: 50%;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(215, 34, 98, 0.8);
}

.news-events-item.item-1 .box-line1,
.news-events-item.item-1 .box-title,
.news-events-item.item-1 .box-meta {
    color: #ffffff;
}

/* Hover */
.news-events-box:hover {
    background: rgba(215, 34, 98, 0.8);
}
.box-2:hover .box-line1,
.box-2:hover .box-title,
.box-2:hover .box-meta,
.box-3:hover .box-line1,
.box-3:hover .box-title,
.box-3:hover .box-meta {
    color: #ffffff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .news-events-content {
        display: block;
        height: auto;
    }



    .news-events-left,
    .news-events-right-top,
    .news-events-right-bottom {
        width: 100%;
        height: auto;
    }

    .news-events-item {
        height: auto;
    }

    /* Bài 1 full width, cao bằng tổng 2 + 3 */
    .news-events-item.item-1 {
        min-height: calc( (500px / 2) * 2 ); /* cao = 2 bài nhỏ */
    }

    .news-events-item.item-1 .news-events-box {
        width: 100%;
        position: static;
        min-height: auto;
        margin-top: 10px;
    }

    /* Title mobile */
    .news-events-title-left .line1 {
        font-size: 24px;
        text-align: center;
    }
    .news-events-title-left .line2 {
        font-size: 30px;
        text-align: center;
    }
    .news-events-title-right {
        text-align: center;
        padding-bottom: 10px;
    }
    .news-events-title-right .btn-more {
        padding: 5px 13px;
        font-size: 13px;
    }
    .news-events-title {
        display: block;
    }

    .news-events-box .box-title {
        font-size: 14px;
    }

}
