.team-content{
    background: linear-gradient(0deg, #426181, #426181);
    padding: 24px 20px;
    color: var(--white-color);
}

.team-content .card-title{
    font-family: var(--figtree-font);
    font-size: var(--font-24);
    font-weight: 500;
    padding-bottom: 8px;
    line-height: 120%;
    transition: 0.3s ease all;
}

.team-content .team-designation{
    margin-bottom: 0;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 140%;
} 

.team-section .card-row,
.team-section .employee-row{
    row-gap: 60px;
}

.team-section .card-row{
    position: relative;
}

.team-section .card-row::before{
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white-color);
    clip-path: polygon(0 0%, /* LEFT â€“ top (higher = taller end) */ 
    49.8% 2%, /* CENTER â€“ thin point */ 
    100% 0%, /* RIGHT â€“ top */
    100% 64%, /* RIGHT â€“ bottom */ 
    50% 3%, /* CENTER â€“ thin point */ 
    0 64% /* LEFT â€“ bottom */);
    transform-origin: center;
    z-index: 2;
}

.team-section .col-lg-4{
    padding-left: 30px;
    padding-right: 30px;
}

.team-section .team-icon{
    position: absolute;
    right: -20px;
    top: -9px;
}

.team-section .view-bio a{
    text-decoration: none;
    color: var(--white-color);
    transition: 0.3s ease all;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: var(--font-18);
}

.team-section .stretched-link:hover ~ .team-content .view-bio a{
    transition: 0.3s ease all; 
    color: #bbc6d2;   
}

.team-section .stretched-link:hover ~ .team-content .card-title{
    transition: 0.3s ease all; 
    color: #bbc6d2;  
}

.team-section .team-image img{
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
}

@media screen and (max-width: 1440px){
    .team-section .card-row,
    .team-section .employee-row{
        row-gap: 30px;
    }


    .team-section .col-lg-4{
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 767px){
    .team-section .card-row,
    .team-section .employee-row{
        row-gap: 20px;
    }
    .team-section .col-lg-4{
        padding-left: 0px;
        padding-right: 0px;
    }
}