/* ===== Highlight grid / cards (áº¢nh 1) ===== */
.msb-highlight {
    padding: 56px 0 0 0;
}

.msb-highlight__title {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 600;
    color: #091e42;
}

.msb-highlight__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-height: 280px;
}

.msb-highlight__placeholder {
    padding: 12px;
    border: 1px dashed rgba(0, 0, 0, .25);
    border-radius: 14px;
    background: #fff;
    color: rgba(0, 0, 0, .65);
    font-size: 14px;
}

.msb-highlight-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 24px;
    box-shadow: 0px 0px 4px 0px #1D293926;
    backdrop-filter: blur(24px);
    border: 1px solid #FFFFFF;
}

.msb-highlight-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0) 50%);
}

.msb-highlight-card__content {
    z-index: 3;
    background: transparent !important;
    padding: 0 !important;
}

.msb-highlight-card__title {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.25;
    color: #091E42;
}

.msb-highlight-card__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(3, 3, 3, 0.92);
}

.msb-highlight-card__arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    display: grid;
    place-items: center;
    transition: .4s all;
}

.msb-highlight-card:hover .msb-highlight-card__arrow {
    transform: translateX(10px);
}

.msb-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.msb-modal.is-open {
    display: block;
}

.msb-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.msb-modal__dialog {
    position: relative;
    margin: 60px auto;
    width: 600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.msb-modal__close {
    transition: .4s all;
    position: absolute;
    top: 8px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: unset;
    margin: 0;
}

.msb-modal__close:hover {
    transform: rotate(90deg) !important;
}

.msb-modal__header {
    padding: 16px 16px 16px 16px;
}

.msb-modal__title {
    margin: 0;
    font-size: 18px;
    color: #091E42;
}

.msb-modal__media {
    padding: 0 12px 12px;
}

.msb-modal__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.msb-modal__body {
    padding: 0 18px 14px;
    font-size: 14px;
    color: rgba(0, 0, 0, .82);
}

.msb-modal__body p {
    margin: 0 0 10px;
}

.msb-modal__body ul {
    margin: 0;
    padding-left: 18px;
}

.msb-modal__body li {
    margin: 6px 0;
}

.msb-modal__footer {
    padding: 10px 18px 18px;
    display: flex;
    justify-content: center;
}

.msb-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #F4600C;
    text-decoration: none;
    background: #fff;
    cursor: pointer;
    color: #F4600C;
    transition: .4s all;
}

.msb-modal__cta:hover{
    background: #FEEFE7;
    color: #F4600C;
}
/* ===== Hover effect: border + zoom image ===== */

/* Chuáº©n bá»‹ layer Ä‘á»ƒ zoom background */
.msb-highlight-card {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* DÃ¹ng pseudo-element Ä‘á»ƒ táº¡o viá»n (khÃ´ng lÃ m layout giáº­t) */
.msb-highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    /* border: 2px solid transparent; */
    pointer-events: none;
    transition: border-color 0.25s ease;
}

/* Zoom áº£nh báº±ng scale + giá»¯ overlay */
.msb-highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.35s ease;
    z-index: 0;
}

/* Äáº£m báº£o overlay & content náº±m trÃªn áº£nh zoom */
.msb-highlight-card__overlay,
.msb-highlight-card__content{
    position: relative;
    z-index: 2;
}

/* Hover / Focus */
.msb-highlight-card:hover::after,
.msb-highlight-card:focus-visible::after {
    border-color: #ff7a00; /* mÃ u cam viá»n nhÆ° UI */
}

.msb-highlight-card:hover::before,
.msb-highlight-card:focus-visible::before {
    transform: scale(1.06); /* zoom nháº¹ */
}

/* Hover nÃ¢ng card nháº¹ */
.msb-highlight-card:hover,
.msb-highlight-card:focus-visible {
    /* box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18); */
}

/* Focus accessibility (keyboard) */
.msb-highlight-card:focus-visible {
    outline: none;
}
/* ===== Text white backdrop (theo UI) ===== */

/* Ná»™i dung text cÃ³ ná»n tráº¯ng má» */
.msb-highlight-card__content {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    padding: 12px 14px;
    border-radius: 14px;
    position: relative;
    z-index: 3;
}

/* Overlay váº«n giá»¯ cho toÃ n card */
.msb-highlight-card__overlay {
    z-index: 1;
}

/* áº¢nh zoom náº±m tháº¥p nháº¥t */
.msb-highlight-card::before {
    z-index: 0;
}

/* Backdrop: MSB neutral (hÆ¡i ngáº£ xÃ¡m), phá»§ lá»›n, fade má»m */
.msb-highlight-card__content::before{
    content:"";
    position:absolute;
    inset: -58px -62px;
    min-height: 96px;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events:none;
    z-index: 0;
}

/* Text náº±m trÃªn backdrop */
.msb-highlight-card__title,
.msb-highlight-card__desc{
    position: relative;
    z-index: 1;
}

.msb-highlight-card__title{
    margin: 0 0 6px;
}
.msb-highlight-card__subtitle {
    color: #091E42;
}

.msb-highlight-card__desc{
    margin: 0;
    padding: 0 12px 10px;
}

/* Zoom background layer */
.msb-highlight-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.35s ease;
    z-index: 0;
}

/* Card overlay stays above image, below content */
.msb-highlight-card__overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.msb-highlight-card:hover:{
    border-color: #ff7a00;
}

.msb-highlight-card:hover::before,
.msb-highlight-card:focus-visible::before{
    transform: scale(1.1);
}

.msb-highlight-card:focus-visible{
    outline: none;
}

/* Responsive */
@media (max-width: 849px) {
    .msb-highlight__grid {
        grid-template-columns: 1fr;
    }

    .msb-highlight-card {
        min-height: 200px;
    }

    .msb-modal__dialog {
        margin: 40px auto;
    }
}
