/* BLOG ACTEGORIES SECTION */

.more-posts h2{
    display: flex;
    justify-content: center;
}

.more-posts .wp-block-query ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.more-posts .wp-block-query ul li{
    width: 32.5%;
    border-radius: var(--dapo-border);
    margin-top: 0;
    flex-grow: 1;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .more-posts .wp-block-query ul li{
        width: 48%;
    }
}
@media screen and (max-width: 767px) {
    .more-posts .wp-block-query ul li{
        width: 100%;
    }
}

.more-posts .wp-block-query ul li .wp-block-cover .wp-block-cover__image-background.perfmatters-lazy.pmloaded{
    width: 100%;
}

.more-posts .wp-block-cover__inner-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;
    height: 300px;
}

/*---------- PAGINATION --------------*/
.wp-block-query-pagination{
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.wp-block-query-pagination-numbers{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.page-numbers.current{
    border-radius: 50%;
    width: fit-content;
    height: 12px;
    padding: 0.5rem;
    font-size: 1rem;
    background-color: var(--wp--preset--color--dapo-blue);
    display: flex;
    align-items: center;
    transition: background-color 0.35s ease-in-out;
}
.page-numbers.current:hover{
    background-color: var(--wp--preset--color--dapo-light-blue);
    color: var(--wp--preset--color--dapo-dark);
}

.page-numbers:hover{
    color: var(--wp--preset--color--dapo-blue);
    width: fit-content;
}

/*--------- RELATED POSTS ------------------*/
.related-post-wrapper{
    width: 100%!important;
    max-width: 1320px!important;
    margin: 0 auto;
}