.articles-block {}
.articles-block__list {
    margin-left: -20px;
    margin-right: -20px;
}
.articles-block__item-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.articles-block__item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.articles-block__img-wrapper {
    flex: 0 0 auto;
    width: 100%;
    height: 260px;
    position: relative;
}
.articles-block__img-wrapper_gradient {
    height: 180px;
    background: radial-gradient(circle, rgba(88,88,88,0.3) 0%, rgba(255,255,255,0) 100%);
}
.articles-block__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.articles-block__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: calc(100% - 48px);
    max-height: calc(100% - 48px);
}
.articles-block__desc {
    background: #171719;
    padding: 25px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.articles-block__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.21;
    color: #FFFFFF;
    text-transform: uppercase;
}
.articles-block__name_full {
    flex: 1 1 auto;
}
.articles-block__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #FFFFFF;
    flex: 1 1 auto;
}
.articles-block__name + .articles-block__text {
    margin-top: 23px;
}
.articles-block__date {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #FF0004;
    margin-top: 30px;
}
.articles-block__arrow {
    padding-right: 40px;
    position: relative; 
}
.articles-block__arrow:after {
    content: "\e90e";
    font-family: "ural-icons";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    transition: transform 0.3s ease;
    color: #fff;
}
.articles-block__item:hover .articles-block__arrow:after {
    transform: translate(5px,-50%);
}

.articles-block .swiper-slide {
    height: auto;
    opacity: 0.3;
}
.articles-block .swiper-slide-visible {
    opacity: 1;
}
.articles-block .swiper-slide .articles-block__desc {
    padding: 25px;
}
.articles-block .swiper-slide .articles-block__name {
    font-size: 18px;
}

.articles-block_events .articles-block__list {
    margin: 0 -6px;
}
.articles-block_events .articles-block__item-wrapper {
    padding: 0 6px;
    margin-bottom: 12px;
}
.articles-block_events .articles-block__img-wrapper {
    height: 150px;
}
.articles-block_events .articles-block__desc {
    padding: 40px 30px;
}
.articles-block_events .articles-block__name {
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1.2;
    color: #FFFFFF;
}
.articles-block_events .articles-block__name + .articles-block__text {
    margin-top: 16px;
}
.articles-block_events .articles-block__date-wrapper {
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}
.articles-block_events .articles-block__date {
    margin-top: 4px;
    font-weight: 400;
    font-size: 17px;
    color: #FFFFFF;
}
.articles-block_events .articles-block__more {
    margin-top: 4px;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.23;
    color: #ED1D24;
}
.articles-block_events .articles-block__more:after {
    color: #ED1D24;
}
.articles-block_events .articles-block__item_no_cover .articles-block__name {
    font-size: 36px;
    flex: 1 1 auto;
}
.articles-block_events .articles-block__item_no_cover .articles-block__text {
    flex: 0 0 auto;
}

.articles-block_bg_black .articles-block__desc {
    background: #000;
}

.articles-block_mt {
    margin-top: 60px;
}
@media screen and (min-width: 768px) {
    .articles-block__name {
        font-size: 24px;
    }
}
@media screen and (min-width: 992px) {
    .articles-block__desc {
        padding: 25px 50px;
    }
}
@media screen and (min-width: 1200px) {
    .articles-block_events .articles-block__name {
        font-size: 30px;
    }
    .articles-block_events .articles-block__item_no_cover .articles-block__name {
        font-size: 42px;
    }
}


.article-detail {
    margin-bottom: 80px;
}
.article-detail__date {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.36;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.article-detail__intro {
    margin-bottom: 40px;
}
.article-detail .content-styles {
    margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
    .article-detail__date {
        margin-bottom: 50px;
    }
}


