.target_block{
    display: inline-flex;
    flex-wrap: wrap;
    display: -webkit-flex;
    width: min-content;
}
.tlb{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
}

.target-cell{
    /*float: left;*/
    /*margin: 0px 20px 0px 0px;*/
    /*width: 600px;*/
    display: -webkit-inline-flex;
    display: inline-flex;
    margin-bottom: 10px;
    flex-grow: 100;
}

.target-preview{
    /*display: flex;*/
    /*flex-direction: column;*/
    position: relative;
    height: auto;/*280px;*/
    overflow: hidden;
    /*margin-bottom: 20px;*/
    border-radius: 6px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.26);
    transition-duration: 150ms;
    background-color: white;
    width: 100%;
}
.leftstr .item_likes{
    padding: 0;
}
.target-preview .image {
    height: 90%;
    background: #000;  /* У блока, оборачивающего картинку при наведении будет просвечивать черный фон */
    overflow: hidden;  /* Ограничиваем видиую область */
}
.target-preview .image img:hover{
    opacity: 0.8; /* Высветляем картинку, но она становится темнее, так как под ней черный фон */
    /*transform: scale(1.05); !* Увеличение картинки *!*/
}
.target-preview .image img{
    height: 100%;
    aspect-ratio: 3 / 2;
}

.info_block{
    /*display: flex;*/
    /*flex-direction: column;*/
    /*flex-grow: 1;*/
    padding-bottom: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.0),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 1) 75%);
}
.target-preview .title{
    box-sizing: border-box;
    width: 100%;
    padding: 10px 20px;
    /*30px 10px 40px;*/
    border-radius: 6px;
    font-weight: 700;
    transition-duration: 150ms;
    bottom: 10px;
    font-size: 23px;
    /*transform: scale(1.1, 1);*/
    flex-grow: 1;
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-preview .info{
    /*border-top: 1px solid #a69f9f61;*/
    padding: 10px 0 10px;
}

.target-preview .info .leftstr{
    padding-left: 20px;
}
.target-preview .info .rightstr {
    padding-right: 15px;
}

.target-preview .read{
    text-align: center;
    background-color: #3163DC;
    /*#00c000;*/
    /*min-height: 35px;*/
    color: white;
    /*padding-top: 10px;*/
    flex: 0 0 auto;

    padding: 15px 20px;
}
.read:hover{
    background-color: #0f3ddc;
}
@media screen and (max-width: 1219px) {
    .target-cell {
        /*width: 470px;*/
    }
    .leftstr{
        padding-left: 22px;
    }
}
@media (min-width: 727px) and (max-width: 1000px) {
    .tlb {
        flex-direction: column;
    }
}
@media screen and (max-width: 727px) {
    .target-cell
    {
        min-height: 330px;
    }
}

@media screen and (max-width: 505px){
    .target-cell
    {
        /*margin: 0;*/
    }
    .tlb{
        display: block;
        padding-right: 1px;
    }
    .target_block{
        width: auto;
    }

}
@media screen and (max-width: 400px){
    .target-cell .rightstr
    {
        display: none;
    }
    .target-cell .leftstr {
        width: 100%;
        padding-right: 20px;
    }
}