.articlespage {
    margin-top: 50px;
    margin-bottom: 60px;
}
.articlespage-top {
    
}
.articlespage-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 25px;
    color: #181D27;
}
.articlespage-recent {
    display: flex;
    gap: 30px;
}
.articlespage-recent-left {
    width: 50%;
}
.articlespage-recent-right {
    width: 50%;
    display: flex;
    gap: 25px;
    flex-direction: column;
}
.articlespage-btm {
    margin-bottom: 110px;
    margin-top: 100px;
}
.articlespage-all {
}


@media (min-width: 767px) {

    .articlespage-recent-left .articlesblock-item > img{
        height: 396px;
    }

}

.articlespage-recent-left{

}

.articlespage-recent-right .articlesblock-item{
    width: 100%;
}

@media (min-width: 1024px) {

    .articlespage-recent-right .articlesblock-item{
        display: flex;
        gap: 20px;
    }
    .articlespage-recent-right .articlesblock-item > img{
        height: 221px;
        width: 50%;
    }

    .articlespage-recent-right .articlesblock-item .meta{
        margin-top: 0;
    }

}


.articlespage-nav {
    display: flex;
    align-items: center;
    color: #717680;
    justify-content: center;
    position: relative;
    border-top: 1px solid #E9EAEB;
    padding: 20px 0 0;
    margin: -50px 0 100px;
}

.articlespage-nav .page-numbers:not(.next):not(.prev){
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #717680;
    display: flex;
    align-items: center;
    justify-content: center;
}
.articlespage-nav .current.page-numbers:not(.next):not(.prev){
    background:#03A9121F;
    color:#03A912;
}

.articlespage-nav .page-numbers.next{
    color:#535862;
    position: absolute;
    right: 0;
    top: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.articlespage-nav .page-numbers.next::after{
    content:"";
    width: 20px;
    height: 20px;
    background: url(/wp-content/themes/quatronics/img/icons/nav-arrow-right.svg) center / 20px no-repeat;
    display: block;
}
.articlespage-nav .page-numbers.prev{
    color:#535862;
    position: absolute;
    left: 0;
    top: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.articlespage-nav .page-numbers.prev::before{
    content:"";
    width: 20px;
    height: 20px;
    background: url(/wp-content/themes/quatronics/img/icons/nav-arrow-left.svg) center / 20px no-repeat;
    display: block;
}


@media (max-width: 767px) {

    .articlespage-recent {
        gap: 25px;
        flex-direction: column;
    }

    .articlespage-recent-left,
    .articlespage-recent-right{
        width: 100%;
    }

    .articlespage-nav .page-numbers:not(.next):not(.prev){
        width: 32px;
    }

}