/* =======================================================
   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;
    max-width: 220px;
}

/*Menu ngang Desktop*/
.nav-menu__desktop {
    height: 100%;
}

.nav-list {
    display: flex;
    gap: 20px;
    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;
    margin-bottom: 50px;
}

.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);
        max-width: 100%;
    }

    .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;
    margin-bottom: 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 .see-more {
        display: flex;
        padding: 10px 24px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-family: var(--font);
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        letter-spacing: 0.26px;
        border-radius: 8px;
        border: 1px solid rgba(131, 131, 131, 0.2);
        color: #333;
        text-align: center;
        transition: var(--transition);
    }
        .facilities .see-more:hover {
            color: #fff;
            border-radius: 8px;
            border: 1px solid #a62823;
            background: #a62823;
        }

            .facilities .see-more:hover::after {
                content: "";
                width: 14px;
                height: 14px;
                display: inline-block;
                background-image: url("../img/arrow-white.svg");
            }

        .facilities .see-more::after {
            content: "";
            width: 14px;
            height: 14px;
            display: inline-block;
            background-image: url("../img/btn-arrow.svg");
            transition: var(--transition);
        }

.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;
    overflow-y: hidden;
}

.faculty-card__body-content {
    max-height: 290px;
    overflow-y: auto;
    padding-right: 12px;
    padding-bottom: 2px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

    .faculty-card__body-content::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    /* bg của thanh cuộn */
    .faculty-card__body-content::-webkit-scrollbar-track {
        background: #ececec9d;
        border-radius: 10px;
    }

    .faculty-card__body-content::-webkit-scrollbar-thumb {
        background: #dadada;
        border-radius: 10px;
    }

    .faculty-card__body-content::-webkit-scrollbar-button {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .faculty-card__body-content::-webkit-scrollbar-thumb:hover {
        background: #dadada;
    }

.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: #151c27 !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: #151c27;
}

.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;
}
/*glightbox*/
/* Container chính */
.ginner-container.desc-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 95vh;
    gap: 15px;
}

/* Phần ảnh */
.gslide-media {
    flex: 0 1 auto !important;
    max-width: 90vw;
    max-height: calc(95vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ảnh */
.gslide-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw !important;
    max-height: calc(95vh - 120px) !important;
    object-fit: contain;
}

/* Description */
.gslide-description {
    position: static !important;
    flex: 0 0 auto !important;
    width: auto;
    max-width: 90vw;
    max-height: none !important;
    margin: 0 !important;
    overflow: visible !important;
}

/* Box description */
.gdesc-inner {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,.95);
    color: #222;
    border-radius: 8px;
    text-align: center;
}

/*trang danh sách tin tức */
/* Tùy chỉnh tiêu đề danh mục */
.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #93000b; /* Màu đỏ truyền thống của trường học */
    padding-bottom: 8px;
    margin-bottom: 1rem;
}

    .category-title a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s;
    }

        .category-title a:hover {
            color: #93000b;
        }

/* Style cho tin bài nổi bật (Tin số 1) */
.news-column .date {
    color: #818895;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.news-column .news-featured {
    margin-bottom: 15px;
}
/* Bắt buộc phải có overflow: hidden để ảnh scale không tràn ra khỏi góc bo */
.news-column.news-thumb-wrapper {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

    .news-column .news-thumb-wrapper img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: var(--transition);
    }

    .news-column .news-thumb-wrapper:hover img {
        transform: scale(1.05); /* Phóng to ảnh 1.05 lần khi hover */
    }

.news-column .news-featured-title {
    color: #151c27;
    font-family: "Be Vietnam Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.2px;
    overflow: hidden;
    transition: var(--transition);
    padding: 1rem 0;
}

    /*.news-column .news-featured-title a {
        text-decoration: none;
        color: #212529;
        transition: color 0.2s;
    }*/

    .news-column .news-featured-title:hover {
        color: var(--red-se);
    }



