.articles-page{
    padding-bottom: 30px;
}
.articles-page__title{
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 110%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #232E49;
}

.articles-list__item{
    width: 100%;
    max-width: calc((100% - 90px) / 4 ) ;
}
.articles-list{
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 40px;
}
.articles-list__container{
    margin-top: 40px;    
}
.article-item{
    background: #F9FBFD;
    border-radius: 20px;
    padding: 18px;
    border: solid 1px #EDF3F8;
    box-sizing: border-box;
    transition: all linear .3s;
}
.article-item:hover{
    border: 1px solid #EDF3F8;
    box-shadow: 0px 3px 13.2px rgba(0, 63, 190, 0.06);
}
.article-item__img-wrapper{
    position: relative;
    width: 100%;
    border-radius: 14px;
    max-height: 210px;
    overflow: hidden;
}
.article-item__img{
    width: 100%;
}
.articles-list__tag{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFC795;
    border-radius: 6px;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #A44C00;
    flex: none;
    justify-content: center;
    align-items: center;
    padding: 7px 14px;
}
.article-item__content{
    margin-top: 20px;
}
.article-item__title{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #232E49;
}
.article-item__description{
    margin-top: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #232E49;
}
.article-item__footer{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;

    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #9199AC;      
}
.article-item__date{
    margin-left: auto;
}
.article-item__read-more{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #EC6E00;
    cursor: pointer;
    display: flex;
    gap: 4px;
    justify-content: flex-start;
}
.article-navigation__more-btn{
    width: 100%;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #A8AAB1;
    height: 50px;
    border: 2px solid #A8AAB1;
    border-radius: 9px;
}
@media(max-width:1260px){
    .articles-list__item{
        max-width: calc((100% - 60px) / 3);
    }
}

@media(max-width:768px){
    .articles-list__item{
        max-width: calc((100% - 40px) / 2);
    }
    .articles-page__title{
        font-size: 50px;
    }
}
@media(max-width:550px){
    .article-item{
        padding: 10px;
    }
    .articles-page__title{
        font-weight: 700;
        font-size: 22px;
        line-height: 22px;
    }
    .articles-list{
        margin-top: 25px;
    }
    .articles-list__item{
        max-width: 100%;
    }
    .article-item__title{
        font-size: 14px;
    }
    .article-item__description{
        font-size: 12px;
    }
    .article-item__date{
        font-size: 10px;
    }
    .articles-list__tag{
        font-size: 10px;
    }
    .articles-list__tag{
        top: 8px;
        right: 8px;
    }
    .article-item__footer{
        margin-top: 10px;
    }
    .article-navigation__more-btn{
        display: flex;
         margin-top: 40px;
    }
    .article-navigation .mb-4{
        display: none;       
    }
    .article-item__read-more{
        display: none;
    }
    .article-more-slider--list-on-mob .article-item__read-more{
        display: flex;
    }

}
