.like .like__heart {
    width: 26px;
    height: 26px;
    background-image: url("/img/svg/heart.svg");
    background-size: contain;
    transition: .3s;
}

.like:hover .like__heart {
    transform: scale(1.15);
}

.like.active .like__heart {
    background-image: url("/img/svg/heart-active.svg");
}

.like.active:hover .like__heart {
    animation: none;
}