.articles-list-division {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: baseline;
    gap: 24px;
    row-gap: 36px;
    margin: 64px 0px;
}

.card-article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 340px;
}

.card-article__picture img {
    width: 100%;
}

.card-article__title {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 33px;
    text-align: center;
}

.more-title_separator{
    margin-bottom: 32px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
}

.more-articles__title {
    color: #212121;
    font-family: 'Ubuntu';
    font-size: 24px;
    font-weight: 700;
    line-height: 44px;
}

@media only screen and (min-width: 500px) {
    .card-article {
        width: 45%;
    }
}

@media only screen and (min-width: 768px) {
    .card-article {
        width: 30%;
    }

    .more-articles__title{
        font-size: 36px;

    }
}

@media only screen and (min-width: 1200px) {
    .card-article {
        width: 23%;
    }
}
