.video-list-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.video-item {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 10px;
    border-radius: 5px;
}

.video-cover-wrapper {
    width: 100%;
    padding-top: 55%;
    /*aspect-ratio: 1.78;*/
    background: #F2F2F2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-duration {
    position: absolute;
    right: 5px;
    bottom: 5px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 3px;
    border-radius: 3px;
    font-size: 12px;
}

.video-title {
    font-weight: bold;
    margin-top: 4px;
    padding: 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.9);

}

.video-play-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: #F2F2F2;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-icon i {
    color: rgba(0, 0, 0, 0.9);
}

.video-item:hover .video-play-icon {
    display: flex;
}