.filterable-blog {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.filterable-blog article {
	width: 23%;
	margin: 0 1% 60px;
}
.filterable-blog article .entry-featured-image-url {
	display: block;
	width: 100%;
	position: relative;
	border: 1px solid #eee;
	margin: 0 0 10px;
    z-index: 1;
}
.filterable-blog article .entry-featured-image-url:hover {
	opacity: .6;
}
.filterable-blog article img {
	display: block;
	width: 100%;
	
}
.filterable-blog article .cat-list {
	display: block;
	width: 100%;
	margin: 0 0 10px;
}
.filterable-blog article .cat-list span {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}
.filterable-blog article .cat-list span:hover {
	opacity: .6;
}
.filterable-blog article a.title {
	display: block;
	font-size: 16px;
	font-weight: 500;
    line-height: 1.4;
    color: #222 !important;
}
.filterable-blog article a.title:hover {
    opacity: .7;
}
.filterable-blog article .desc-wrap {
    display: block;
    position: relative;
    z-index: 11;
}
.filterable-blog article .filter-icon {
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 15px;
    top: -25px;
    background-position: center center;
    background-size: cover;
    background-color: #fff;
    border: 2px solid #fff;
    box-sizing: content-box;
    border-radius: 10px;
    overflow: hidden; 
    cursor: pointer;
    z-index: 111;
}
.filterable-blog article .filter-icon:hover {
    opacity: .7;
}
.js-filter .page-numbers {
    display: inline-block;
    width: auto;
    text-align: center;
    border: 1px solid #eee;
    line-height: 40px;
    font-size: 14px;
    padding: 0 15px;
    min-width: 40px;
}
.js-filter a.page-numbers {
    background: #f7f7f7;
    transition: all .4s;
}
.js-filter a.page-numbers:hover {
    background: #fff;
}
.js-filter .no-results {
    font-size: 24px;
    display: block;
    text-align: center;
    width: 100%;
}
@media(max-width:980px) and (min-width:768px) {
    .filterable-blog article {
        width: 48%;
        margin: 0 1% 40px;
    }
}
@media(max-width:767px) {
    .filterable-blog article {
        width: 98%;
        margin: 0 1% 40px;
    }
}