.bg_image_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leader_info_card .left_card img{
    max-width: 100%;
    width: 100%;
    height: 310px;
}
.leader_info_card .leader_container{
    display: grid;
    grid-template-columns: 30% auto;
    gap: 40px;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 16px 0 #00000040;
}
.leader_info_card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 60px;
}
.left_card img{
    max-width: 100%;
    width: 100%;
    height: auto;
}
.left_card p:nth-child(2){
    color: #000000;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin: 15px 0 10px 0;
}
.left_card p:nth-child(3){
    text-align: center;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}
.left_card p:nth-child(4){
    text-align: center;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}
.left_card .wisdom_link{
    color: #4D3275;
    font-size: 18px;
    font-weight: 400;
}
.left_card .uws_link{
    color: #025B8C;
    font-size: 18px;
    font-weight: 400;
}
.leader_info_card .social_links{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.leader_info_card .social_links img{
    max-width: 100%;
    width: 45px;
    height: 45px;
}
.leader_info_card .social_links button{
    border: 1px solid #1878BC;
    background: transparent;
    padding: 10px 28px;
    border-radius: 10px;
    color: #1878BC;
    font-weight: 900;
    font-size: 18px;
}
.right_card_content p{
    color: #333333;
    font-weight: 400;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .leader_info_card .leader_container {
        display: flex;
        flex-direction: column;
    }
    .leader_info_card{
        padding: var(--global-content-mobile-body-spacing);
    }
    .leader_info_card .left_card img{
        width: 100% !important;
        height: 100% !important;
    }
    .leader_info_card .social_links img{
        width: 40px !important;
        height: 40px !important;
    }
    .left_card p:nth-child(2) {
        font-size: 22px;
    }
}

