.articles-block {}
.articles-block__title {
    margin: 0 0 24px;
}
.articles-block__list {}
.articles-block__item-wrapper {
    margin-bottom: 30px;
}
.articles-block__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 24px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
.articles-block__img-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 65%;
    display: block;
}
.articles-block__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.articles-block__desc {
    flex: 1 1 auto;
    padding: 16px 24px 0;
}
.articles-block__date {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
    color: rgba(0,0,0,0.5);
    margin-bottom: 8px;
}
.articles-block__name {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px
}
.articles-block__text {
    font-size: 14px;
    line-height: 1.45;
    font-weight: normal;
    color: #000;
}
.articles-block__link.btn {
    margin-top: 16px;
    align-self: center;
    background: #fff;
    color: #E01D24;
    border: 1px solid #E01D24;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
}
.articles-block_mt_md {
    margin-top: 80px;
}
@media screen and (max-width: 767px) {
    .articles-block_mt_md {
        margin-top: 40px;
    }
}

.article-detail {
    margin-bottom: 60px;
}
.article-detail__cover {
    margin-bottom: 32px;
}
.article-detail__cover-img {
    border-radius: 4px;
}
.article-detail__text {
    font-size: 14px;
}
.article-detail__date {
    margin-top: 16px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.4;
    color: rgba(0,0,0,0.5);
}
.article-detail__back {
    margin-top: 24px;
    padding: 0 20px;
}
.article-detail__back:before {
    content: "\e901";
    font-family: "ak-icons";
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    transform: rotate(90deg);
    margin-right: 8px;
}