.ylv-video-wrapper.layout-grid {
    display: grid;
    gap: 24px;
}

.ylv-video {
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0.01em;
}

.ylv-video a {
    text-decoration: none;
    color: inherit;
}

.ylv-video__thumb {
    position: relative;
    display: block;
}

.ylv-video__thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 56px;
    height: 39px;
    background-image: url("icon-youtube.png");
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}

.ylv-video__thumb img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.ylv-video__title {
    font-size: 12px;
    margin-block: 12px 8px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@media(max-width:1190px) {

    .ylv-video:nth-child(5),
    .ylv-video:nth-child(6),
    .ylv-video:nth-child(7),
    .ylv-video:nth-child(8) {
        display: none !important;
    }
}

@media(min-width:576px) {
    .ylv-video-wrapper.layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1200px) {
    .ylv-video__title {
        font-size: 14px;
    }

    .ylv-video-wrapper.layout-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 36px 16px;
    }
}