.bb-resource-listing-wrapper .blog-filter {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-bottom: 8px;
}

.bb-resource-listing-wrapper .blog-filter-clear {
	display: block;
	font-size: .875rem;
	color: var(--secondary);
	padding: 10px 0;
	margin-bottom: 40px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.bb-resource-listing-wrapper .blog-filter-clear:hover,
.bb-resource-listing-wrapper .blog-filter-clear:focus {
	color: var(--tertiary);
}

.bb-resource-listing-wrapper .blog-filter .filter {
	position: relative;
	background-color: var(--primary-background);
	max-width: 400px;
}

.bb-resource-listing-wrapper .blog-filter .filter .selected-option {
	display: grid;
	grid-template-columns: 1fr 10px;
	align-items: center;
	font-weight: 300;
	color: var(--body);
	text-align: left;
	width: 100%;
	background: none;
	border: 0;
	padding: 20px 14px;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.bb-resource-listing-wrapper .blog-filter .filter .selected-option[aria-expanded="true"] {
	background-color: #d5e1eb;
}

.bb-resource-listing-wrapper .blog-filter .filter .selected-option .selected-option__text {
	font-weight: 500;
}

.bb-resource-listing-wrapper .blog-filter .filter .selected-option .selected-option__text.selected-option__text--default {
	font-weight: 300;
}

.bb-resource-listing-wrapper .blog-filter .filter .selected-option img {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.bb-resource-listing-wrapper .blog-filter .filter .selected-option[aria-expanded="true"] img {
	transform: rotate(90deg);
}

.bb-resource-listing-wrapper .blog-filter .filter ul {
	display: none;
	position: absolute;
	bottom: 0;
	transform: translateY(100%);
	width: 100%;
	background-color: var(--primary-background);
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 10;
}

.bb-resource-listing-wrapper .blog-filter .filter ul > li a {
	display: block;
	color: var(--body);
	padding: 8px 14px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.bb-resource-listing-wrapper .blog-filter .filter ul > li a:hover,
.bb-resource-listing-wrapper .blog-filter .filter ul > li a:focus {
	background-color: #d5e1eb;
}

.bb-resource-listing-wrapper .post-listing {
	position:relative;
	margin:0 -15px;
	row-gap: 20px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

@keyframes fadeIn {
	0% {
		opacity:0;    
	}

	50% {
		opacity:.5;
	}

	100% {
		opacity:1;
	}
}

.bb-resource-listing-wrapper .post-item {
	position: relative;
	background-color:transparent;
	-webkit-transition:all .3s ease-out;
	-o-transition:all .3s ease-out;
	transition:all .3s ease-out;
	width:33.33%;
	animation:fadeIn .3s ease-out forwards 0s;
}

.bb-resource-listing-wrapper .post-item:hover {
	background-color:#eff7fa;
}

.bb-resource-listing-wrapper .post-inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	padding: 15px;
}

.bb-resource-listing-wrapper .post-inner .post-inner__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.bb-resource-listing-wrapper .post-image {
	position: relative;
	max-height: 260px;
	min-height: 260px;
	overflow: hidden;
	margin-bottom:15px;
}

.bb-resource-listing-wrapper .post-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width:100%;
	height:100%;
	-o-object-fit:cover;
	object-fit:cover;
	-o-object-position:50% 50%;
	object-position:50% 50%;
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	transform:scale(1);
	-webkit-transition:all .3s ease-out;
	-o-transition:all .3s ease-out;
	transition:all .3s ease-out;
}

.bb-resource-listing-wrapper .post-item:hover .post-image img {
	-webkit-transform:scale(1.1);
	-ms-transform:scale(1.1);
	transform:scale(1.1);
}

.bb-resource-listing-wrapper .post-title a {
	color:inherit;
	font-size: inherit;
	line-height: inherit;
}

.bb-resource-listing-wrapper .post-title a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bb-resource-listing-wrapper .more-link .btn {
	margin: 0;
}

.bb-resource-listing-wrapper .post-entry {
	margin-bottom:30px;
}

.bb-resource-listing-wrapper .filters-select {
	background-color: #E4ECF2;
	border: 0;
	padding: 20px 15px;
	margin: 0 0 40px;
	opacity: 0.5;
	min-width: 240px;
	outline: 0;
	-webkit-appearance: none;
	background-image: url(https://22383675.fs1.hubspotusercontent-na1.net/hubfs/22383675/tempel-theme-2023/images/arrow-down.png);
	background-position: 95% center;
	background-size: 15px;
	background-repeat: no-repeat;
	font-size: 16px;
}

.bb-resource-listing-wrapper .filters-select option {
	padding: 5px;
}

@media (min-width: 768px) {
	.bb-resource-listing-wrapper .blog-filter {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 14px;
	}
	.bb-resource-listing-wrapper .blog-filter .filter {
    min-width: 340px;
		max-width: 400px;
	}
}

@media (max-width:991px) {
	.bb-resource-listing-wrapper .post-item {
		width:50%;
	}
}

@media (max-width:767px) {


	.bb-resource-listing-wrapper .post-listing {
		padding: 0 0 90px;
	} 

	.bb-resource-listing-wrapper .post-item {
		width:100%;
	}

}


.bb-resources-pagination {
	text-align: center;
	margin: 60px 0 20px;
}

.bb-resources-pagination .r-pagination__link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid transparent;
	border-radius: 30px;
	padding: 10.82px 13.845px;
	line-height: 1;
	text-align: center;
	color: var(--primary);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.bb-resources-pagination .r-pagination__link:hover {
	border-color: var(--secondary-background);
}

.bb-resources-pagination .r-pagination__link.is-active {
	border-color: var(--tertiary);
}












