.articles__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.articles__item {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.13);
    overflow: hidden;
}

/*.articles__item {*/
/*    width: calc(50% - 10px);*/
/*    position: relative;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 25px;*/
/*    border-radius: 30px;*/
/*    background: #fff;*/
/*    overflow: hidden; !* оставим *!*/
/*}*/

/*!* Вместо box-shadow — псевдоэлемент внутри блока *!*/
/*.articles__item::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 20px;  !* чтобы тень не вылезала по бокам *!*/
/*    right: 20px;*/
/*    bottom: 0;*/
/*    height: 25px; !* подбери под глубину тени *!*/
/*    border-radius: 0 0 30px 30px;*/
/*    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.13);*/
/*    z-index: 0;*/
/*    pointer-events: none;*/
/*}*/

.articles__item-image-block {
    height: 262px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.articles__item-image {
    width: 100%;
    height: fit-content;
}

.image_vertical {
    margin-top: 55%;
}

.articles__item-body {
    height: 100%;
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.item-body_cover {
    padding-top: 30px;
}

.articles__item-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.articles__item-title {
    color: #3d9322;
    font-size: 20px;
    font-weight: 600;
}

.articles__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

.articles__item-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.articles__item-date {
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
}

@media (max-width: 991px) {
    .articles__item {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .articles__item-image {
        max-width: unset;
        width: auto;
        min-height: 100%;
    }

    .articles__item-body {
        padding: 0 24px 24px;
    }

    .articles__item-title {
        font-size: 18px;
    }

    .articles__item-text {
        font-size: 14px;
    }

    .articles__item-date {
        font-size: 12px;
    }
}
