.people {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.people>li {
    position: relative;
    margin: 50px 0;
}

.people>li::before {
    content: url('../../images/icon/point_human.svg');
    position: absolute;
    left: 5px;
    top: 51%;
    transform: translateY(-50%);
}

.person {
    position: relative;
    display: flex;
    gap: 28px;
    align-items: center;
}

.person::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translate(-100%, -50%);
    width: 45px;
    height: 2px;
    background: #4851C3;
}

.person .photo {
    width: 280px;
    height: 300px;
    position: relative;
    border-radius: 24px;
    overflow: visible;
    margin-left: 24px;
}

.person .photo::before {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -10px;
    width: 220px;
    height: 160px;
    border-radius: 80px;
    /* background: radial-gradient(120% 100% at 70% 40%, #C8CCFF 0%, #9AA3FF 60%, #6B74FF 100%); */
    opacity: .35;
    z-index: 0;
}

.person .photo img {
    position: relative;
    z-index: 1;
    height: 100%;
    width: auto;
    display: block;
}

.person .meta {
    flex: 1;
    text-align: left;
}

.person .meta .name {
    color: #4F55A1;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
}

.person .meta .position {
    margin-top: 8px;
    color: #4F55A1;
    font-size: 1.6rem;
    /* max-width: 420px; */
    font-weight: 400;
}

.person .meta .tel {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 16px;
    border-radius: 8px;
    background: #4F55A1;
    color: #fff;
    font-weight: 600;
    font-size: 1.6rem;
}

/* .margin-twentyone-left {
    margin-left: 21px;
} */





.org-wrap {
    --rail-x: 56px !important;
    position: relative !important;
    padding-left: 96px !important;
}

.org-wrap::before {
    content: "";
    position: absolute;
    left: var(--rail-x);
    top: 83px;
    bottom: 0;
    width: 2px;
    background: #4851C3;
}

.org-title {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 120px !important;
    padding: 24px 40px !important;
    margin: 24px 0 36px 0 !important;
    background: linear-gradient(270deg, #A3A0DC 0%, #4F49DF 100%) !important;
    color: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(79, 73, 223, .18) !important;
    font-weight: 700 !important;
    letter-spacing: .2px !important;
    font-size: clamp(22px, 2.8vw, 36px) !important;
    position: relative !important;
    text-align: center !important;
    overflow: visible !important;
    word-wrap: break-word !important;
}

.org-title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(-0.7 * var(--rail-x));
    width: calc(var(--rail-x) - 16px);
    height: 2px;
    background: #4851C3;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .org-wrap {
        --rail-x: 40px;
        padding-left: 80px;
    }

    .org-title {
        padding: 20px 32px;
        min-height: 100px;
        margin: 20px 0 32px 0;
        font-size: clamp(20px, 2.5vw, 32px);
    }

    .org-title::after {
        left: -40px;
        width: 40px;
    }

    .org-wrap::before {
        /* top: 70px; */
    }

    .person {
        flex-direction: column;
    }

    .person .photo {
        width: auto;
        height: 278px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .org-wrap {
        --rail-x: 10px !important;
        padding-left: 50px !important;
    }

    .org-title {
        padding: 16px 24px;
        min-height: 80px;
        margin: 16px 0 24px 0;
        border-radius: 12px;
        font-size: clamp(18px, 4vw, 24px);
        box-shadow: 0 4px 16px rgba(79, 73, 223, .15);
    }


    .org-wrap::before {
        /* top: 55px; */
    }
}

/* Small mobile responsive */
@media (max-width: 480px) {

    .org-title {
        padding: 12px 16px;
        min-height: 70px;
        margin: 12px 0 20px 0;
        border-radius: 10px;
        font-size: clamp(16px, 4.5vw, 20px);
        letter-spacing: 0.1px;
    }


    .org-wrap::before {
        /* top: 46px; */
    }


    .person {
        flex-direction: column;
    }
}