.articles-block {}
.articles-block__list {
    row-gap: 10px;
}
.articles-block__item-wrapper {}
.articles-block__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background: var(--color-grey-thin3);
    gap: 10px;
    border-radius: var(--radius);
}
.articles-block__img-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border-radius: var(--radius);
}
.articles-block__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.articles-block__desc {
    flex: 1 1 auto;
}
.articles-block__name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
}
.articles-block__text {
    font-size: 13px;
    line-height: 1.4;
    font-weight: normal;
}
.articles-block__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
}
.articles-block__info {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    opacity: 0.4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.articles-block__info_icon_clock:before,
.articles-block__info_icon_food:before {
    content: "";
    width: 20px;
    height: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.articles-block__info_icon_clock:before {
    background-image: url('../images/icons/clock.svg');
}
.articles-block__info_icon_food:before {
    background-image: url('../images/icons/food.svg');
}
@media screen and (min-width: 768px) {
    .articles-block__list {
        row-gap: 32px;
    }
    .articles-block__item {
        gap: 16px;
    }
    .articles-block__name {
        font-size: 20px;
    }
    .articles-block__text {
        font-size: 15px;
    }
}