.yt-feed .video-item .video-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.yt-feed .video-item {
    padding: 10px 0;
}
.yt-feed .video-item a {
    position: relative;
    display: block;
    overflow: hidden;
}
.yt-feed .video-item a p {
    margin: unset !important;
}
.yt-feed .video-item a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: rgba(0,0,0,.4);
    transition: all .325s ease-in-out;
    opacity: 0;
}
.yt-feed .video-item a:hover::after {
    top: 0;
    opacity: 1;
}
.yt-feed .video-item a:hover .yt-icon {
    display: block;
}
.yt-feed .yt-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #e02f2f;
    font-size: 90px;
    z-index: 5;
}