/**
 * Elementor Units Widget Styles
 *
 * @package MBM
 */

/* Elementor widget wrapper fix */
.elementor-widget-mbm-units,
.elementor-widget-mbm-units .elementor-widget-container {
	width: 100%;
	max-width: 100%;
	overflow: visible;
}

.mbm-units-wrapper {
	width: 100%;
	max-width: 100%;
	overflow: visible;
	box-sizing: border-box;
}

.mbm-units-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	grid-auto-flow: row;
}

.mbm-unit-item {
	position: relative;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Hover effect only for non-style-2 items (Style 3, etc.) */
.mbm-unit-item:not(.mbm-unit-style-2):not(.mbm-unit-style-1):not(.mbm-unit-style-4):hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mbm-unit-thumbnail {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-top: 75%; /* 4:3 aspect ratio */
	background: #f5f5f5;
}

/*
 * Classic fill box — object-fit / object-position work on a 100%x100% img.
 * Image "padding" (Elementor) uses box-sizing:border-box on the img itself:
 * content shrinks inward, thumbnail background shows around all 4 sides.
 */
.mbm-unit-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.mbm-hover-effect-yes .mbm-unit-item:hover .mbm-unit-thumbnail img {
	transform: scale(1.05);
}

.mbm-hover-effect-no .mbm-unit-item:hover .mbm-unit-thumbnail img {
	transform: none;
}

.mbm-unit-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e0e0e0;
}

.mbm-unit-placeholder-icon {
	font-size: 48px;
	opacity: 0.5;
}

.mbm-unit-status {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	z-index: 2;
}

.mbm-unit-status-available {
	background: #4caf50;
	color: #fff;
}

.mbm-unit-status-reserved {
	background: #ff9800;
	color: #fff;
}

.mbm-unit-status-sold {
	background: #9e9e9e;
	color: #fff;
}

.mbm-unit-content {
	padding: 20px;
}

.mbm-unit-project,
.mbm-unit-lamella,
.mbm-unit-floors {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 14px;
	color: #666;
}

.mbm-unit-project i,
.mbm-unit-lamella i,
.mbm-unit-floors i {
	margin-right: 8px;
	font-size: 16px;
}

