.mentor-selection {}
.mentor-list-wrap {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
    row-gap: 30px;
}
.list_view.mentor-list-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mentor-item {}
.list_view .mentor-item {
    display: flex;
    gap: 15px;
}
.mentor_img {
    margin-bottom: 15px;
}
.list_view .mentor_img {
    margin-bottom:0px;
    flex: 0 0 200px;
}
.mentor_img img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
}
.mentor-info {}
.mentor-info h3 {
    font-size: 18px;
}
.mentor-info .role-company {}
.list_view .mentor-info .role-company br { display: none;}
.mentor-info .mentor-desc {
    margin-top: 10px;
}
@media screen and (max-width: 1200px) {
    .mentor-list-wrap {        
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}
@media screen and (max-width: 920px) {
    .mentor-list-wrap {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .list_view.mentor-list-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 767px) { 
    .mentor-list-wrap {        
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
}
@media screen and (max-width: 560px) { 
    .mentor-list-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .list_view .mentor-item {
        flex-direction: column;
    }
}