.bmpc-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, 120px);
	gap: 12px;
	justify-content: start;
}

/* ----------------------------------------------------
   BMPC Property Template
----------------------------------------------------- */

.bmpc-single-property {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
}


/* ----------------------------------------------------
   Hero
----------------------------------------------------- */

.bmpc-hero {
	margin-bottom: 40px;
}

.bmpc-hero h1 {
	margin: 0;
	font-size: 2.8rem;
	line-height: 1.1;
}

.bmpc-listing-status {
	display: inline-block;
	margin: 15px 0;
	padding: 8px 16px;
	background: #0072bc;
	color: #fff;
	font-size: .85rem;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 30px;
}

.bmpc-hero p {
	margin: 8px 0;
	color: #666;
}

.bmpc-price {
	font-size: 2rem;
	font-weight: 700;
	color: #0072bc;
}


/* ----------------------------------------------------
   Media
----------------------------------------------------- */

.bmpc-featured-image img {
	display: block;
	width: 100%;
	border-radius: 12px;
}

.bmpc-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
	gap: 15px;
	margin-top: 20px;
}

.bmpc-gallery img {
	display: block;
	width: 100%;
	border-radius: 10px;
	transition: .25s ease;
}

.bmpc-gallery img:hover {
	transform: scale(1.03);
}

/* ----------------------------------------------------
   Layout
----------------------------------------------------- */

.bmpc-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	margin-top: 50px;
	align-items: start;
}

/* ----------------------------------------------------
   Main
----------------------------------------------------- */

.bmpc-main h2 {
	margin-top: 0;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	padding: 2rem 0 0.75rem;
	color: #222;
	letter-spacing: -0.02em;
}

.bmpc-main p {
	line-height: 1.8;
}




/* ----------------------------------------------------
   Sidebar
----------------------------------------------------- */

.bmpc-sidebar {
	position: sticky;
	top: 30px;
}


.bmpc-sidebar h2 {
	margin-top: 0;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
	padding: 2rem 0 0.75rem;
	color: #222;
	letter-spacing: -0.02em;
}

.bmpc-price {
	font-size: 2rem;
	font-weight: 700;
	color: #0072bc;
	line-height: 0px;
}


/* ----------------------------------------------------
   Lists
----------------------------------------------------- */

.bmpc-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bmpc-sidebar li {
	padding: 4px 0;
}

.bmpc-sidebar li:last-child {
	border-bottom: 1px;
}

/* ----------------------------------------------------
   Resources
----------------------------------------------------- */

.bmpc-main a {
	color: #0072bc;
	text-decoration: none;
	font-weight: 600;
}

.bmpc-main a:hover {
	text-decoration: underline;
}

/* ----------------------------------------------------
   Card
----------------------------------------------------- */

.bmpc-card {
	background:#fff;
	border:1px solid #eee;
	border-radius:10px;
	padding:20px;
	margin-bottom:25px;
}

/* ----------------------------------------------------
   Property Archives
----------------------------------------------------- */

.bmpc-property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.bmpc-property-archive {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.bmpc-property-image {
	display: block;
	position: relative;
}


.bmpc-status {

	position: absolute;

	top: 12px;
	left: 12px;

	background: #0072bc;
	color: #fff;

	padding: 6px 12px;

	border-radius: 20px;

	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;

	z-index: 10;

}


/* ----------------------------------------------------
   Responsive
----------------------------------------------------- */

@media (max-width: 900px) {

	.bmpc-content {
		grid-template-columns: 1fr;
	}

	.bmpc-sidebar {
		position: static;
	}

	.bmpc-hero h1 {
		font-size: 2rem;
	}

}




