/* =======================================================
   1. RESET & CƠ BẢN
   ======================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

.news-notices__list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
/* bg của thanh cuộn */
.news-notices__list::-webkit-scrollbar-track {
    background: #ececec9d;
    border-radius: 10px;
}

.news-notices__list::-webkit-scrollbar-thumb {
    background: #dadada;
    border-radius: 10px;
}

.news-notices__list::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.news-notices__list::-webkit-scrollbar-thumb:hover {
    background: #dadada;
}
/* khóa cuộn mobile */
body.no-scroll {
    overflow: hidden;
}

:root {
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --red: #a62823;
    --red-se: #93000b;
    --text-title: #151c27;
    --text-main: #333333;
    --text-desc: #5c6274;
    --font: "Be Vietnam Pro", sans-serif;
}

.see-more-btn {
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* font */
    font-family: var(--font);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 138.462% */
    letter-spacing: 0.26px;
    /* style */
    border-radius: 8px;
    border: 1px solid rgba(131, 131, 131, 0.2);
    color: #333;
    text-align: center;
    transition: var(--transition);
}

    .see-more-btn:hover {
        color: #fff;
        border-radius: 8px;
        border: 1px solid #a62823;
        background: #a62823;
    }

        .see-more-btn:hover::after {
            content: "";
            width: 14px;
            height: 14px;
            display: inline-block;
            background-image: url("../img/arrow-white.svg");
        }

    .see-more-btn::after {
        content: "";
        width: 14px;
        height: 14px;
        display: inline-block;
        background-image: url("../img/btn-arrow.svg");
        transition: var(--transition);
    }

/* =======================================================
    DESKTOP HEADER (Mặc định cho màn >= 1024px)
   ======================================================= */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 99;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 80px;
}

.logo img {
    object-fit: cover;
}

