(Squarespace) How to move Pagination arrows to top of Event

To move Pagination arrows to top of Events, like this.

You can use this code to Custom CSS.

body[class*="type-events"].view-item {
    main#page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 100px;
}
  section.item-pagination.item-pagination--prev-next {
    padding-top: 50px;
    padding-bottom: 5px;
}
article>section:first-child {
    padding-top: 0px !important;
}}