.team-member-widget-d3a08694 {
    position: relative;
    overflow: hidden;
    --tm-overlay-bg: rgba(0,0,0,0.75);
    --tm-name-color: #ffffff;
    --tm-title-color: #dddddd;
    --tm-desc-color: #ffffff;
}

.team-member-widget-d3a08694 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.team-member-widget-d3a08694:hover img {
    transform: scale(1.05);
}

.team-member-overlay-d3a08694 {
    position: absolute;
    inset: 0;
    background-color: var(--tm-overlay-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team-member-widget-d3a08694:hover .team-member-overlay-d3a08694 {
    opacity: 1;
}

.team-member-name-d3a08694 {
    color: var(--tm-name-color);
    margin: 0 0 5px;
}

.team-member-title-d3a08694 {
    color: var(--tm-title-color);
    margin: 0 0 15px;
}

.team-member-desc-d3a08694 {
    color: var(--tm-desc-color);
    margin: 0;
}

.team-member-desc-d3a08694 p:last-child {
    margin-bottom: 0;
}
