.team-card-wrapper-d1b95765 {
    text-align: center;
    background: transparent;
    padding-bottom: 20px;
}
.team-card-image-wrap {
    position: relative;
    margin-bottom: 30px;
    background: #e6f0fa; /* soft blue background if image is transparent or padding exists */
    border-radius: 4px;
    overflow: hidden;
}
.team-card-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.team-card-socials {
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    background-color: #2b55f5; /* vibrant blue matching the screenshot */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    gap: 15px;
}
.team-card-socials a {
    color: #ffffff;
    font-size: 16px;
    transition: opacity 0.3s ease;
}
.team-card-socials a:hover {
    opacity: 0.8;
}
.team-card-info {
    padding: 0 10px;
}
.team-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px;
    text-transform: uppercase;
    font-family: sans-serif;
}
.team-card-title {
    font-size: 15px;
    color: #2b55f5; /* matching title color */
    margin: 0;
    font-family: sans-serif;
}
