.team-section-container-7cb26683 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.team-section-container-7cb26683 .team-member-card {
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #f9f9f9;
}
.team-section-container-7cb26683 .team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.team-section-container-7cb26683 .team-member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.team-section-container-7cb26683 .team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-section-container-7cb26683 .team-member-card:hover .team-member-image img {
    transform: scale(1.1);
}
.team-section-container-7cb26683 .team-member-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    transition: bottom 0.4s ease;
}
.team-section-container-7cb26683 .team-member-card:hover .team-member-info {
    bottom: 0;
}
.team-section-container-7cb26683 .team-member-name {
    margin: 0 0 5px;
    font-size: 20px;
    color: #333;
}
.team-section-container-7cb26683 .team-member-position {
    font-size: 14px;
    color: #777;
}