.news_list, .image_head, .left_block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px; /* Отступ между блоками */
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; /* Центрируем блоки при недостатке места */
    box-sizing: border-box;
}
.left_block{
    gap: 0;
}
.news_list .btn-red, .news_list .btn-white{
    background: none;
    border:none;
    text-transform: uppercase;
    font-size: 16px!important;
    font-weight: 300;
    text-decoration: underline;
    margin: 0 0 5px 0;
}
.news_list .btn-white:hover{
    color: #000;
}
.item_list {
    height: 330px;
    width: 361px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius:5px;
    -webkit-box-shadow: 0 1px 4px 0 #808080;
    box-shadow: 0 1px 4px 0 #808080;
    background-color: #fdfdfd;
    -webkit-transition: all .5ms ease;
    -o-transition: all .5ms ease;
    transition: all .5ms ease;
    overflow: hidden;
}
.item_list:hover, .left_block:hover{
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
}
.item_list .colum, .item_list .column_end, .item_list .item_info, .item_list .first_cart_anons_block, .image_head > .anons_head{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}
.item_list .first_cart_anons_block > a, .item_list .item_info > a{
    font-size: 15px;
    margin:0 0 5px 0;
}
.item_list p{
    font-size: 15px;
    line-height: normal;
}
.item_list .item_info{
    height:134px;
}
.item_list .first_cart_anons_block{
    height:120px;
    background-color: rgba(0,0,0,0.7);
    color: white;
}
.item_list .head_anons{
    color: white;
}
.item_list .column_end{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.standart_image_post, .item_list .main_image_post, .image_head{
    height: 176px;
    background-size: cover; /* или contain в зависимости от предпочтений */
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.item_list .main_image_post {
    text-decoration: none;
    color: inherit;
    isolation: isolate; /* Создаёт новый stacking context, чтобы z-index: -1 работал */
    height:100%;
}
.item_list .standart_image_post::before, .item_list .main_image_post::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit; /* Берёт фон родителя */
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.item_list .main_image_post::before {
    z-index: -1; /* Чтобы контент оставался поверх */
}
.item_list:hover .standart_image_post::before, .item_list:hover .main_image_post::before {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
.item_list:first-child {
    width: 740px; /* 310*2 + 20px gap (если gap 20px) */
}
.item_list .anons, .first_cart_anons_block .anons{
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.first_cart_anons_block .anons{
    -webkit-line-clamp: 2;
}
.item_list .main_image_post > .first_cart_anons_block, .item_list .item_info{
    padding: 5px 10px;
}
.first_cart_anons_block .head_anons{
    text-decoration: underline;
}
.image_head{
    min-height: 380px;
    margin: 10px auto;
    width:100%;
    padding:10px;
}
.image_head > .anons_head{
    justify-content: space-between;
    flex-grow: 1;
    color: white;
    max-width: 350px;
    font-size: 1.1em;
}
.image_head > .anons_head{
    padding: 10px;
}
.anons_head .share-buttons{
    margin-bottom:10px;
    padding:0;
}
.left_block{
    flex-wrap: nowrap;
    align-items: center;
    margin:10px 0;
    border-radius:5px;
    -webkit-box-shadow: 0 1px 4px 0 #808080;
    box-shadow: 0 1px 4px 0 #808080;
    background-color: #fdfdfd;
    -webkit-transition: all .5ms ease;
    -o-transition: all .5ms ease;
    transition: all .5ms ease;
    overflow: hidden;
}
.left_block a{
    width:70%;
    text-decoration: none;
}
.left_block h3{
    text-decoration: underline;
    font-size: 15px;
}
.left_block p{
    font-size: 14px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.left_block .l-img_block{
    width:30%;
    margin: 0 10px;
}
.left_bar_news{
    margin:20px 0;
}
/* Адаптивные стили */
@media (max-width: 1350px) {
    .item_list:first-child {
        width: 361px; /* Первый блок становится обычного размера */
    }
    .image_head{
        min-height: 320px;
    }
}

@media (max-width: 1380px) {
    .news_list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; /* Центрируем блоки при недостатке места */
    }
}

@media (max-width: 700px) {
    .item_list,
    .item_list:first-child {
        width: 100%; /* На очень маленьких экранах блоки занимают всю ширину */
    }
    .image_head{
        min-height: 250px;
    }
}