.blog-archive-listing {
    padding-top: 100px;
    padding-bottom: 100px;
}

.blog-archive-listing .image-button-item {
    margin-top: 35px;
}

.blog-archive-filter {
    padding-top: 50px;
    padding-bottom: 100px;
}

.featured-posts {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 7px 7px 14px rgba(107,107,107,.03);
    display: block;
    border: transparent
}

.featured-categories {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;

    & h5 {
        height: 33px;
        background: #F5F5F7;
        border-radius: 8px;
        width: max-content;
        padding: 4px 15px;
        color: #089CD6;
        font-size: 16px;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
}

.featured-posts__item__img-wrap {
    display: flex;
    align-items: center;
    height: 100%;

    & img {
        height: 100%;
        object-position: left center;
    }
}

.featured-posts__item__excerpt {
    color: #6B6B6B;
}

.featured-title {
    display: block;
    text-align: center;
}

.featured-posts__item__content {
    padding: 20px;

    @media( min-width : 768px ) {
        padding: 40px;
    }
}

.feature-posts__item-btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
        
    & .feature-posts__item-btn__time {
        color: #6B6B6B;
    }
}

.filter-by-topics {
    max-width: 292px;
    width: 100%;
    position: relative;
}

.filter-by-topics__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #CFDEFA;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
    z-index: 10;


}


.filter-by-topics__title {
    background-color: #fff;
    border: 1px solid #CFDEFA;
    width: 100%;
    display: block;
    padding: 9px 15px 8px !important;
    height: 43px;
    color: #6B6B6B;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    transition: allease 0.3s;
    font-weight: 400;
    border-radius: 4px;
    position: relative;

    & .icon-arrow-bottom {
        font-weight: normal;
        font-size: 16px;
        color: #12284C;
        right: 0;
        width: 46px;
        height: 100%;
        top: 50%;
        transform: translate(0, -50%);
        border: none;
        display: flex;
        align-items: center;
        border-left: 1px solid #CFDEFA;
        justify-content: center;
        position: absolute;
        cursor: pointer;
    }
}

.search-filter {
    position: relative;
    max-width: 292px;
    width: 100%;
    border: 1px solid #CFDEFA;
    border-radius: 4px;

    & button {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        border: none;
        background-color: transparent;
        color: #12284C;

        & i {
            color: #12284C;
        }
        
    }

    & input {
        border: none;
    }

    .facetwp-icon {
        display: none;
    }

    .facetwp-facet {
        margin-bottom: 0;
    }
}

.filter-reset {
    & a {
        color: #089CD6;
        font-weight: 600;
    }
}

.resources-filter {
    display: flex;
    gap: 30px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;

    &.no-margin {
        margin-bottom: 0;
    }
}

/* Checkbox */

.facetwp-checkbox {
    background: transparent!important;
    position: relative;
    padding-left: 30px!important;
    font-size: 16px;
    color: #12284C;
    margin-bottom: 10px!important;

    &::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 7px;
        width: 5px;
        height: 10px;
        border: solid #ffffff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        opacity: 0;
        transition: opacity 0.25s ease;
        z-index: 1;
    }

    &::after {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        width: 20px;
        height: 20px;
        background-color: #F5F5F7;
        border-radius: 4px;
        border: 1px solid #CFDEFA;
    }

    &.checked {
        &::before {
            opacity: 1;
        }

        &::after {
            background-color: #12284C;
        }
    }
}

.resources-pagination {
    margin-top: 50px;
    text-align: center;
}

/* Pagination */

.facetwp-pager {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.facetwp-page:is(.next, .prev) {
    color: #12284C;
    background: #fff;
    width: 54px;
    height: 54px;
    display: flex!important;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 1;
    border-radius: 50%;
    border: 2px solid #F5F5F7;
}

.facetwp-page {
    color: #12284C;
    border-bottom: transparent;

    &.active {
        color: #089CD6;
        border-bottom: 2px solid #089CD6;
    }
}

.resources-category-filter {
    max-width: 400px;
    width: 100%;

    & span {
        margin-bottom: 10px;
        display: block;
    }
}