This is because the content overflows from the card and user can hover on them in order to fix it add overflow: hidden;
to your card like this:
.card {
overflow: hidden;
}
This makes sure that the content that overflows are hidden and user can't hover on them.