.mainAreaBlog {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 72px;
}

.inblogArea {
    max-width: 1240px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.boxAreaCategory {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.titleCategory {
    color: #FFF;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;

}

.boxCategories {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.moreNewsBtn {
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 8px;
    display: flex;
    padding: 12px 4px 12px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    cursor: pointer;
    justify-content: center;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
}

.areaStages {
    margin-bottom: 244px;
}

.paginationArea {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
}

.leftArrows {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.arrowPagStyle {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #E34F13;
    cursor: pointer;
    box-sizing: border-box;
}

.arrowPagStyle:hover,
.numberItem:hover {
    background: #E34F13;
}

.numbersItemPag {
    display: flex;
    gap: 4px;
}

.numberItem {
    cursor: pointer;
    display: flex;
    padding: 9px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.85);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 8px;
}

.numberItem.active {
    background: #E34F13;
}

@media screen and (max-width: 1280px) {
    .mainAreaBlog {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .titleCategory {
        font-size: clamp(28px, 4vw, 40px);
        line-height: normal;
    }

    .mainAreaBlog {
        margin-top: clamp(48px, 5vw, 72px);
    }

    .inblogArea {
        gap: clamp(46px, 5vw, 80px);
    }
}