.team-grid-c9ad0655 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.team-member-card-c9ad0655 {
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.3s;
}
.team-member-card-c9ad0655:hover {
    transform: translateY(-5px);
}
.team-member-link-wrapper-c9ad0655 {
    text-decoration: none !important;
    color: inherit;
    display: block;
}
.team-member-image-c9ad0655 img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.team-member-name-c9ad0655 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: bold;
}
.team-member-role-c9ad0655 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #777;
}
.team-member-bio-c9ad0655 {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}