/*Menu ngang Desktop*/
.nav-menu__desktop {
    height: 100%;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 0;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.header__wrap .nav-link {
    color: #43474f;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 133.333% */
    padding: 10px 0;
}

/* .header__wrap .nav-link.nav__active {
    color: var(--red-se);
} */
.top-header__action a:hover {
    color: rgba(255, 255, 255, 0.7);
}
/* menu cấp 2 Submenu Desktop*/
.has-submenu {
    position: relative;
}

.arrow {
    display: inline-block;
    font-size: 10px;
    margin-left: 6px;
    transition: var(--transition);
    vertical-align: middle;
}
/* ẩn icon cái này trên menu lớn desktop, cần thì mở lại */
.has-submenu > .nav-link .arrow {
    display: none;
}

.nav-link i {
    display: flex;
    font-size: 14px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: -32px;
    width: 330px;
    padding: 20px 0 30px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

    .submenu > li {
        padding: 0 32px;
    }

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-link {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: #43474f;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    transition: var(--transition);
    padding: 12px 0;
}

    .submenu-link .arrow {
        transform: rotate(-90deg);
    }

        .submenu-link .arrow i {
            font-size: 16px;
        }

.submenu > li:not(:last-child) .submenu-link {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.submenu > li:not(:first-child) .submenu-link {
    padding-top: 12px;
}

/* menu cấp 3 child-menu */
.has-child-menu {
}

.child-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 330px;
    padding: 20px 0 30px 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    background: #a62823;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .child-menu > li {
        padding: 0 32px;
    }

.child-menu-link {
    display: block;
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    padding: 12px 0;
}

.child-menu > li:not(:last-child) .child-menu-link {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.has-child-menu:hover .child-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/*hover vào thì vẫn giữ màu đỏ ở menu cha*/
.has-submenu:hover > .nav-link {
    color: #a62823; 
}


.has-child-menu:hover > .submenu-link {
    color: #a62823;
}
/* Ẩn nút Hamburger trên Desktop */
.menu-toggle {
    display: none;
}

.langbox {
    background-color: #fff;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid #f6f6f6;
}

    .langbox a {
        color: #b5b5b5;
        font-family: var(--regular);
        font-size: 12px;
        padding: 2px 6px;
    }

        .langbox a.lang__active {
            color: var(--red-dark);
            background: var(--bg-red-dark);
        }

/* ============================================= */
/* SCROLL TO TOP BTN */
/* ============================================= */
.scrollToTopBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 32px;
    bottom: 32px;
    color: #cfcfcf;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    z-index: 99;
    transform: translateY(100px);
    transition: all 0.5s ease;
    border: 1px solid rgba(169, 22, 28, 0.06);
    background: #cf302a;
}

.showBtn {
    opacity: 0.5;
    transform: translateY(0);
}

.scrollToTopBtn:hover {
    opacity: 1;
    color: #fff;
}

.nav-item__mobile {
    display: none;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    z-index: 99;
}

.lang-selected {
    background-color: var(--red);
    color: white;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    user-select: none;
}

    .lang-selected svg {
        margin-left: 4px;
    }

.lang-options {
    display: none;
    position: absolute;
    background-color: var(--red);
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%; /* Nằm ngay dưới nút bấm */
    left: 0;
}

    .lang-options li {
        color: white;
        padding: 10px 15px;
        cursor: pointer;
        font-weight: bold;
        user-select: none;
    }

        .lang-options li:hover {
            background-color: #8a241e; /* Màu đậm hơn khi hover */
        }

/* Class dùng để hiển thị dropdown qua JS */
.show {
    display: block;
}

.top-header {
    position: relative;
    z-index: 100;
    background: #a62823;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px 0;
}

.top-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .top-header-wrap .dtu-logo {
        display: flex;
        gap: 18px;
        align-items: center;
    }

        .top-header-wrap .dtu-logo .title {
            color: #fff;
            font-family: "Fira Sans Extra Condensed";
            font-size: 15px;
            font-style: normal;
            font-weight: 600;
            line-height: 22px; /* 146.667% */
            letter-spacing: 0.15px;
            text-transform: uppercase;
        }

.top-header__action {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .top-header__action a {
        color: #fff;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px; /* 142.857% */
        transition: var(--transition);
    }

.lang-options li,
.current-lang {
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

.btn-search-modal {
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    background-color: var(--red-se);
    padding: 4px 16px;
    border: none;
    border-radius: 0 4px 4px 0;
}

.heading-wrap--center {
    text-align: center;
}

.heading-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
/* ============================================= */
/* banner  */
/* ============================================= */

.banner-slick .slick-slide img {
    aspect-ratio: 12 / 5;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* ============================================= */
/* about  */
/* ============================================= */
.about {
    margin-top: 80px;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 86px;
}

.about__img {
    position: relative;
}

.about__ranking-badge {
    background-color: #b91c1c;
    border-radius: 12px;
    padding: 32px;
    position: absolute;
    bottom: -24px;
    right: -24px;
}

    .about__ranking-badge .title {
        font-family: var(--font);
        font-weight: 700;
        font-size: 36px;
        color: #ffa700;
    }

    .about__ranking-badge .desc {
        font-family: var(--font);
        font-weight: 500;
        font-size: 13px;
        color: #ffffff;
    }

.about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-desc {
    color: #5c6274;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px; /* 151.667% */
    margin-top: 8px;
}

.section-label {
    font-family: var(--font);
    font-weight: 500;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 1.3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

    .section-label::after {
        content: "";
        width: 72px;
        height: 2px;
        display: inline-block;
        background-color: var(--red);
    }

.section-label--center::before {
    content: "";
    width: 72px;
    height: 2px;
    display: inline-block;
    background-color: var(--red);
}

.about__content .title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 28px;
    color: var(--text-title);
    line-height: 36px;
    letter-spacing: -0.72px;
    text-transform: uppercase;
}

    .about__content .title span {
        color: var(--red);
        display: block;
    }

.about__content .desc {
    color: var(--text-main);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.about__content .feature__list {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

    .about__content .feature__list .feature__item {
        color: var(--text-title);
        font-family: var(--font);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px; /* 160% */
        display: flex;
        gap: 12px;
        align-items: center;
    }

        .about__content .feature__list .feature__item::before {
            content: "";
            background-image: url(../img/check-gioithieu.svg);
            width: 20px;
            height: 20px;
            display: inline-block;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }
/* ============================================= */
/* programs  */
/* ============================================= */
.programs {
    margin-top: 86px;
    background-color: #f9fafb;
    padding: 70px 0;
}

.program__wrap:not(:first-child) {
    margin-top: 30px;
}

.program__item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.section-title {
    color: var(--text-title);
    font-family: var(--font);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
}

.program__title {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 200% */
    text-transform: uppercase;
}

.program__desc {
    color: #838383;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px; /* 149.333% */
}

.program__slick {
    margin-top: 20px;
}
/* fix slick slide */
.program__slick-daotao .slick-slide {
    margin: 0 18px;
}

.program__slick-daotao .slick-list {
    margin: 0 -18px;
}

.program__slick .item .ic {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: #93000b;
}

.slick_arrows_container {
    display: flex;
    gap: 16px;
}

.programs .slide-btn {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(51, 51, 51, 0.15);
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .programs .slide-btn i {
        display: flex;
        font-size: 16px;
    }

    .programs .slide-btn:hover {
        background-color: var(--red);
        color: #fff;
    }

.program__slick .item {
}

    .program__slick .item .title {
        color: #333;
        font-family: "Be Vietnam Pro";
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 148.235% */
        letter-spacing: -0.5px;
        transition: var(--transition);
    }

    .program__slick .item .desc {
        color: #5c6274;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 157.143% */
        height: stretch;
        padding-bottom: 30px;
    }

    .program__slick .item .desc-small {
        color: #575e70;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 19.5px; /* 150% */
        display: flex;
        gap: 6px;
        align-items: center;
    }

        .program__slick .item .desc-small i {
            display: flex;
            font-size: 15px;
        }

    .program__slick .item .link {
        color: #93000b;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 19.6px; /* 140% */
        display: flex;
        gap: 4px;
        align-items: center;
    }

        .program__slick .item .link::after {
            content: "";
            background-image: url(../img/arrow-red.svg);
            display: inline-block;
            width: 12px;
            height: 12px;
        }
/* ============================================= */
/* news  */
/* ============================================= */
.news {
    margin-top: 70px;
}

.news__wrap {
    display: grid;
    grid-template-columns: 4fr 3fr 3fr;
    gap: 24px;
    width: 100%;
    margin-top: 30px;
}

.news-hot {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(220, 226, 243, 0.3);
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

    .news-hot .label {
        position: absolute;
        top: 10px;
        left: 16px;
        padding: 4px 16px;
        border-radius: 9999px;
        background: #93000b;
        color: #fff;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 150% */
        letter-spacing: 1.3px;
        z-index: 2;
    }

    .news-hot img {
        transition: var(--transition);
    }

    .news-hot:hover img {
        transform: scale(1.05);
    }

    .news-hot:hover .title {
        color: var(--red-se);
    }

.news-hot__content {
    padding: 30px 26px;
}

.date-ic-1::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("../img/date.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.date-ic::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("../img/date-02.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.news-hot__content .date {
    color: #818895;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-weight: 400;
    line-height: 24px; /* 184.615% */
    margin-bottom: 12px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.news-hot__content .title {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
    transition: var(--transition);
}

.news-hot__content .desc {
    color: #5c6274;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    margin-bottom: 24px;
}

.news-hot__content .link {
    color: #93000b;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.6px; /* 140% */
    display: flex;
    gap: 8px;
    align-items: center;
}

    .news-hot__content .link::after {
        content: "";
        background-image: url(../img/arrow-red.svg);
        display: inline-block;
        width: 12px;
        height: 12px;
    }

.news-others-wrap {
    min-width: 0;
}

.gallery-block,
.facilities-block,
.admissions .admissions-block,
.news .news__wrap {
    position: relative;
}

    .gallery-block .see-more-btn,
    .facilities-block .see-more-btn,
    .admissions .see-more-btn,
    .news-others-wrap .see-more-btn {
        position: absolute;
        top: -40px;
        right: 0px;
        transform: translateY(-100%);
    }

.news-others {
    height: 100%;
    min-width: 0;
    padding: 20px 24px;
    border-radius: 12px;
    background: #00473f;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

.news-others-slick {
    margin-top: 16px;
}

.news-others .card-title {
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.2px; /* 140% */
    text-transform: uppercase;
}

.news-others__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 70px;
}

    .news-others__content .date {
        color: rgba(255, 255, 255, 0.8);
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 184.615% */
        display: inline-flex;
        gap: 8px;
        align-items: center;
    }

    .news-others__content .title {
        color: #fff;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .news-others__content .desc {
        color: rgba(255, 255, 255, 0.8);
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 200;
        line-height: 22px; /* 157.143% */
    }

.news-notices {
    padding: 24px 20px;
    border-radius: 12px;
    background: #f6f6f6;
}

    .news-notices .card-title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 140% */
        text-transform: uppercase;
    }

.news-notices__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    overflow-y: scroll;
    max-height: 500px;
}

    .news-notices__list .item {
        margin-right: 5px;
        padding: 12px 16px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .news-notices__list .badge-wrap {
        padding-bottom: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .news-notices__list .badge-wrap span:first-child {
            font-family: "Be Vietnam Pro";
            font-size: 10px;
            font-style: normal;
            font-weight: 500;
            line-height: 15px; /* 150% */
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: inline-flex;
            gap: 8px;
            align-items: center;
        }

        .news-notices__list .badge-wrap span:last-child {
            color: #818895;
            font-family: "Be Vietnam Pro";
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; /* 200% */
        }

    .news-notices__list .item .title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 17.5px; /* 125% */
    }

.news-notices .see-more-btn {
    margin-top: 24px;
}

.news-others .slide-btn {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    transition: var(--transition);
}

    .news-others .slide-btn i {
        display: flex;
        color: #fff;
        transition: var(--transition);
    }

    .news-others .slide-btn:hover {
        background-color: #fff;
    }

        .news-others .slide-btn:hover i {
            color: var(--red-se);
        }

.dot-ic::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 99999px;
    background-color: inherit;
}

.dot-ic.s1::before {
    background-color: #0b1f4b;
}

.dot-ic.s2::before {
    background-color: #cca53a;
}

.dot-ic.s3::before {
    background-color: #2563a8;
}

.dot-ic.s4::before {
    background-color: #1e7a6a;
}

.dot-ic.s5::before {
    background-color: #5a3d8a;
}

.s1 {
    color: #0b1f4b;
}

.s2 {
    color: #cca53a;
}

.s3 {
    color: #2563a8;
}

.s4 {
    color: #1e7a6a;
}

.s5 {
    color: #5a3d8a;
}

.card-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrows-card-container {
    display: flex;
    gap: 8px;
}
/* ============================================= */
/* admissions  */
/* ============================================= */
.admissions {
    margin-top: 70px;
}

.admissions__wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

    .admissions__wrap .item {
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: #fff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: var(--transition);
    }

        .admissions__wrap .item:hover {
            transform: translateY(-8px);
        }

            .admissions__wrap .item:hover .title {
                color: var(--red);
            }

.admissions__content {
    display: flex;
    padding: 22px 20px 24px 22px;
    flex-direction: column;
    gap: 12px;
}

    .admissions__content .tags {
        padding: 4px 10px;
        border-radius: 9999px;
        background: rgba(208, 208, 208, 0.3);
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px; /* 150% */
        align-self: flex-start;
    }

    .admissions__content .title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: 22.5px; /* 132.353% */
        transition: var(--transition);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .admissions__content .date {
        color: #818895;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 184.615% */
        display: inline-flex;
        gap: 8px;
        align-items: center;
    }

    .admissions__content .desc {
        color: #5c6274;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 157.143% */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
/* ============================================= */
/* testimonial  */
/* ============================================= */
.testimonial {
    background-image: url("../img/BG-conco-full.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    aspect-ratio: 6/2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial__wrap {
    padding-bottom: 80px;
}

.testimonial__text {
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px; /* 175% */
    letter-spacing: 0.2px;
    text-align: center;
}

.testimonial__text-sm {
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.2px;
    text-align: center;
    margin-top: 10px;
}

.testimonial__author {
    margin-top: 30px;
}

    .testimonial__author::before {
        content: "";
        height: 1px;
        width: 96px;
        background-color: #fff;
        display: block;
        margin: 0 auto 48px;
    }

    .testimonial__author p:first-child {
        color: #fff;
        text-align: center;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px;
        letter-spacing: 2.7px;
        text-transform: uppercase;
    }

    .testimonial__author p:last-child {
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 19.5px; /* 150% */
        letter-spacing: 2.6px;
        text-transform: uppercase;
        margin-top: 8px;
    }

/* ============================================= */
/* facilities  */
/* ============================================= */
.facilities {
    padding-bottom: 70px;
    background: #f9fafb;
}

    .facilities .section-desc {
        max-width: 500px;
    }

.facilities__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

    .facilities__wrap .item--lg {
        grid-column: span 2;
        grid-row: span 2;
    }

    .facilities__wrap .item::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.85) 100%);
    }

    .facilities__wrap .item {
        position: relative;
        border-radius: 12px;
        background: #dce2f3;
        overflow: hidden;
    }

        .facilities__wrap .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* fix content cho đều */
        .facilities__wrap .item.item--lg .item__content {
            max-width: 50%;
        }

        .facilities__wrap .item .item__content {
            position: absolute;
            bottom: 32px;
            left: 26px;
            right: 26px;
            max-width: 70%;
        }

        .facilities__wrap .item.item--lg .item__content .title {
            color: #fff;
            font-family: "Be Vietnam Pro";
            font-size: 34px;
            font-style: normal;
            font-weight: 600;
            line-height: 43.2px; /* 127.059% */
            letter-spacing: -0.72px;
        }

        .facilities__wrap .item.item--lg .item__content .desc {
            color: #fff;
            font-family: "Be Vietnam Pro";
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 22.75px; /* 162.5% */
            margin-top: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .facilities__wrap .item .item__content .title {
            color: #fff;
            font-family: "Be Vietnam Pro";
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 31.2px; /* 130% */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .facilities__wrap .item .item__content .desc {
            color: #fff;
            font-family: "Be Vietnam Pro";
            font-size: 13px;
            font-style: normal;
            font-weight: 500;
            line-height: 19.5px; /* 150% */

            margin-top: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
/* ============================================= */
/* story  */
/* ============================================= */
.story {
    margin-top: 80px;
    padding: 70px 0;
    background: #f9fafb;
}

    .story .slick-track {
        display: flex;
        padding-bottom: 8px;
    }

.story__wrap {
    margin-top: 30px;
}

    .story__wrap .content {
        display: flex;
        flex-grow: 1;
        gap: 8px;
        padding: 32px;
        flex-direction: column;
        justify-content: space-between;
    }

    .story__wrap .item {
        display: flex;
        flex-direction: column;
        height: auto;
        overflow: hidden;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.04);
    }

    .story__wrap .content .tags {
        color: #93000b;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 150% */
        letter-spacing: 1px;
    }

    .story__wrap .content .title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 140% */
    }

    .story__wrap .content .desc {
        color: #5c6274;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px; /* 160% */
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .story__wrap .content .link {
        color: #93000b;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 19.6px; /* 140% */
        margin-top: auto;
        display: flex;
        gap: 8px;
        align-items: center;
    }

        .story__wrap .content .link::after {
            content: "";
            background-image: url(../img/arrow-red.svg);
            display: inline-block;
            width: 12px;
            height: 12px;
        }

.story__slick .slick-slide {
    margin: 0 12px;
}

.story__slick .slick-list {
    margin: 0 -12px;
}

.story__slick .item img {
    transition: var(--transition);
}

.story__slick .item:hover img {
    transform: scale(1.05);
}

.slick-style .slide-btn {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(51, 51, 51, 0.15);
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .slick-style .slide-btn i {
        display: flex;
        font-size: 16px;
    }

    .slick-style .slide-btn:hover {
        background-color: var(--red);
        color: #fff;
    }

.slick-style .section-desc {
    max-width: 600px;
}

.slick-style .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 25px;
}
/* ============================================= */
/* member  */
/* ============================================= */
/* fix slick slide */
.member__slick .slick-track {
    display: flex;
}

.member__slick .slick-slide {
    margin: 0 16px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.member__slick .slick-list {
    margin: 0 -16px;
}

.member-slide {
    margin: 70px 0;
}

.member__wrap {
    margin-top: 30px;
}

.member-slide .section-desc {
    max-width: 500px;
}

.member__slick .item {
    background: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
}

    .member__slick .item img {
        max-height: 300px;
        object-fit: cover;
        transition: var(--transition);
    }

.member__slick .content {
    display: flex;
    flex-grow: 1;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    background: #f6f6f6;
}

    .member__slick .content .name {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 33px; /* 165% */
    }

    .member__slick .content .desc {
        color: #5c6274;
        font-family: "Be Vietnam Pro";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 150% */
        text-transform: uppercase;
    }

    .member__slick .content .tags {
        color: #8f6f6c;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 150% */
    }

.member__slick .item:hover img {
    transform: scale(1.05);
}

.member-all-wrap {
    display: flex;
    justify-content: center;
}

.member-all {
    display: flex;
    padding: 12px 34px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    border: 2px solid #ededed;
    background: #fff;
    color: #5c6274;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    margin-top: 46px;
    transition: var(--transition);
}

    .member-all:hover {
        border-color: var(--red-se);
        color: var(--red-se);
    }
/* ============================================= */
/* gallery-section  */
/* ============================================= */
.gallery-section .section-desc {
    max-width: 500px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================= */
/* partner  */
/* ============================================= */
.fade-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #cbd5e1, transparent);
    margin: 0 0 48px 0;
}

.partner {
    margin-top: 80px;
    border-top: 2px solid rgba(102, 102, 102, 0);
}

.partner__slick .item img {
    display: block;
}

.partner__slick .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 80px;
}

    .partner__slick .slick-slide .item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

.partner .slick-slide img {
    width: auto;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
/* ============================================= */
/* footer  */
/* ============================================= */
.footer-red {
    background: #a62823;
}

footer {
    background: #f6f6f6;
    margin-top: 80px;
}

.footer__wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
}

    .footer__wrap .social-wrap {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-top: 26px;
    }

        .footer__wrap .social-wrap a {
            display: flex;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
            border-radius: 9999px;
            background: #fff;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

    .footer__wrap .item .title {
        color: #a62823;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px; /* 138.462% */
        letter-spacing: 1.3px;
        text-transform: uppercase;
    }

.footer-red .footer__wrap .item .title {
    color: #ffffffb2;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.footer-red .footer__list a {
    color: #fff;
    opacity: 1;
}

.footer__list a {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 133.333% */
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0.7;
}

.footer-red .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom {
    border-top: 1px solid rgba(129, 136, 149, 0.2);
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 54px;
    padding-bottom: 40px;
}

.footer-red .footer__bottom .text {
    color: #ffffffb2;
    opacity: 1;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 138.462% */
    letter-spacing: 0.26px;
}

.footer__bottom .text {
    color: #151c27;
    opacity: 0.5;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 138.462% */
    letter-spacing: 0.26px;
}

.footer__bottom__item {
    display: flex;
    gap: 32px;
    align-items: center;
}

    .footer__bottom__item a {
        color: #151c27;
        opacity: 0.5;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px; /* 138.462% */
        letter-spacing: 0.26px;
    }

.footer-red .footer__bottom__item a {
    color: #ffffffb2;
    opacity: 1;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 138.462% */
    letter-spacing: 0.26px;
}

.footer__list .ic::before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
}

.footer__list .ic-location::before {
    background-image: url("../img/diachi.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.footer__list .ic-mail::before {
    background-image: url("../img/mail.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.footer__list .ic-phone::before {
    background-image: url("../img/phone.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.p-60 {
    padding-left: 60px;
}

.p-40 {
    padding-left: 40px;
}

.program__slick-daotao .slick-dots {
    bottom: -60px;
}

.red-dots .slick-dots li button {
    background-color: #dedede;
}

.red-dots .slick-dots li.slick-active button {
    background-color: #a62823;
}

.slick-dots li {
    width: unset;
}

    .slick-dots li button::before {
        content: none;
    }

    .slick-dots li button {
        content: "";
        width: 6px;
        height: 6px;
        background-color: #fff;
        border-radius: 999999px;
        padding: 0;
        opacity: 0.5;
        transition: var(--transition);
    }

    .slick-dots li.slick-active button {
        content: "";
        width: 24px;
        height: 6px;
        background-color: #fff;
        border-radius: 999999px;
        color: #fff;
        opacity: 1;
    }

.slick-slide img {
    width: 100%;
}

.admissions__wrap img {
    width: 100%;
}

.search-box-mobile {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background-color: #ffffff;
    border: 1.5px solid #e4e4e7;
    border-radius: 12px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin: 20px 15px;
}

    .search-box-mobile:focus-within {
        border-color: #a1a1aa;
    }

.search-icon {
    color: #71717a;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #3f3f46;
    font-family: inherit;
}

    .search-input::placeholder {
        color: #8b8b93;
        font-weight: 400;
    }

.search-box-mobile {
    display: none;
}

.main-grid {
    display: grid;
    gap: 50px;
    flex-shrink: 0;
    grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
    display: flex;
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: start;
    border-radius: 12px;
    background: #f6f6f6;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.sidebar__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 24px 16px 24px;
    width: 100%;
}

.sidebar .title {
    color: #93000b;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 31.2px; /* 130% */
}

.sidebar .desc {
    color: #575e70;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.5px; /* 150% */
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sidemenu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

    .sidemenu-list a {
        color: #5c6274;
        font-family: "Be Vietnam Pro";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 157.5% */
        display: flex;
        padding: 12px 16px 12px 24px;
        align-items: center;
        align-self: stretch;
        transition: var(--transition);
    }

        .sidemenu-list a:hover {
            color: #151c27;
        }

        .sidemenu-list a.active {
            color: #93000b;
            font-family: "Be Vietnam Pro";
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 24px; /* 150% */
            border-left: 4px solid #93000b;
            background: rgba(217, 217, 217, 0.3);
        }

.mt-title {
    margin-top: 30px;
}

.article .title {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 43.2px; /* 144% */
    letter-spacing: -0.72px;
    margin-bottom: 24px;
}

.article img {
    max-width: 100%;
    height: auto !important;
}

.quote-wrap {
    padding: 8px 0 8px 24px;
    border-left: 2px solid #93000b;
    margin-bottom: 40px;
}

.article p {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    margin-bottom:10px;
}

.paragraph {
    margin-bottom: 20px;
}

.has-img {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
}

    .has-img img {
        border-radius: 12px;
        background: rgba(255, 255, 255, 0);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    }

    .has-img .name {
        color: #a62823;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 140% */
        margin-top: 20px;
    }

    .has-img .name-desc {
        color: #818895;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 25.2px; /* 180% */
    }

.article p.img-desc {
    color: #575e70;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 25.2px; /* 168% */
    margin-bottom: 30px;
    margin-top: 14px;
}

.banner-sm {
    background-image: url("../img/page-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-banner {
    padding: 108px 0 108px 0;
}

    .page-banner::before {
        content: "";
        display: inline-block;
        width: 96px;
        height: 4px;
        background-color: #cc2127;
        margin-bottom: 24px;
    }

    .page-banner .title {
        color: #fff;
        font-family: "Be Vietnam Pro";
        font-size: 34px;
        font-style: normal;
        font-weight: 700;
        line-height: 43.2px; /* 127.059% */
        letter-spacing: -0.72px;
        margin-bottom: 12px;
    }

    .page-banner .desc {
        color: #fff;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 157.143% */
    }

.breadcrumb-wrap {
    background-color: #f6f6f6;
}

.breadcrumb-grid {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .breadcrumb-grid a {
        color: #818895;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 150% */
    }

        .breadcrumb-grid a:last-child {
            color: #a62823;
            font-family: "Be Vietnam Pro";
            font-size: 13px;
            font-style: normal;
            font-weight: 600;
            line-height: 19.5px; /* 150% */
        }

        .breadcrumb-grid a:not(:last-child):after {
            content: "";
            display: inline-block;
            width: 4px;
            height: 8px;
            background-image: url("../img/arrow-breadcrumb.svg");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            margin-left: 8px;
        }

.main-70 {
    /* fix */
    padding-top: 54px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .events-list .item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 24px;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        /* fix hover */
        overflow: hidden;
    }

        .events-list .item:hover img {
            transform: scale(1.05);
        }

        .events-list .item:hover .content .title {
            color: var(--red-se);
        }

        .events-list .item img {
            border-radius: 8px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: var(--transition);
        }

    .events-list .content {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .events-list .content .date {
            color: #818895;
            font-family: "Be Vietnam Pro";
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; /* 184.615% */
            display: inline-flex;
            gap: 8px;
            align-items: center;
        }

        .events-list .content .title {
            color: #151c27;
            font-family: "Be Vietnam Pro";
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 25.2px; /* 140% */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: var(--transition);
        }

        .events-list .content .desc {
            color: #5c6274;
            font-family: "Be Vietnam Pro";
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 22.4px; /* 160% */
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .events-list .content .link {
            color: #93000b;
            font-family: "Be Vietnam Pro";
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 19.6px; /* 140% */
            display: flex;
            gap: 4px;
            align-items: center;
        }

            .events-list .content .link::after {
                content: "";
                background-image: url(../img/arrow-red.svg);
                display: inline-block;
                width: 12px;
                height: 12px;
            }

.pagination-page {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

    .pagination-page .item {
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        border: 1px solid #d9d9d9;
        color: #575e70;
        text-align: center;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 150% */
        transition: var(--transition);
    }

        .pagination-page .item i {
            display: flex;
            font-size: 18px;
        }

        .pagination-page .item:hover {
            color: #fff;
            border-radius: 8px;
            background: #93000b;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        .pagination-page .item.active {
            color: #fff;
            border-radius: 8px;
            background: #93000b;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

.detail-article.title {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #fff;
    padding: 48px 0;
}

.details-article-title {
    border-bottom: 1px solid #e4beb9;
    margin-bottom: 40px;
}

.desc-info {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4beb9;
}

    .desc-info .name {
        color: #818895;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px; /* 160% */
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .desc-info .date {
        color: #818895;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px; /* 160% */
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .desc-info .tags {
        color: #93000b;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px; /* 160% */
        display: flex;
        gap: 8px;
        align-items: center;
    }

.action-bottom {
    display: flex;
    padding-top: 32px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-top: 1px solid #e4beb9;
}

    .action-bottom > .label {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 140% */
    }

    .action-bottom .action-wrap {
        display: flex;
        gap: 12px;
        align-items: center;
    }

        .action-bottom .action-wrap a {
            display: flex;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
            border-radius: 9999px;
            background: #e7eefe;
        }

.main-grid.order-change {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.right-col .sidebar:not(:first-child) {
    margin-top: 24px;
}

.sidebar .title.has-border {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4beb9;
}

.sidemenu-news {
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 0 24px;
}

    .sidemenu-news .item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 16px;
        align-items:  flex-start;
    }

        .sidemenu-news .item img {
            border-radius: 8px;
            width: 100%;
            object-fit: cover;
        }

        .sidemenu-news .item .content .title {
            color: #151c27;
            font-family: "Be Vietnam Pro";
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: 18.75px; /* 125% */
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            word-break: break-word;
            overflow: hidden;
        }

        .sidemenu-news .item .content .date {
            color: #818895;
            font-family: "Be Vietnam Pro";
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px; /* 184.615% */
            display: flex;
            gap: 8px;
            align-items: center;
            margin-top: 4px;
        }

    .sidemenu-news .see-more-btn {
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #93000b;
        color: #93000b;
        margin-top: 8px;
    }

        .sidemenu-news .see-more-btn::after {
            content: "";
            background-image: url(../img/arrow-red.svg);
            display: inline-block;
            width: 12px;
            height: 12px;
        }

        .sidemenu-news .see-more-btn:hover::after {
            content: "";
            background-image: url(../img/arrow-red-hover.svg);
            display: inline-block;
            width: 12px;
            height: 12px;
        }

        .sidemenu-news .see-more-btn:hover {
            color: #fff;
        }

.programs-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

    .programs-layout .item {
        border-radius: 12px;
        border: 1px solid #dce2f3;
        background: #fff;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

        .programs-layout .item img {
            width: 100%;
            max-height: 192px;
            object-fit: cover;
        }

        .programs-layout .item .content {
            padding: 24px;
            display: flex;
            gap: 16px;
            flex-direction: column;
        }

        .programs-layout .item .title {
            color: #151c27;
            font-family: "Be Vietnam Pro";
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 25.2px; /* 140% */
            padding-right: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .programs-layout .item .desc-small {
            color: #575e70;
            font-family: "Be Vietnam Pro";
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: 19.5px; /* 150% */
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .programs-layout .item .link {
            color: #93000b;
            font-family: "Be Vietnam Pro";
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 19.6px; /* 140% */
            display: flex;
            gap: 4px;
            align-items: center;
        }

            .programs-layout .item .link::after {
                content: "";
                background-image: url(../img/arrow-red.svg);
                display: inline-block;
                width: 12px;
                height: 12px;
            }

.article .title-sm {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    margin-bottom: 30px;
}

.title-bold {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.member-page .title-member {
    color: #a62823;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 116.667% */
    margin-top: 30px;
}

.member-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 25px;
}

    .member-layout .item {
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

        .member-layout .item img {
            width: 100%;
            max-height: 300px;
            object-fit: cover;
        }

        .member-layout .item .content {
            background: #f6f6f6;
            padding: 24px;
            display: flex;
            gap: 8px;
            flex-direction: column;
            flex: 1;
        }

        .member-layout .item .name {
            color: #151c27;
            font-family: "Be Vietnam Pro";
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 33px; /* 165% */
        }

        .member-layout .item .desc {
            color: #5c6274;
            font-family: "Be Vietnam Pro";
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px; /* 150% */
            text-transform: uppercase;
        }

        .member-layout .item .tags {
            color: #8f6f6c;
            font-family: "Be Vietnam Pro";
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 21px;
            /* margin-top: auto; mở nếu muốn fix cho thẻ này ở bottom */
        }

.main-grid.main-grid-member {
    grid-template-columns: 400px minmax(0, 1fr);
}

.member-avatar {
    align-self: start;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

    .member-avatar img {
        object-fit: cover;
    }

    .member-avatar .content {
        display: flex;
        padding: 32px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        align-self: stretch;
    }

        .member-avatar .content .item {
            display: flex;
            gap: 16px;
            align-items: center;
        }

    .member-avatar .item .ic {
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background: #93000b;
    }

    .member-avatar .item .member-info .title {
        color: #575e70;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 150% */
    }

    .member-avatar .item .member-info .member-info-text {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 22.4px; /* 160% */
    }

    .member-avatar .content .link {
        display: flex;
        padding: 13px;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        gap: 12px;
        border-radius: 8px;
        border: 1px solid #93000b;
        color: #93000b;
        text-align: center;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 19.6px; /* 140% */
        margin-top: 8px;
    }

.profile-item {
    display: flex;
    padding: 32px 26px;
    flex-direction: column;
    gap: 7px;
    align-self: stretch;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

    .profile-item .name {
        color: #93000b;
        font-family: "Be Vietnam Pro";
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 43.2px; /* 144% */
        letter-spacing: -0.72px;
    }

    .profile-item .desc {
        color: #575e70;
        font-family: "Be Vietnam Pro";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 31.2px; /* 156% */
    }

.info-cards-group {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
}

.info-cards__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #f9f9ff;
}

    .info-cards__item .label {
        color: #575e70;
        font-family: "Be Vietnam Pro";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 162.5% */
        text-transform: uppercase;
        margin-top: 8px;
    }

    .info-cards__item .text-content {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: 22.4px; /* 149.333% */
    }

.profile-paragraph {
    color: #575e70;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px; /* 151.667% */
}

.mb-paragraph {
    margin-bottom: 20px;
}

.profile-item .section-heading {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.2px; /* 130% */
    display: flex;
    gap: 12px;
}

.profile-item .section-heading-sm {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.2px; /* 140% */
    margin-bottom: 12px;
}

.profile-item .section-heading::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: auto;
    border-radius: 9999px;
    background-color: #93000b;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 2px solid #e4beb9;
}

.timeline__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 32px;
    position: relative;
}

.timeline .timeline__marker {
    color: #93000b;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.5px; /* 150% */
}

.timeline__item::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #93000b;
    border-radius: 9999px;
    border: 4px solid #fff;
    padding-left: -32px;
    position: absolute;
    left: -9px;
}

.timeline .timeline__title {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.2px; /* 140% */
}

.timeline .timeline__desc {
    color: #575e70;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px; /* 160% */
}

.timeline .timeline__desc-sm {
    color: #c0c6db;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
    line-height: 19.5px; /* 150% */
}

.publication__list {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.publication__item {
    padding-bottom: 16px;
    border-bottom: 1px solid #e4beb9;
}

    .publication__item .title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 22.4px; /* 160% */
    }

    .publication__item .desc {
        color: #575e70;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 150% */
        margin-top: 4px;
    }

.award__list,
.news__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.award__item,
.news__item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e4beb9;
    background: #f9f9ff;
}

    .award__item .content .title,
    .news__item .content .title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 22.4px; /* 160% */
    }

    .award__item .content .desc,
    .news__item .content .desc {
        color: #575e70;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.5px; /* 150% */
    }

.profile-item:not(:last-child) {
    margin-bottom: 24px;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e4beb9;
}

    .gallery-tabs .nav-item .nav-link {
        display: flex;
        padding: 8px 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 9999px;
        background: #e2e8f8;
        color: #575e70;
        text-align: center;
        font-family: "Be Vietnam Pro";
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 19.5px; /* 150% */
        white-space: nowrap;
    }

        .gallery-tabs .nav-item .nav-link.active {
            background: #93000b;
            color: #fff;
        }

.gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}

    .gallery-list .item {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

        .gallery-list .item img {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-list .item::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: block;
            width: 28px;
            height: 28px;
            background-image: url("../img/zoom.svg");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            z-index: 2;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }

        .gallery-list .item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            background: rgba(0, 0, 0, 0.4);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }

        .gallery-list .item:hover::before,
        .gallery-list .item:hover::after {
            opacity: 1;
        }

.contact {
    background: #f9f9ff;
}

.main-grid__contact {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
}

.contact__title {
    color: #93000b;
    font-family: "Be Vietnam Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 43.2px; /* 144% */
    letter-spacing: -0.72px;
}

.contact__desc {
    color: #5c6274;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px; /* 151.667% */
    margin-top: 8px;
}

.contact__list {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 32px;
}

    .contact__list .item {
        display: flex;
        padding: 26px 24px;
        gap: 16px;
        border-radius: 12px;
        border: 1px solid #e7eefe;
        background: #fff;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    }

    .contact__list .content .title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 140% */
    }

    .contact__list .content .content-text {
        color: #5c6274;
        font-family: "Be Vietnam Pro";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px; /* 160% */
        margin-top: 4px;
    }

    .contact__list .item .ic {
        display: flex;
        width: 48px;
        height: 48px;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background: #93000b;
        flex-shrink: 0;
    }

.contact__form {
    display: flex;
    padding: 26px 32px 32px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #e7eefe;
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

    .contact__form .title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 31.2px; /* 130% */
    }

form.contact-form {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
}

.form-fluid-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-field {
    flex: 1 1 280px;
}

.form-field__captcha {
    max-width: 250px;
}

.contact-form .form__label {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.5px; /* 150% */
    display: block;
    margin-bottom: 8px;
}

.contact-form .form__input {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e4beb9;
    background: #f9f9ff;
    width: 100%;
    color: #6b7280;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: var(--transition);
}

    .contact-form .form__input:hover,
    .contact-form .form__input:focus {
        border-color: #93000b;
        outline: none;
    }

.form__input::placeholder {
    color: #6b7280;
    font-family: "Be Vietnam Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-btn {
    display: flex;
    padding: 16px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: #93000b;
    color: #fff;
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.2px; /* 140% */
    border: none;
}

.map-wrap {
    margin-top: 90px;
}
/* Trạng thái bình thường giữ nguyên như cũ */
.faculty-card {
    position: relative;
    height: 515px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

    .faculty-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
        transition: background 0.6s ease;
        z-index: 1;
    }

.faculty-card__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
}

.faculty-card__header {
    margin-top: auto;
}

.faculty-card__body {
    display: flex;
    gap: 16px;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    flex-grow: 1;
    margin-top: 16px;
    pointer-events: none;
}

.faculty-card__btn {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: pointer;
}

    .faculty-card__btn .btn-icon::before {
        content: "+";
        font-size: 1.2rem;
    }

.faculty-title {
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 116.667% */
    margin-top: 16px;
}

ul.faculty-list {
    padding-left: 0;
    margin-bottom: 0;
}

ul.faculty-submenu {
    padding-left: 20px;
}

    ul.faculty-submenu li a {
        color: #ededed;
        font-family: "Be Vietnam Pro";
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px; /* 133.333% */
    }

    ul.faculty-submenu li {
        position: relative;
    }

        ul.faculty-submenu li:not(:first-child) {
            margin-top: 10px;
        }

        ul.faculty-submenu li::before {
            content: "";
            position: absolute;
            left: -16px;
            top: 8px;
            width: 6px;
            height: 6px;
            background-color: #ffffff;
            border-radius: 50%;
        }

.faculty-list-heading {
    color: #fff;
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    margin-bottom: 12px;
}

    .faculty-list-heading::before {
        content: "";
        width: 12px;
        height: 12px;
        display: inline-block;
        background-image: url("../img/faculty-list-check.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin-right: 8px;
    }

.faculty-icon::before {
    content: "";
    width: 32px;
    height: 32px;
    display: block;
    background-image: url("../img/graduation.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Tùy chỉnh slick slide */

/* show / hide  */
.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

    .accordion-header .toggle-icon {
        transition: transform 0.4s ease;
        font-size: 16px;
        color: var(--red);
    }

.accordion-section.is-open .accordion-header .toggle-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.accordion-section.is-open .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-header span {
    font-family: var(--bold);
    font-size: 16px;
    color: var(--text-main);
    text-transform: uppercase;
    position: relative;
}

.accordion-inner {
    min-height: 0;
}

.inner-padding {
    margin-top: 24px;
}

.timeline-accordion .inner-padding {
    padding-left: 3px;
}

.sidemenu-has-order {
    position: sticky;
    top: 130px;
    z-index: 9;
}

.menu-mobile-copyright {
    color: rgba(21, 28, 39, 0.5);
    text-align: center;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 138.462% */
    letter-spacing: 0.26px;
    display: none;
}

.article__file {
    margin-top: 16px;
}

    .article__file > p {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-weight: 600;
        line-height: normal;
    }

.file__grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.file__item {
    border-radius: 8px;
    border: 1px solid #ededed;
    background: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.file__ic {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
}

    .file__ic i {
        display: inline-flex;
        padding: 8px;
        border-radius: 6px;
        background: rgba(169, 22, 28, 0.06);
        color: #a62823;
    }

.file__name {
    color: #a1a1a1 !important;
    font-family: "Be Vietnam Pro";
    font-size: 14px !important;
    line-height: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.text-mute {
    color: #868687;
}

.line-grey {
    margin-top: 16px;
    margin-bottom: 16px;
    border-color: #e4beb9;
    opacity: 1;
}

.alert {
    width: 100%;
}

.search-article {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 48px;
}

    .search-article .titl_cat {
        font-family: "Be Vietnam Pro";
        font-size: 34px;
        font-style: normal;
        font-weight: 700;
        line-height: 43.2px;
        letter-spacing: -0.72px;
        margin-bottom: 12px;
    }
.main-content.programs-page > .title,
.main-content.member-page > .title {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 43.2px; /* 144% */
    letter-spacing: -0.72px;
}