
.ez-area-filter {
	background: #f4f0e8;
	border-radius: 18px;
	padding: 0px 0px;
	min-height: 680px;
}


.ez-area-filter h3 {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1.3em;
	color: #b58219;
	margin: 0 0 0px;
	padding-bottom: 5px;
}

.ez-filter-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ez-filter-group-title {
	width: 100%;
	background: transparent;
	text-align: left;
	font-size: 16px;
	font-weight: 800!important;
	color: #232323!important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: default;	
	border: 0!important;
	padding:0px 0px!important;
}
.ez-filter-group-title:hover, .ez-filter-group-title:focus, .ez-filter-group-title:focus-visible 
{ 	background: transparent!important; outline:none; }

.ez-filter-arrow {
	display: none;
}

.ez-filter-group-content {
	display: block;
}


.ez-filter-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 2px 10px;
	color: #232323;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
}

.ez-filter-item.active {
	background: #f1e8d6;
	color: #232323;
	border-radius: 8px;
	padding: 6px 10px;
}

.ez-filter-icon {
	width: 22px;
	display: inline-flex;
	justify-content: center;
	color: #b18435;
}

.ez-area-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.ez-area-count {
	font-size: 15px;
	color: #232322;
}

.ez-area-controls {
	display: flex;
	gap: 14px;
}

.ez-search-wrap {
	display:flex;
	flex-direction:row;
	gap:5px;
}

.ez-area-search,
select.ez-area-sort{
	height: 30px;
	border: 1px solid #e0dfde!important;
	border-radius: 5px;
	background: #f4f0e8;
	padding: 0 16px;
	font-size: 13px;
	width: 150px;	
}

.ez-area-search:focus-visible, .ez-area-search:focus, select.ez-area-sort:focus{ 
	border: 1px solid #e0dfde!important; 
	outline: 0;
}

.ez-area-search {
	width: 300px;
}

.ez-area-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.ez-area-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.ez-area-card-img {
	position: relative;
	aspect-ratio: 9 / 7;
	overflow: hidden;
}

.ez-area-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ez-area-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #0f1f33;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 7px 10px;
	border-radius: 5px;
}

.ez-area-card-body {
	padding: 20px;
}

.ez-area-card-body h3{
	margin-top: 0px;
	margin-bottom: 10px;
	font-size: 20px;
}

.ez-area-card-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #111827;
}

.ez-area-card-title .pin {
	color: #b18435;
}

.ez-area-card-body p {
	font-size: 15px;
	line-height: 1.55;
	color: #4b5563;
	margin: 0 0 20px;
}

.ez-area-card-more {
	color: #a87316;
	font-weight: 700;
	text-decoration: none;
}

.ez-area-tag-label{font-size:13px; font-weight:800; }

.ez-area-card-tags {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	border-top: 1px solid var(--ez-color-white);
	padding-top: 15px;
}

.ez-area-tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 2px;
}

.ez-area-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
}

.ez-area-tag-2 {
	background: var(--ez-color-primary);
	color: var(--ez-color-white);
}

.ez-area-tag-3 {
	background: var(--ez-color-gold);
	color: var(--ez-color-white);
}

@media (max-width: 1300px) {
	.ez-area-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.ez-explore-layout {
		grid-template-columns: 1fr;
	}

	.ez-area-filter {
		min-height: auto;
	}

	.ez-area-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}





@media (max-width: 767px) {
	.ez-area-topbar {
		flex-direction: column;
		align-items: stretch;
	}

	.ez-area-controls {
		flex-direction: column;
	}

	.ez-area-search {
		width: 100%;
	}

	.ez-area-grid {
		grid-template-columns: 1fr;
	}
	
	.ez-filter-group {
		border-top: 1px solid rgba(0,0,0,0.12);
		padding-top: 14px;
		margin-top: 14px;
	}

	.ez-filter-group-title {
		cursor: pointer;
		padding: 8px 0;
		display: flex!important;
		justify-content: space-between!important;
		width: 100%!important;
	}

	.ez-filter-arrow {
		display: inline-block;
		font-size: 20px;
		line-height: 1;
	}

	.ez-filter-group-content {
		display: none;
		padding-top: 8px;
	}

	.ez-filter-group.is-open .ez-filter-group-content {
		display: block;
	}

	.ez-filter-group.is-open .ez-filter-arrow {
		transform: rotate(45deg);
	}
	
}


/* home page css*/

.ez-area-grid-home {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.ez-area-grid-home h3 { margin-bottom: 0px; font-size: 17px; line-height: 1.3em}
.ez-area-grid-home .ez-area-card-body { 
	padding: 10px 15px 10px 20px; 
	display: flex;
	justify-content: space-between;
}
.ez-area-grid-home .ez-area-card-view {
	color:var(--ez-color-gold);
	font-size:13px;
	font-weight:800;
	min-width:85px;
}
.ez-area-grid-home .ez-area-card-view:hover {
	color:var(--ez-color-primary);
}


@media (max-width: 1200px) { 

.ez-area-grid-home {
	grid-template-columns: repeat(3, 1fr);
}

.ez-area-grid-home .ez-area-card:nth-child(4){
		display:none;
	}

}


@media (max-width: 767px) { 
.ez-area-grid-home {
	grid-template-columns: repeat(1, 1fr);
}

}


/* Living guide */
/* Living Guide card thumbnail - fixed 4:3 ratio */
.ez-living-card .ez-living-card-img {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto !important;
	min-height: 0 !important;
	overflow: hidden;
}

.ez-living-card .ez-living-card-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center right;
	display: block;
}