.mbm-unit-title {
	margin: 12px 0 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.mbm-unit-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mbm-unit-title a:hover {
	color: #0073aa;
}

.mbm-unit-type {
	margin-top: 8px;
	font-size: 14px;
	color: #888;
}

/* Style 1: Split card design - Image top, Content bottom */
.mbm-unit-item.mbm-unit-style-1 {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mbm-unit-item.mbm-unit-style-1.mbm-unit-item-link {
	text-decoration: none;
	color: inherit;
}

.mbm-unit-item.mbm-unit-style-1.mbm-unit-item-link:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Top Section: Featured Image */
.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 75%; /* 4:3 aspect ratio */
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail img {
	transition: transform 0.4s ease;
}

.mbm-hover-effect-yes .mbm-unit-item.mbm-unit-style-1.mbm-unit-item-link:hover .mbm-unit-thumbnail img {
	transform: scale(1.08);
}

.mbm-hover-effect-no .mbm-unit-item.mbm-unit-style-1.mbm-unit-item-link:hover .mbm-unit-thumbnail img {
	transform: none;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail .mbm-unit-placeholder {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail .mbm-unit-status {
	position: absolute;
	top: 20px;
	right: 20px;
	margin: 0;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail .mbm-unit-status.mbm-unit-status-available {
	background: rgba(76, 175, 80, 0.85);
	color: #fff;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail .mbm-unit-status.mbm-unit-status-reserved {
	background: rgba(255, 152, 0, 0.85);
	color: #fff;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail .mbm-unit-status.mbm-unit-status-sold {
	background: rgba(158, 158, 158, 0.85);
	color: #fff;
}

/* Bottom Section: Unit Content */
.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	background: #fff;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-location {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
	line-height: 1.5;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-location .mbm-separator {
	color: #999;
	margin: 0 4px;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-title-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 12px;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-title {
	margin: 0;
	color: #1a1a1a;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	flex: 1;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-title span {
	color: inherit;
}

.mbm-unit-item.mbm-unit-style-1.mbm-unit-item-link:hover .mbm-unit-content .mbm-unit-title span {
	color: #0073aa;
	transition: color 0.3s ease;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-area-value {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
	flex-shrink: 0;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-type-area-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	margin-top: 4px;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-type {
	font-size: 15px;
	color: #666;
	font-weight: 500;
}

.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-area-label {
	font-size: 15px;
	color: #666;
	font-weight: 500;
}

/* Style 2: Based on Spaciaz project-style-2 */
.mbm-unit-item.mbm-unit-style-2 {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
}

.mbm-unit-item.mbm-unit-style-2.mbm-unit-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbm-unit-item.mbm-unit-style-2.mbm-unit-item-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mbm-unit-item.mbm-unit-style-2 {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail {
	margin-bottom: 0;
	height: 0;
	padding-top: 122%;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	z-index: 1;
}

/* Overlay Position: Bottom (default) */
.mbm-overlay-position-bottom .mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail:after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

/* Overlay Position: Top */
.mbm-overlay-position-top .mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail:after {
	background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

/* Overlay Position: Left */
.mbm-overlay-position-left .mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail:after {
	background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

/* Overlay Position: Right */
.mbm-overlay-position-right .mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail:after {
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

/* Overlay Position: Center */
.mbm-overlay-position-center .mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail:after {
	background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

/* Overlay styles are generated inline via PHP based on position and color settings */

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail img {
	transition: opacity 0.35s, transform 0.45s, filter 0.35s;
}

/* Hover effect enabled - default state (image shifted left and zoomed) */
.mbm-hover-effect-yes .mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail img {
	transform: translate3d(-6.66%, 0, 0) scale(1.2);
	-webkit-transform: translate3d(-6.66%, 0, 0) scale(1.2);
}

/* Hover effect disabled - normal state (no transform) */
.mbm-hover-effect-no .mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail img {
	transform: none;
	-webkit-transform: none;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail .mbm-unit-placeholder {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail .mbm-unit-placeholder:before {
	content: "🏠";
	font-size: 64px;
	opacity: 0.3;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
	z-index: 3;
	color: #fff;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content a {
	color: #fff;
	transition: all 0.3s ease;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content a:hover {
	color: var(--primary, #0073aa);
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-status {
	margin-bottom: auto;
	position: static;
	display: inline-block;
	width: fit-content;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-status.mbm-unit-status-available {
	background: rgba(76, 175, 80, 0.85);
	color: #fff;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-status.mbm-unit-status-reserved {
	background: rgba(255, 152, 0, 0.85);
	color: #fff;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-status.mbm-unit-status-sold {
	background: rgba(158, 158, 158, 0.85);
	color: #fff;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-location {
	margin-top: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 20px;
	color: #fff;
	font-size: 14px;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-location .mbm-separator {
	opacity: 0.6;
	margin: 0 5px;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-title-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 0;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-title {
	margin-bottom: 0;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	flex: 1;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-title span {
	color: #fff;
}

.mbm-unit-item.mbm-unit-style-2.mbm-unit-item-link .mbm-unit-content .mbm-unit-title span {
	transition: color 0.3s ease;
}

.mbm-unit-item.mbm-unit-style-2.mbm-unit-item-link:hover .mbm-unit-content .mbm-unit-title span {
	color: var(--primary, #0073aa);
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-area-value {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	flex-shrink: 0;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-type-area-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 20px;
	margin-top: 8px;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-type {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	flex: 1;
}

.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content .mbm-unit-area-label {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.8);
	flex-shrink: 0;
	text-align: right;
}

/* Hover effect enabled - on hover (image moves to center and stays zoomed) */
.mbm-hover-effect-yes .mbm-unit-item.mbm-unit-style-2:hover .mbm-unit-thumbnail img {
	transform: translate3d(0, 0, 0) scale(1.2);
	-webkit-transform: translate3d(0, 0, 0) scale(1.2);
}

/* Hover effect disabled - no hover transform */
.mbm-hover-effect-no .mbm-unit-item.mbm-unit-style-2:hover .mbm-unit-thumbnail img {
	transform: none;
	-webkit-transform: none;
}

/* Style 3: Content first, then thumbnail */
.mbm-unit-style-3 {
	display: flex;
	flex-direction: column;
}

.mbm-unit-style-3 .mbm-unit-content {
	order: 1;
}

.mbm-unit-style-3 .mbm-unit-thumbnail {
	order: 2;
}

.mbm-unit-style-3 .mbm-unit-status {
	top: 15px;
	right: 15px;
}

/* Style 4: Image top, content panel with meta rows */
.mbm-unit-item.mbm-unit-style-4 {
	display: flex;
	flex-direction: column;
	background: transparent;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(15, 30, 54, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbm-unit-item.mbm-unit-style-4.mbm-unit-item-link {
	text-decoration: none;
	color: inherit;
}

.mbm-unit-item.mbm-unit-style-4.mbm-unit-item-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(15, 30, 54, 0.12);
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-thumbnail {
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 0; /* override base padding-top aspect-ratio trick */
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #e5e7eb;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-thumbnail::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-thumbnail img,
.mbm-unit-item.mbm-unit-style-4 .mbm-unit-thumbnail .mbm-unit-placeholder {
	display: block;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-thumbnail .mbm-unit-placeholder {
	background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	box-shadow: 0 4px 14px rgba(15, 30, 54, 0.12);
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-badge.mbm-unit-status-available {
	background-color: #ffffff;
	color: #0f1e36;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-badge.mbm-unit-status-sold {
	background-color: #6b7280;
	color: #ffffff;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-badge.mbm-unit-status-reserved {
	background-color: #f59e0b;
	color: #ffffff;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-content {
	position: relative;
	background-color: #f4f1ec;
	padding: 28px 24px 24px;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-content::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 0;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-content-inner {
	position: relative;
	z-index: 1;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-title {
	margin: 0 0 8px;
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.15;
	color: #0f1e36;
	letter-spacing: -0.02em;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-subtitle {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.4;
	color: #6b7280;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-meta {
	margin: 0;
	padding: 0;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(15, 30, 54, 0.12);
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-meta-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-meta dt,
.mbm-unit-item.mbm-unit-style-4 .mbm-unit-meta dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.4;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-meta dt {
	font-weight: 600;
	color: #0f1e36;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-meta dd {
	font-weight: 400;
	color: #6b7280;
	text-align: right;
}

.mbm-hover-effect-yes .mbm-unit-item.mbm-unit-style-4.mbm-unit-item-link:hover .mbm-unit-thumbnail img {
	transform: scale(1.04);
}

.mbm-hover-effect-no .mbm-unit-item.mbm-unit-style-4.mbm-unit-item-link:hover .mbm-unit-thumbnail img {
	transform: none;
}

.mbm-unit-item.mbm-unit-style-4 .mbm-unit-thumbnail img {
	transition: transform 0.45s ease;
}

/* Type Listing floor inventory table */
.mbm-listing-floor-inventory-widget,
.mbm-listing-floor-inventory-table {
	width: 100%;
}

.mbm-listing-floor-inventory-table {
	border-collapse: collapse;
}

.mbm-listing-floor-inventory-table th,
.mbm-listing-floor-inventory-table td {
	padding: 14px 0;
	border-bottom: 1px solid rgba(15, 30, 54, 0.12);
	text-align: left;
	vertical-align: middle;
	color: #6b7280;
}

.mbm-listing-floor-inventory-table thead th {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: transparent;
	color: #0f1e36;
	border-bottom-color: rgba(15, 30, 54, 0.18);
}

.mbm-listing-floor-inventory-table tbody tr:first-child td {
	background: transparent;
}

.mbm-listing-floor-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	font-size: inherit;
	font-weight: 500;
	line-height: 1.2;
}

.mbm-listing-floor-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	background: currentColor;
}

.mbm-listing-floor-status-available {
	background: transparent;
	color: #2f9e44;
}

.mbm-listing-floor-status-reserved {
	background: transparent;
	color: #c4922a;
}

.mbm-listing-floor-status-sold {
	background: transparent;
	color: #9aa0a6;
}

.mbm-listing-floor-inventory-empty {
	margin: 0;
	padding: 12px 0;
	color: #6b7280;
}

/* Frontend Filters */
.mbm-units-filter {
	margin-bottom: 40px;
}

.mbm-units-form-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-end;
}

.mbm-units-form-filter select:not([size]):not([multiple]) {
	background-position: calc(100% - 20px) center;
	min-width: 150px;
}

.mbm-units-form-filter .mbm-filter-wrap-button button {
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	background-color: var(--accent, #0073aa);
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.mbm-units-form-filter .mbm-filter-wrap-button button:hover {
	background-color: var(--accent-hover, #005a87);
}

.mbm-units-form-filter .mbm-filter-title {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 0;
	width: 100%;
}

/* Filter Style 1 */
.mbm-units-form-filter.mbm-units-filter-style-1 {
	border-bottom: 1px solid var(--border, #e0e0e0);
	padding-bottom: 55px;
	margin-bottom: 55px;
}

.mbm-units-form-filter.mbm-units-filter-style-1 select:not([size]):not([multiple]) {
	width: auto;
	flex: 1;
}

.mbm-units-form-filter.mbm-units-filter-style-1 .mbm-filter-title {
	display: none;
}

/* Filter Style 2 */
.mbm-units-form-filter.mbm-units-filter-style-2 {
	flex-direction: column;
	background-color: var(--background_light, #f5f5f5);
	border-radius: 30px;
	padding: 50px;
	gap: 20px;
}

.mbm-units-form-filter.mbm-units-filter-style-2 select:not([size]):not([multiple]) {
	width: 100%;
	background-color: #fff;
}

.mbm-units-form-filter.mbm-units-filter-style-2 .mbm-filter-wrap-button button {
	width: 100%;
}

.mbm-units-form-filter.mbm-units-filter-style-2 .mbm-filter-title {
	display: block;
}

/* Status Filter Checkboxes */
.mbm-filter-status-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mbm-filter-status-label {
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--text-color, #333);
}

.mbm-filter-status-checkboxes {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.mbm-filter-status-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 6px;
	background-color: #fff;
	border: 1px solid var(--border, #e0e0e0);
	transition: all 0.2s ease;
}

.mbm-filter-status-checkbox:hover {
	border-color: var(--accent, #0073aa);
	background-color: rgba(0, 115, 170, 0.05);
}

.mbm-filter-status-checkbox input[type="checkbox"] {
	margin: 0;
	cursor: pointer;
	width: 18px;
	height: 18px;
	accent-color: var(--accent, #0073aa);
}

.mbm-filter-status-checkbox input[type="checkbox"]:checked + span {
	font-weight: 600;
	color: var(--accent, #0073aa);
}

.mbm-filter-status-checkbox span {
	font-size: 14px;
	color: var(--text-color, #333);
	user-select: none;
}

.mbm-units-form-filter.mbm-units-filter-style-1 .mbm-filter-status-group {
	flex: 1;
}

.mbm-units-form-filter.mbm-units-filter-style-2 .mbm-filter-status-group {
	width: 100%;
}

/* Modern live filter — horizontal scroll on mobile, grid on desktop */
.mbm-units-filter--modern {
	margin-bottom: 20px;
}

.mbm-filter-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.mbm-filter-reset {
	appearance: none;
	border: none;
	background: transparent;
	cursor: pointer;
	font: inherit;
	padding: 8px 12px;
	color: var(--accent, #0073aa);
	font-weight: 600;
	font-size: 14px;
	flex-shrink: 0;
}

.mbm-filter-results-count {
	margin: 0;
	font-size: 14px;
	color: #5b6472;
	font-weight: 500;
}

.mbm-units-form-filter.mbm-units-filter-modern {
	display: block;
}

.mbm-filter-panel {
	background: transparent;
}

.mbm-filter-fields {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: 10px;
	padding: 8px 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
}

.mbm-filter-fields::-webkit-scrollbar {
	height: 6px;
}

.mbm-filter-fields::-webkit-scrollbar-thumb {
	background: rgba(15, 30, 54, 0.18);
	border-radius: 999px;
}

.mbm-filter-field {
	flex: 0 0 auto;
	min-width: min(220px, 78vw);
	scroll-snap-align: start;
}

.mbm-filter-field--area {
	flex: 0 0 auto;
	min-width: min(260px, 85vw);
}

.mbm-filter-field-label {
	display: block;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 600;
	color: #5b6472;
	white-space: nowrap;
}

.mbm-filter-field select {
	width: 100%;
	min-height: 36px;
	padding: 6px 28px 6px 10px;
	border: 1px solid rgba(15, 30, 54, 0.14);
	border-radius: 8px;
	background-color: #fff;
	font-size: 13px;
	color: #0f1e36;
}

.mbm-area-slider {
	--mbm-area-thumb-size: 22px;
	--mbm-area-track-height: 6px;
	position: relative;
	padding-top: 4px;
	min-width: 220px;
}

.mbm-area-slider-track {
	position: relative;
	height: var(--mbm-area-track-height);
	border-radius: 999px;
	background: #e8ebf0;
	margin: calc((var(--mbm-area-thumb-size) - var(--mbm-area-track-height)) / 2 + 8px) calc(var(--mbm-area-thumb-size) / 2) calc((var(--mbm-area-thumb-size) - var(--mbm-area-track-height)) / 2 + 6px);
}

.mbm-area-slider-range {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	border-radius: 999px;
	background: var(--accent, #0073aa);
}

.mbm-area-slider-input {
	position: absolute;
	top: 8px;
	left: calc(var(--mbm-area-thumb-size) / 2);
	right: calc(var(--mbm-area-thumb-size) / 2);
	width: auto;
	height: var(--mbm-area-thumb-size);
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: transparent;
	pointer-events: none;
}

.mbm-area-slider-input::-webkit-slider-runnable-track {
	height: var(--mbm-area-track-height);
	background: transparent;
	border: none;
}

.mbm-area-slider-input::-moz-range-track {
	height: var(--mbm-area-track-height);
	background: transparent;
	border: none;
}

.mbm-area-slider-input::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: var(--mbm-area-thumb-size);
	height: var(--mbm-area-thumb-size);
	margin-top: calc((var(--mbm-area-track-height) - var(--mbm-area-thumb-size)) / 2);
	border-radius: 50%;
	border: 2px solid #fff;
	background: var(--accent, #0073aa);
	box-shadow: 0 2px 8px rgba(15, 30, 54, 0.2);
	pointer-events: auto;
	cursor: pointer;
}

.mbm-area-slider-input::-moz-range-thumb {
	width: var(--mbm-area-thumb-size);
	height: var(--mbm-area-thumb-size);
	border-radius: 50%;
	border: 2px solid #fff;
	background: var(--accent, #0073aa);
	box-shadow: 0 2px 8px rgba(15, 30, 54, 0.2);
	pointer-events: auto;
	cursor: pointer;
}

.mbm-area-slider-values {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #0f1e36;
	white-space: nowrap;
}

.mbm-area-unit {
	font-size: 14px;
	font-weight: 600;
	color: #5b6472;
}

@media (min-width: 1025px) {
	.mbm-units-filter--modern {
		margin-bottom: 28px;
	}

	.mbm-filter-bar {
		margin-bottom: 14px;
	}

	.mbm-filter-panel {
		border: 1px solid rgba(15, 30, 54, 0.08);
		border-radius: 16px;
		background: #f8f9fb;
	}

	.mbm-filter-fields {
		display: flex;
		flex-wrap: nowrap;
		align-items: flex-end;
		gap: 16px;
		padding: 20px;
		overflow: visible;
		scroll-snap-type: none;
		width: 100%;
	}

	.mbm-filter-field,
	.mbm-filter-field--sort,
	.mbm-filter-field--area {
		flex: 1 1 0;
		min-width: 0;
		max-width: none;
	}

	.mbm-filter-field-label {
		margin-bottom: 8px;
		font-size: 13px;
	}

	.mbm-filter-field select {
		min-height: 44px;
		padding: 10px 36px 10px 14px;
		border-radius: 10px;
		font-size: 14px;
	}

	.mbm-area-slider {
		padding-top: 4px;
		min-width: 0;
		width: 100%;
	}

	.mbm-area-slider-track {
		margin: calc((var(--mbm-area-thumb-size) - var(--mbm-area-track-height)) / 2 + 8px) calc(var(--mbm-area-thumb-size) / 2) calc((var(--mbm-area-thumb-size) - var(--mbm-area-track-height)) / 2 + 6px);
	}

	.mbm-area-slider-input {
		top: 8px;
	}

	.mbm-area-slider-values {
		font-size: 14px;
	}
}

/* Loading State */
.mbm-units-wrapper.mbm-loading {
	position: relative;
	opacity: 0.6;
	pointer-events: none;
}

.mbm-units-wrapper.mbm-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--accent, #0073aa);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 999;
}

@keyframes spin {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Projects Widget Styles */
.mbm-projects-wrapper {
	width: 100%;
	max-width: 100%;
	overflow: visible;
	box-sizing: border-box;
}

.mbm-projects-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* Project Style 1: Based on Spaciaz project-style-3 */
.mbm-project-item.mbm-project-style-1 {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	height: 500px;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-thumbnail {
	margin-bottom: 0;
	padding-top: 0;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate3d(-6.66%, 0, 0) scale(1.2);
	-webkit-transform: translate3d(-6.66%, 0, 0) scale(1.2);
	transition: opacity 0.35s, transform 0.45s, filter 0.35s;
}

.mbm-project-item.mbm-project-style-1:hover .mbm-project-thumbnail img {
	transform: translate3d(0, 0, 0) scale(1.2);
	-webkit-transform: translate3d(0, 0, 0) scale(1.2);
}

.mbm-project-item.mbm-project-style-1 .mbm-project-thumbnail .mbm-project-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-content {
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 10px;
	width: clamp(270px, 35vmax, 400px);
	height: calc(100% - 20px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px clamp(15px, 3.5vmax, 40px);
	z-index: 3;
	color: #fff;
	transition: all 0.3s ease;
	background: rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 30px;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-content a {
	color: #fff;
	transition: all 0.3s ease;
	text-decoration: none;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-content a:hover {
	color: var(--primary, #0073aa);
}

.mbm-project-item.mbm-project-style-1 .mbm-project-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 4;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background-color: rgba(139, 69, 19, 0.9);
	color: #fff;
	line-height: 1.4;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-stats {
	margin-bottom: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-bottom: 30px;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-stat-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-stat-label {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.8;
	font-weight: 600;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-stat-value {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	/* To manually change the color of "Ukupno stanova" value, add: color: #your-color; */
	/* Default color is white (inherited from parent) */
}

.mbm-project-item.mbm-project-style-1 .mbm-project-stat-value.mbm-stat-available {
	/* To manually change the color of "Slobodno" value, change the color below: */
	color: #4caf50; /* Current: green (#4caf50) */
}

.mbm-project-item.mbm-project-style-1 .mbm-project-stat-value.mbm-stat-occupied {
	color: #ff9800;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-location {
	margin-top: 30px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.9;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-location svg {
	width: 16px;
	height: 16px;
	opacity: 0.8;
	flex-shrink: 0;
}

/* Hover effect removed - border color no longer changes on hover */
/* To manually change the border color, edit the .mbm-project-item.mbm-project-style-1 .mbm-project-location rule above */
/* .mbm-project-item.mbm-project-style-1:hover .mbm-project-location {
	border-color: var(--accent, rgba(255, 255, 255, 0.3));
} */

.mbm-project-item.mbm-project-style-1:hover .mbm-project-location svg {
	color: var(--accent, #fff);
	opacity: 1;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-excerpt {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.9;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 20px;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-title {
	margin-bottom: 0;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-title a {
	background-position: 0 calc(100% - 0em);
	background-size: 0 2px;
	transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	background-repeat: no-repeat;
	text-decoration: none;
	position: relative;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-title a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.mbm-project-item.mbm-project-style-1 .mbm-project-title a:hover::after {
	width: 100%;
}

/* Hover effect removed - text color and background no longer change on hover */
/* To manually change colors, edit the base .mbm-project-item.mbm-project-style-1 .mbm-project-content rule above */
/* .mbm-project-item.mbm-project-style-1:hover .mbm-project-content {
	color: var(--accent, #0073aa);
	background: var(--primary, #0073aa);
} */

.mbm-project-item.mbm-project-style-1:hover .mbm-project-content a {
	color: var(--accent, #fff);
	transition: all 0.3s ease;
}

.mbm-project-item.mbm-project-style-1:hover .mbm-project-excerpt {
	border-color: var(--accent, rgba(255, 255, 255, 0.3));
}

/* No Results */
.mbm-no-units {
	text-align: center;
	padding: 40px 20px;
	color: #666;
	font-size: 16px;
}

/* Pagination */
.mbm-units-pagination {
	margin-top: 40px;
	text-align: center;
}

.mbm-units-pagination .page-numbers {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mbm-units-pagination .page-numbers li {
	margin: 0;
}

.mbm-units-pagination .page-numbers a,
.mbm-units-pagination .page-numbers span {
	display: inline-block;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
}

.mbm-units-pagination .page-numbers a:hover {
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

.mbm-units-pagination .page-numbers .current {
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

/* Responsive - Note: Elementor responsive controls override these via inline styles */
/* These are fallbacks only */
@media (max-width: 1024px) {
	.mbm-units-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	/* Fix Elementor widget wrapper on mobile */
	.elementor-widget-mbm-units,
	.elementor-widget-mbm-units .elementor-widget-container {
		width: 100% !important;
		max-width: 100% !important;
		overflow: visible !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box !important;
	}
	
	.mbm-units-wrapper {
		width: 100% !important;
		max-width: 100% !important;
		overflow: visible !important;
		padding: 0 !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}
	
	.mbm-units-grid {
		grid-template-columns: 1fr !important;
		gap: 20px;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box !important;
	}
	
	.mbm-unit-item {
		max-width: 100% !important;
		width: 100% !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}
	
	.mbm-unit-item.mbm-unit-style-2 {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	.mbm-unit-item.mbm-unit-style-2 .mbm-unit-thumbnail {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	.mbm-unit-item.mbm-unit-style-2 .mbm-unit-content {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	/* Style 1 responsive */
	.mbm-unit-item.mbm-unit-style-1 {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.mbm-unit-item.mbm-unit-style-1 .mbm-unit-thumbnail {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content {
		padding: 20px !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-title {
		font-size: 20px !important;
	}

	.mbm-unit-item.mbm-unit-style-1 .mbm-unit-content .mbm-unit-area-value {
		font-size: 20px !important;
	}

	/* Projects responsive */
	.mbm-projects-wrapper {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.mbm-projects-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.mbm-project-item.mbm-project-style-1 {
		height: auto !important;
		display: flex !important;
		flex-direction: column !important;
		border-radius: 30px !important;
		overflow: hidden !important;
		position: relative !important;
		min-height: 600px !important;
	}

	/* Image as background for entire card */
	.mbm-project-item.mbm-project-style-1 .mbm-project-thumbnail {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 1 !important;
		border-radius: 0 !important;
	}

	.mbm-project-item.mbm-project-style-1 .mbm-project-thumbnail img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		transform: none !important;
		-webkit-transform: none !important;
	}

	.mbm-project-item.mbm-project-style-1:hover .mbm-project-thumbnail img {
		transform: scale(1.05) !important;
		-webkit-transform: scale(1.05) !important;
	}

	/* Top half: Empty space (image visible through) */
	.mbm-project-item.mbm-project-style-1::before {
		content: '' !important;
		display: block !important;
		width: 100% !important;
		height: 50% !important;
		min-height: 300px !important;
		z-index: 2 !important;
		position: relative !important;
		pointer-events: none !important;
	}

	/* Bottom half: Content overlay with rounded bottom corners */
	.mbm-project-item.mbm-project-style-1 .mbm-project-content {
		position: relative !important;
		top: auto !important;
		bottom: auto !important;
		right: auto !important;
		left: auto !important;
		width: 100% !important;
		height: auto !important;
		min-height: 50% !important;
		border-radius: 0 0 30px 30px !important;
		padding: 40px 30px 25px 30px !important;
		background: rgba(0, 0, 0, 0.02) !important;
		border: 1px solid rgba(255, 255, 255, 0.1) !important;
		border-top: none !important;
		backdrop-filter: blur(30px) !important;
		-webkit-backdrop-filter: blur(30px) !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		z-index: 2 !important;
	}

	/* Hover effect removed - background color no longer changes on hover */
	/* To manually change the background color, edit the .mbm-project-item.mbm-project-style-1 .mbm-project-content rule above */
	/* .mbm-project-item.mbm-project-style-1:hover .mbm-project-content {
		background: var(--primary, #0073aa) !important;
	} */

	.mbm-project-item.mbm-project-style-1 .mbm-project-stats {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 15px !important;
		margin-bottom: 20px !important;
		margin-top: 0 !important;
	}

	.mbm-project-item.mbm-project-style-1 .mbm-project-title {
		font-size: 24px !important;
		margin-top: 10px !important;
		margin-bottom: 0 !important;
	}

	.mbm-project-item.mbm-project-style-1 .mbm-project-location {
		margin-top: 20px !important;
		margin-bottom: 15px !important;
	}

	.mbm-project-item.mbm-project-style-1 .mbm-project-excerpt {
		margin-top: 15px !important;
		margin-bottom: 15px !important;
	}

	.mbm-project-item.mbm-project-style-1 .mbm-project-badge {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		margin-bottom: 20px !important;
	}
}

