.articles {
    padding: 35px 0 100px;
}

.articles__item {
    margin-top: -1px;
    margin-left: -1px;
    background: url(../img/dots-horizontal.svg) top left repeat-x, url(../img/dots-horizontal.svg) bottom left repeat-x,
    url(../img/dots.svg) bottom left repeat-y, url(../img/dots.svg) bottom right repeat-y;
}

.articles-pagination {
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.pagination li {
    display: inline-block;
    padding: 10px;
    font-size: 18px;
}
.pagination li * {
    text-decoration: none;
    font-weight: bold;
}
.pagination li a {
    color: #212121;
    transition: all 0.3s;
}
.pagination li a:hover {
    color: #0014b8;
}
.pagination li.active * {
    color: silver;
}

.articles__title {
    margin-bottom: 35px;
}

.article-card {
    word-break: break-word;
}

.article-card__img {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.article-card__img:before {
    content: '';
    padding-bottom: 50%;
    display: block;
}

.article-card__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-card__title h3 {
    color: #212121;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    transition: all 0.3s;
}

.article-card__title h3:hover {
    color: #0014b8;
}

.article-card__title + .article-card__txt {
    margin-top: 12px;
}

.article-card__date {
    margin-top: 12px;
}

.article-card__txt {
    color: #353535;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}