/* ===== Leadership Section (isolated) ===== */
.ls2 {
    --p: #137fec;
    /* --bg:#101922;  */
    --panel: #151c24;
    --panel2: #1c252e;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .60);
    --muted2: rgba(255, 255, 255, .35);
    --border: rgba(255, 255, 255, .06);

    background: var(--bg);
    color: var(--text);
    padding: 64px 16px;
}

.ls2 * {
    box-sizing: border-box
}

.ls2__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 8px
}

.ls2__header {
    margin-bottom: 28px
}

.ls2__kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.ls2__kline {
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: #fff
}

.ls2__ktext {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800
}

.ls2__title {
    margin: 0;
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: 44px;
    line-height: 1.1;
    color: #fff;
}

.ls2__title span {
    color: #4CA1AF;
    font-weight: 800
}

.ls2__grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 28px;
    align-items: stretch;
    min-height: 500px;
}

.ls2__spotlight {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
    min-height: 520px;
}

.ls2__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .7s ease;
    filter: saturate(1.05);
}

.ls2__spotlight:hover .ls2__bg {
    transform: scale(1.05)
}

.ls2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 25, 34, .98) 0%, rgba(16, 25, 34, .45) 55%, rgba(16, 25, 34, .15) 100%);
    opacity: .92;
}

.ls2__badge {
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    font-size: 14px;
    font-weight: 700;
}

.ls2__badgeIcon {
    color: var(--p);
    font-size: 16px;
    line-height: 1
}

.ls2__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 65px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.ls2__contentInner {
    max-width: 640px;
    transition: transform .45s ease
}

.ls2__spotlight:hover .ls2__contentInner {
    transform: translateY(-6px)
}

.ls2__name {
    margin: 0 0 10px 0;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.02em;
    color: #fff;
}

.ls2__role {
    margin: 0 0 10px 0;
    color: #4CA1AF;
    font-size: 16px;
    font-weight: 700;
}

.ls2__divider {
    width: 84px;
    height: 4px;
    border-radius: 999px;
    background: #4CA1AF;
    display: block;
    margin: 10px 0 14px;
}

.ls2__desc {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 300;
    max-width: 680px;
}

.ls2__desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* số dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls2__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    background: #4CA1AF;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    box-shadow: 0 10px 26px rgba(19, 127, 236, .22);
    transition: filter .2s ease, transform .2s ease;
}

.ls2__btn:hover {
    filter: brightness(1.07);
    transform: translateY(-1px)
}

.ls2__btnArrow {
    transition: transform .2s ease
}

.ls2__btn:hover .ls2__btnArrow {
    transform: translateX(4px)
}

.ls2__panel {
    border-radius: 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.ls2__panelHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to bottom, rgba(255, 255, 255, .02), transparent);
}

.ls2__panelTitle {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
}

.ls2__nav {
    display: flex;
    gap: 10px
}

.ls2__navBtn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
    margin-bottom: 0;
}

.ls2__navBtn:hover {
    background: rgba(19, 127, 236, .18)
}

.ls2__navBtn--primary {
    background: #4CA1AF;
    border-color: rgba(19, 127, 236, .35);
    box-shadow: 0 10px 24px rgba(19, 127, 236, .18);
}

.ls2__navBtn--primary:hover {
    background: rgba(19, 127, 236, .9)
}

.ls2__navBtn:active {
    transform: scale(.98)
}

.ls2__list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    scrollbar-width: none;
    max-height: 500px;
}

.ls2__list::-webkit-scrollbar {
    display: none
}

.ls2__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ls2__item:hover {
    background: rgba(255, 255, 255, .04);
    border-color: var(--border);
}

.ls2__item.is-active {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .08);
}

.ls2__avatar {
    width: 56px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
}

.ls2__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1);
    transition: filter .25s ease, transform .35s ease;
}

.ls2__item:hover .ls2__avatar img,
.ls2__item.is-active .ls2__avatar img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.ls2__meta {
    min-width: 0;
    flex: 1
}

.ls2__metaName {
    font-size: 16px;
    font-weight: 800;
    color: rgba(255, 255, 255, .86);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ls2__metaRole {
    font-size: 13px;
    color: rgba(255, 255, 255, .40);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s ease;
}

.ls2__item:hover .ls2__metaRole,
.ls2__item.is-active .ls2__metaRole {
    color: #4CA1AF;
}

.ls2__chev {
    color: rgba(255, 255, 255, .35);
    font-size: 22px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s ease, transform .2s ease;
}

.ls2__item:hover .ls2__chev {
    opacity: 1;
    transform: translateX(0)
}

.ls2__footer {
    margin-top: auto;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    font-weight: 700;
}

.ls2__progress {
    width: 110px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    overflow: hidden;
}

.ls2__progressBar {
    height: 100%;
    width: 20%;
    background: #4CA1AF;
    border-radius: 999px;
}

/* ===== BG fade fix ===== */
.ls2__bg {
    opacity: 1;
    transition: opacity .35s ease, transform .7s ease;
}

.ls2__bg.is-fading {
    opacity: 0;
}

.ls2__bg.is-fading {
    opacity: 0;
    transform: scale(1.02);
}

/* ===== Smooth Image Transition ===== */
.ls2__bg {
    transition:
        opacity .45s ease,
        transform 1s cubic-bezier(.2, .7, .2, 1);
}

.ls2__bg.is-fading {
    opacity: 0;
    transform: scale(1.03);
}

/* ===== Content enter animation ===== */
.ls2__contentInner {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity .4s ease,
        transform .5s cubic-bezier(.2, .7, .2, 1);
}

.ls2__contentInner.is-out {
    opacity: 0;
    transform: translateY(14px);
}

/* Button delay */
.ls2__btn {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity .35s ease .15s,
        transform .35s ease .15s;
}

.ls2__contentInner:not(.is-out)+.ls2__btn {
    opacity: 1;
    transform: translateY(0);
}

.ls2 {
    background-image: url(https://cdn.diemnhangroup.com/noithatdiemnhan/2024/04/PbkxdgBH-Frame-209.jpg);
}


/* Responsive */
@media (max-width: 1024px) {
    .ls2__grid {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .ls2__name {
        font-size: 26px
    }

    .ls2__title {
        font-size: 36px
    }

    .ls2 {
        padding: 40px 2px;
    }

    .ls2__role {
        font-size: 14px;
    }

    .ls2__desc {
        font-size: 14px;
    }

    .ls2__content {
        padding: 25px 30px;
    }
}