.articles-block {
    position: relative;
    z-index: 3;
}
.articles-block__header {
    margin: 0 0 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.articles-block__title-wrapper {
    display: flex;
    align-items: flex-end;
}
.articles-block__title {
    font-size: 32px;
    line-height: 1.3;
    margin: 0;
}
.articles-block__title-link {
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    color: #00A0DE;
    position: relative;
    top: -9px;
    margin-left: 16px;
}
.articles-block__nav {
    position: relative;
    display: flex;

}
.articles-block__nav-prev,
.articles-block__nav-next {
    position: relative;
    width: 48px;
    height: 48px;
    background: #F5F6F7;
    border-radius: 2px;
    margin: 0;
    left: 0;
    right: 0;
    margin-left: 8px;
    color: rgba(43,43,43,1);
    opacity: 1 !important;
    transition: color 0.3s ease;
}
.articles-block__nav-prev:after,
.articles-block__nav-next:after {
    content: "\e925";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "baikal-icons";
    font-size: 14px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    background: none;
}
.articles-block__nav-prev:after {
    transform: translate(-50%,-50%) rotate(-180deg);
}
.articles-block__nav-prev.swiper-button-disabled,
.articles-block__nav-next.swiper-button-disabled {
    color: rgba(43,43,43,0.3);
}


.articles-block .swiper-container {
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px;
}
.articles-block .swiper-slide {
    height: auto;
}

.articles-block__list {
    margin: 0 -10px;
}
.articles-block__item-wrapper {
    padding: 0 10px;
    margin-bottom: 20px;
}
.articles-block__item {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: #F7F8F9;
    border-radius: 2px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.articles-block__desc {
    flex: 1 1 auto;
    position: relative;
    z-index: 3;
}
.articles-block__date {
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    color: rgba(43, 43, 43, 0.4);
    margin-bottom: 16px;
}
.articles-block__expire {
    position: absolute;
    top: -5px;
    right: 0;
    white-space: nowrap;
    background: #DE3333;
    font-weight: bold;
    font-size: 11px;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 0 8px;
}
.articles-block__name {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.5;
    color: #2B2B2B;
}
.articles-block__text {
    margin-top: 16px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: #2B2B2B;
}
.articles-block__img {
    position: absolute;
    right: -30px;
    bottom: 24px;
    width: 160px;
    height: 160px;
    z-index: 1;
}
.articles-block__footer {
    flex: 0 0 auto;
    margin-top: 16px;
    position: relative;
    z-index: 3;
}
.articles-block__btn.btn {
    height: 32px;
    line-height: 32px;
    padding: 0 24px;
}

.articles-block_promotions .articles-block__item {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 2px;
    min-height: 270px;
}
.articles-block_promotions .articles-block__date {
    font-weight: bold;
    color: #95C518;
    margin-bottom: 8px;
}
.articles-block_promotions .articles-block__name {
    font-size: 16px;
    line-height: 1.25;
}
.articles-block_promotions .articles-block__text {
    margin-top: 8px;
    padding-right: 105px;
}
.articles-block_promotions .articles-block__footer {
    padding-top: 122px;
}

@media screen and (max-width: 767px) {
    .articles-block__nav {
        display: none;
    }
    .articles-block__title-wrapper {
        justify-content: space-between;
        flex: 1 1 auto;
    }
    .articles-block__title {
        font-size: 28px;
    }
    .articles-block__title-link {
        white-space: nowrap;
    }
}
@media screen and (max-width: 575px) {
    .articles-block .swiper-container {
        overflow: visible;
    }
    .articles-block__title {
        font-size: 22px;
    }
    .articles-block__title-wrapper_column_mobile {
        flex-direction: column;
        align-items: flex-start;
    }
    .articles-block__title-wrapper_column_mobile .articles-block__title-link {
        margin: 16px 0 0;
    }
}

@media screen and (min-width: 768px) {
    .articles-block__nav-prev:hover,
    .articles-block__nav-next:hover {
        color: #00A0DE;
    }
    .articles-block__item:hover {
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.04), 0px 2px 16px rgba(0, 0, 0, 0.1);
    }
    .articles-block_promotions .articles-block__item:hover {
        border-color: transparent;
    }
}

.subscribe-block {
    margin-top: 20px;
}
.subscribe-block form {
    position: relative;
}
.subscribe-block button {
    position: absolute;
    top: 0;
    right: 0;
}
