.block__items-grid, .instructions-block__items-grid {
   display: flex;
   flex-wrap: wrap;
   align-self: start;
   justify-content: start;
   column-gap: 20px;
   row-gap: 20px;
   margin-bottom: 100px;
}

.video-post_search {
    width: 397px;
    height: 372px;
    background-color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    flex-shrink: 0;
}

.no-search-query {
    width: 300px;
    margin: 0 auto;
}

.no-results {
    display: block;
    padding-bottom: 100px;
}

.instructions-post-search {
    width: 397px;
    height: 372px;
    background-color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    flex-shrink: 0;
}

.instructions-post__name_search {
    width: 100%;
    max-width: 369px;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    color: #131313;
    flex-shrink: 0;
}

.instructions-post__text_search {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
 
    display: -webkit-box;
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5; 
    margin-bottom: 12px;
    color: #454F5B;
    flex-grow: 1; 
}