.filterable-posts .separator{
    border-top: 1px solid #d3b76b;
    margin-top: 20px;
    margin-bottom: 20px;

}
.filterable-posts__filters{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction:column;
}
@media(min-width: 750px){
    .filterable-posts__filters{
        flex-direction: row;
    }
}
.filterable-posts__filters select,
.filterable-posts__filters input{
    padding: 10px !important;
    border: 1px solid #d3b76b !important;
    border-radius: 5px;
    width: 100%;
    max-width: 290px;
}
.filterable-posts__posts-wrapper{
    position: relative;
}
.filterable-posts__posts{
    display:grid;
    row-gap: 60px;
    column-gap:40px;
    
}
.filterable-posts__posts-wrapper .spinner{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 5;
}

.filterable-posts__posts-wrapper .spinner.show{
    display:flex;
}
.filterable-posts__posts-wrapper .spinner svg{
    width: 100px;
    height: 100px;
}



@media(min-width: 600px){
    .filterable-posts__posts{
        grid-template-columns: repeat( 2 , 1fr );
    }
}

@media(min-width: 900px){
    .filterable-posts__posts{
        grid-template-columns: repeat( 3 , 1fr );
    }
}
.filterable-posts__posts__post{
    /* max-width: 300px; */
    margin: 0 auto;
    width: 100%;
        border-bottom: 1px solid #ddd;
}
.filterable-posts__posts__post article{
    display: flex;
    flex-direction: column;
    gap: 0;
    
}
.filterable-posts__posts__post article h2{
    font-size:14px !important;	
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;  
    padding-left:19px !important;
    padding-right:19px !important;
}
.filterable-posts__posts__post article p{

    color: #000;
        font-size: 14px;
        text-transform: uppercase;
        font-family: 'Goldenbook_bold';
    padding: 0 19px 19px 19px !important;
}

.filterable-posts__posts__post .post_thumb{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    overflow: hidden;
    margin-bottom:29px;
}
.filterable-posts__posts__post img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.filterable-posts__pagination{
    display:flex;
    justify-content: center;
    gap:15px;
    margin-top: 30px;
}
.filterable-posts__pagination .nav-item{
    padding:10px;
    height:40px;
    width:40px;
    font-size:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
    border: 1px solid #d3b76b;
    background: #ffff;
}
.filterable-posts__pagination .nav-item.current{
    background: #cccc;
}


.sort__by-order{
    background: transparent;
    cursor: pointer;
    border: 1px solid #d3b76b;
    color: #4e4e4e;
    padding: 10px;
}