/* Style cho các tin bài tiếp theo dạng List (Tin 2-5) */
.news-column .news-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .news-column .news-list li {
        padding: 8px 0;
        border-bottom: 1px dashed #dee2e6;
        display: flex;
        align-items: flex-start;
    }

        .news-column .news-list li:last-child {
            border-bottom: none;
        }
        /* Tạo icon mũi tên nhỏ trước mỗi tin list */
        .news-column .news-list li::before {
            content: "»";
            color: #93000b;
            margin-right: 8px;
            font-weight: bold;
        }

        .news-column .news-list li a {
            text-decoration: none;
            color: #212529;
            font-size: 1rem;
            line-height: 1.4;
            transition: color 0.2s;
        }

            .news-column .news-list li a:hover {
                color: var(--red-se);
            }
/* Bọc toàn bộ slider */
.top-news .custom-news-slider {
    overflow: hidden;
}

.top-news .main-display {
    border-bottom: 3px solid #93000b; /* Đường viền đỏ phân cách */
}

    .top-news .main-display .badge {
        background-color: #93000b;
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .top-news .main-display #main-title {
        color: #151c27;
        font-family: "Be Vietnam Pro";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.2px; /* 140% */
    }

    .top-news .main-display:hover #main-title {
        color: #93000b;
    }
/* Style cho phần 5 item bên dưới */
.top-news .thumb-list {
    display: flex;
    width: 100%;
    background: #333;
}

    .top-news .thumb-list a {
        display: flex;
        text-decoration: none;
    }

.top-news .thumb-item {
    flex: 1 1 20%; /* Ép chia đều 5 phần (100% / 5 = 20%) */
    max-width: 20%; /* Đảm bảo không bị thụt vào hay phình to */
    position: relative;
    cursor: pointer;
    /*height: 120px;*/
    aspect-ratio: 650/401;
    overflow: hidden;
    border-right: 1px solid #555;
}

    .top-news .thumb-item:last-child {
        border-right: none;
    }

    .top-news .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
        transition: all 0.3s ease;
    }

/* Overlay chứa tiêu đề nhỏ */
.top-news .thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.top-news .thumb-title {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hiệu ứng khi Hover hoặc Active */
.top-news .thumb-item:hover img,
.top-news .thumb-item.active img {
    opacity: 1;
    transform: scale(1.1);
}

.top-news .thumb-item.active {
    border-bottom: 4px solid #93000b;
}

    .top-news .thumb-item.active .thumb-overlay {
        background: rgba(183, 26, 33, 0.9);
    }

/* Animation fade in */
.top-news .fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

.top-news #main-date {
    color: #818895;
    font-family: "Be Vietnam Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding-top: 8px;
}
/* Keyframes thì giữ nguyên, không cần thêm prefix */
@keyframes fadeIn {
    from {
        opacity: 0.8;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* === GIAO DIỆN CHẤM TRÒN (DOTS) === */
.top-news .mobile-dots {
    gap: 8px;
}

.top-news .dot-item {
    width: 10px;
    height: 10px;
    background-color: #d6d6d6;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .top-news .dot-item.active {
        background-color: #8fa096; /* Màu xám xanh giống trong ảnh mẫu */
    }

/* === TÙY CHỈNH DÀNH RIÊNG CHO MOBILE (Dưới 768px) === */
@media (max-width: 767.98px) {
    /* Bỏ border đỏ phân cách nếu muốn đơn giản giống hình */
    .top-news .main-display {
        border-bottom: none;
    }

    /* Bỏ padding 2 bên, điều chỉnh padding trên dưới */
    .top-news .main-content {
        padding: 15px 0 !important;
    }

    /* Ẩn badge chuyên mục và gạch ngang (Dựa theo ảnh mẫu) */
    .top-news .category-wrapper,
    .top-news .custom-hr {
        display: none !important;
    }

    /* Chữ trên mobile nhỏ hơn một chút để đỡ chiếm chỗ */
    .top-news #main-title {
        font-size: 1.15rem !important;
        color: #333 !important; /* Đổi màu chữ thành xám đen theo hình */
    }

    .top-news #main-desc {
        font-size: 0.9rem !important;
        color: #666 !important;
    }

    /* Chiều cao ảnh trên mobile nên hạ xuống để không bị quá dài */
    .top-news #main-image {
        height: 250px !important;
    }
}
.profile-item-col {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 24px;
    margin-bottom: 16px;
}

    .profile-item-col .name {
        color: #93000b;
        font-family: "Be Vietnam Pro";
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: 43.2px; /* 144% */
        letter-spacing: -0.72px;
    }

    .profile-item-col .desc {
        color: #575e70;
        font-family: "Be Vietnam Pro";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 31.2px; /* 156% */
    }



