.articles-list__title {
    font-weight: bold;
    color: #000;
    vertical-align: middle;
    line-height: 38px;
    font-size: 20px;
    margin: 10px 0
}
.articles-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.article-item__img{
    max-width: 300px;
}
.article-item__img img{
    max-width: 100%;
}
.article-item__title a{
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.3;
    margin: 6px 0;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    margin: 10px 0;
    font-weight: bold;
}
.article-item__description{
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.3;
    margin: 6px 0;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 3;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}
.article-item__description a,
.article-item__description a:hover{
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.3;
    margin: 6px 0;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 3;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}
@media (min-width: 991px) {
    .articles-list {
        order: 3;
    }
}
@media (max-width: 576px) {
    .articles-list__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 10px;
    }
    .article-item__description{
        display: none;
    }
}
