.team-member-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 240px;
    cursor: pointer;
    
}
.team-member-panel:hover .team-member-name {
    color: #C69710;
}
.team-member-panel:hover img {
    box-shadow: 4px 4px 6px rgba(0,0,0,0.4);
}
.team-member-img {
    width: 240px;
    height: 240px;
}
.team-member-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5em;
    transition: 0.8s all ease;
}
.team-member-panel-content {
    line-height: 1.1;
    margin: 8px 4px;
}
.team-member-name {
    color: #553C80;
    font-weight: bold;
    font-size: 1.2em;
    word-break: break-word;
    transition: 0.8s all ease;
    margin-top: 5px;
}


.team-member-title {
    font-size: 0.8em;
}