/* ============================================= */
/* 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 .slick-track {
    display: flex;
}

.program__slick {
    margin-top: 20px;
}

    .program__slick .slick-slide {
        margin: 0 12px;
    }

    .program__slick .slick-list {
        margin: 0 -12px;
    }

    .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 {
    padding: 24px;
    display: flex;
    gap: 14px;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: #fff;
    transition: var(--transition);
    height: stretch;
}

    .program__slick .item:hover {
        border-color: var(--red-se);
    }

        .program__slick .item:hover .title {
            color: var(--red-se);
        }

    .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;
        }

.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;
        display: flex;
        flex-direction: column;
    }

        .programs-layout .item img {
            width: 100%;
            aspect-ratio: 297 / 192;
            object-fit: cover;
        }

        .programs-layout .item .content {
            padding: 24px;
            display: flex;
            gap: 16px;
            flex-direction: column;
            flex: 1;
        }

        .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;
        }

        .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;
            margin-top: auto;
        }

            .programs-layout .item .link::after {
                content: "";
                background-image: url(../img/arrow-red.svg);
                display: inline-block;
                width: 12px;
                height: 12px;
            }

/* ================================
   PARTNERS PAGE
================================ */

.partners-section {
    padding: 20px 0 70px;
}


/* Header */

.partners-header {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.partners-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #b28a3c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.partners-title {
    margin: 0 0 15px;
    color: #17365d;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
}

.partners-description {
    max-width: 680px;
    margin: auto;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* ================================
   PARTNER GRID
================================ */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* ================================
   PARTNER CARD
================================ */

.partner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .partner-card:hover {
        transform: translateY(-6px);
        border-color: #d9e2ec;
        box-shadow: 0 15px 35px rgba(20, 50, 80, .12);
    }


/* ================================
   LOGO
================================ */

.partner-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 185px;
    padding: 30px;
    background: #fafbfd;
}

    .partner-logo::after {
        content: "";
        position: absolute;
        left: 20%;
        right: 20%;
        bottom: 0;
        height: 1px;
        background: #edf0f4;
    }

    .partner-logo img {
        width: 140px;
        height: 120px;
        object-fit: contain;
        transition: transform .3s ease;
    }

.partner-card:hover .partner-logo img {
    transform: scale(1.07);
}


/* ================================
   INFORMATION
================================ */

.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
}

    .partner-info h3 {
        margin: 0;
        color: #17365d;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.45;
        transition: color .3s ease;
    }

.partner-card:hover .partner-info h3 {
    color: #b28a3c;
}


/* ================================
   LINK
================================ */

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: #999;
    font-size: 13px;
    transition: all .3s ease;
}

    .partner-link i {
        font-size: 11px;
        transition: transform .3s ease;
    }

.partner-card:hover .partner-link {
    color: #17365d;
}

    .partner-card:hover .partner-link i {
        transform: translateX(4px);
    }


/* ================================
   TABLET
================================ */

@media (max-width: 1199px) {

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================================
   TABLET SMALL
================================ */

@media (max-width: 991px) {

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-title {
        font-size: 30px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 575px) {

    .partners-section {
        padding-bottom: 45px;
    }

    .partners-header {
        margin-bottom: 30px;
    }

    .partners-title {
        font-size: 25px;
    }

    .partners-description {
        font-size: 14px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-card {
        min-height: 220px;
    }

    .partner-logo {
        height: 150px;
    }

        .partner-logo img {
            width: 120px;
            height: 100px;
        }

    .partner-info {
        padding: 15px 18px;
    }

        .partner-info h3 {
            font-size: 16px;
        }
}

