.loop-content {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(max(30%,350px),1fr));
	gap: 60px 32px;
}

.loop-content .epl-listing-post {
    all: unset;
    box-sizing: border-box;
	height: 100%;
}
.epl-property-blog-entry-wrapper {
    display: flex;
    flex-direction: column;
	border: 0;
	box-shadow: none !important;
	margin: 0 !important;
	background-color: #ffffff;
	overflow: clip;
	border-radius: 6px;
	height: 100%;
}

.epl-property-blog-entry-wrapper > div {
    float: none !important;
    width: 100% !important;
    display: block;
}
.epl-property-blog .property-box.property-content{
	padding: 16px !important;
	display: flex;
	flex-direction: column;
}
.property-box.propertuy-content div:empty{
	display: none;
}
.epl-property-blog .property-box.property-featured-image-wrapper img{
	width: 100%;
	aspect-ratio: 1.55;
	object-fit: cover;
}
.epl-property-blog .property-box.property-featured-image-wrapper .epl-stickers-wrapper{
	top: auto;
	left: 8px;
	bottom: 8px;
	display: flex;
	gap: 8px;
}
.epl-property-blog .property-box.property-featured-image-wrapper .epl-stickers-wrapper .status-sticker{
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	padding: 4px 8px !important;
	background-color: var(--navy-color);
	color: #ffffff;
	border-radius: 4px;
}
/* .epl-property-blog .property-box.property-content .price, */
.epl-property-blog .property-box.property-content .entry-title{
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--secondary-fonts);
	color: var(--navy-color);
}
/* .epl-property-blog .property-box.property-content .price{
	display: block;
	order: -1;
} */
.property-content .property-address{
	color: #000;
	font-size: 15px;
	font-weight: 400;
}
.property-content .property-feature-icons{
	color: #000000;
	font-size: 14px;
	font-weight: 700;
}
.property-content .property-address span[class*="item-"]:not(.item-street,.item-suburb){
	display: none;
}

/*Tab Heading CSS*/
.tab-heading-wrapper{
	display: flex;
	align-items: center;
	padding: 0 20px;
}
.tab-heading-listing {
    margin: 0px auto 60px;
    padding: 2px;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    gap: 2px;
}

.tab-heading-listing .tab-heading {
    font-size: 16px;
    line-height: 1.6;
    padding: 7px 10px;
	width: 122px;
	text-align: center;
    border-radius: 5px;
    border: 0;
    background: #ffffff;
	transition: var(--default-transition);
	font-family: inherit;
	color:var(--primary-color);
}
.tab-heading-listing .tab-heading:hover{
	background-color: color-mix(in srgb,var(--navy-color), transparent 80%);
}
.tab-heading-listing .tab-heading.active{
	background-color: var(--navy-color);
	color: #ffffff;
}
@media screen and (max-width: 767px){
	.tab-heading-wrapper{
		padding: 0;
	}
	.tab-heading-listing{
		overflow: auto;
	}
	.tab-heading-listing .tab-heading {
		flex: 1 0 auto;
	}
}