.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h5 {
    max-width: 250px;
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
}

.team-member h6 {
    max-width: 220px;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin-top: 5px;
}

.team-photo-wrapper {
	width: 100%;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.team-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-image: var(--bg-image, none);
}

.team-photo-wrapper:hover::before {
    opacity: 1;
}

