/* Housing Vacancy — banner + gallery thumbnails (Fusion / [housing_vacancy_banner]) */

.hv-property-banner {
	--hvbs-radius: 18px;
	--hvbs-pink: #e8488e;
	--hvbs-pink-soft: #fce3ef;
	--hvbs-green: #0fd876;
	--hvbs-green-soft: #d8f5e4;
	--hvbs-text: #1a1a1a;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.hv-property-banner__meta {
	margin-bottom: 1.25rem;
}

.hv-property-banner__heading {
	margin: 0 0 0.75rem;
	font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--hvbs-text);
	line-height: 1.2;
}

#wrapper .hv-property-banner .hv-property-banner__title {
    margin: 0;
    font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    text-transform: none;
    font-family: Juturu, ui-sans-serif, system-ui, sans-serif;
	padding-bottom:50px;
}

.hv-property-banner__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem 1.5rem;
}

.hv-property-banner__intro {
	flex: 1 1 16rem;
	max-width: 42rem;
	margin: 0;
	font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #333;
}

.hv-property-banner__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
	flex-shrink: 0;
}

.hv-property-banner__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.hv-property-banner__badge--vacancy {
	background: #FB809C1A;
	color: #FB809C;
	border: 0.5px solid #FB809C;
  }

  .hv-property-banner__badge--location {
	background: var(--hvbs-green-soft);
	color: #0FD876;
	border: 0.5px solid #0FD876;
  }

.hv-property-banner__badge-icon {
	display: flex;
	line-height: 0;
	flex-shrink: 0;
}

.hv-property-banner__badge--location .hv-property-banner__badge-icon {
	color: var(--hvbs-green);
}

.hv-property-banner__stage {
	position: relative;
	width: 100%;
}

.hv-property-banner__main-outer {
	position: relative;
	border-radius: var(--hvbs-radius);
	overflow: hidden;
}

.hv-property-banner__main-pad {
	padding: 20px;
	box-sizing: border-box;

}


.hv-property-banner__main-inner {
	position: relative;
	border-radius: calc(var(--hvbs-radius) - 6px);
	overflow: hidden;
	background: #e8eef0;
	min-height: min(52vh, 420px);
	contain: paint;
}

.hv-property-banner__main-outer:hover .hv-property-banner__main-inner,
.hv-property-banner__main-outer:focus-within .hv-property-banner__main-inner {
	border-radius: var(--hvbs-radius);
}

.hv-property-banner__main-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: min(52vh, 420px);
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transform-origin: center center;
	transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.hv-property-banner__main-outer:hover .hv-property-banner__main-img,
.hv-property-banner__main-outer:focus-within .hv-property-banner__main-img {
	transform: scale(1.06);
}

.hv-property-banner__tags {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	max-width: calc(100% - 12rem);
	pointer-events: none;
}

.hv-property-banner__tag {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 999px;
	font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	background: #0003;
	backdrop-filter: blur(5px);
  }

.hv-property-banner__thumbs {
	display: flex;
	align-items: stretch;
	gap: 0.5rem;
}

.hv-property-banner__thumbs-wrap {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Horizontal strip: ~3 thumbs visible, drag / swipe to see the rest */
.hv-property-banner__thumbs--scroll {
	max-width: min(calc(100vw - 2.5rem), calc(3 * 210px + 2 * 0.5rem));
	overflow-x: auto;
	overflow-y: hidden;
	flex-wrap: nowrap;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	touch-action: pan-x;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.45) rgba(0, 0, 0, 0.2);
}

.hv-property-banner__thumbs--scroll.is-paused {
	scroll-behavior: auto;
}

.hv-property-banner__thumb-nav {
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.hv-property-banner__thumb-nav:hover,
.hv-property-banner__thumb-nav:focus-visible {
	background: rgba(0, 0, 0, 0.75);
	outline: none;
}

.hv-property-banner__thumb-nav:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.hv-property-banner__thumbs--scroll::-webkit-scrollbar {
	height: 6px;
}

.hv-property-banner__thumbs--scroll::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 999px;
}

.hv-property-banner__thumbs--scroll::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.4);
	border-radius: 999px;
}

.hv-property-banner__thumb {
	position: relative;
	flex: 0 0 auto;
	width: clamp(4.5rem, 14vw, 7.5rem);
	max-width: 210px;
	aspect-ratio: 4 / 3;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.95);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: #111;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	height: 175px;
	width: 210px;
}

.hv-property-banner__thumb:hover,
.hv-property-banner__thumb:focus-visible {
	border-color: var(--hvbs-green);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	outline: none;
}

.hv-property-banner__thumb.is-active {
	border-color: var(--hvbs-green);
	box-shadow: 0 0 0 2px rgba(15, 216, 118, 0.45);
}

.hv-property-banner__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hv-property-banner__thumb--more .hv-property-banner__thumb-more-label {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem;
	font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(0.65rem, 2vw, 0.8125rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	background: rgba(0, 0, 0, 0.55);
}



@media (prefers-reduced-motion: reduce) {
	.hv-property-banner__main-pad,
	.hv-property-banner__main-inner,
	.hv-property-banner__main-img,
	.hv-property-banner__thumb {
		transition-duration: 0.01ms !important;
	}

	.hv-property-banner__main-outer:hover .hv-property-banner__main-img,
	.hv-property-banner__main-outer:focus-within .hv-property-banner__main-img {
		transform: none;
	}
}
@media (max-width: 1200px) {
.hv-property-banner__thumb {
    height: auto;
	}
	 .hv-property-banner__tags {
        max-width: calc(100% - 1rem);
        bottom: 12.5rem;
    }
}
@media (max-width: 998px) {
	#wrapper .hv-property-banner .hv-property-banner__title {
    font-size: 50px !important;
    padding-bottom: 30px;
}

   

}
@media (max-width: 815px) {
	.hv-property-banner__thumb {
    height: auto;
		max-width: 110px;
	}
	.hv-property-banner__thumb-more-label
	{
		display:none !important;
	}
}
@media (max-width: 600px) {
	.hv-property-banner__thumb {
    height: auto;
		max-width: 110px;
	}
	.hv-property-banner__tag {
    padding: 10px 15px;
    font-size: 15px;
}
	#wrapper .hv-property-banner .hv-property-banner__title {
    font-size: 30px !important;
    padding-bottom: 20px;
}
	

	.hv-property-banner__badges {
		justify-content: flex-start;
	}

	.hv-property-banner__tags {
		max-width: calc(100% - 1rem);
		bottom: 5.5rem;
	}

	.hv-property-banner__thumbs-wrap {
		right: 0.65rem;
		bottom: 0.65rem;
	}

	.hv-property-banner__thumb {
		width: clamp(3.75rem, 22vw, 5.5rem);
	}
}
