.team-card {
    margin: 0;
    padding: 12px;
}

.team-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    background: #f3f3f3;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.team-card:hover .team-image {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.team-meta {
    padding-top: 14px;
    text-align: center;
}

.team-name {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 22px;
    color: #111;
}

.team-role {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #666;
}
