.team{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member-clickable{
    cursor: pointer;
}

.team-title{
    font-size: 30px;
    font-weight: bold;
    color: var(--secondary-color);
}

.team-image img{
    
    border-radius: var(--border-radius-small);
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-name{
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
}

.team-description{
    font-size: 16px;
    color: var(--text-color);
    margin-top:10px;
}

.team-position{
    font-size: 16px;
    color: var(--text-color);
    margin-top: 5px;
}