@font-face {
	font-display: swap;
	font-family: "Roboto";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/roboto-latin-500-normal.woff2") format("woff2");
}

.homy-ls,
.homy-ls * {
	box-sizing: border-box;
}

.homy-ls.homy-ls--list-view {
	margin-top: 30px;
}

.homy-ls {
	--homy-navy: #12314d;
	--homy-blue: #236a94;
	--homy-ink: #162432;
	--homy-muted: #657382;
	--homy-line: #dfe5ea;
	--homy-soft: #f5f7f9;
	--homy-white: #fff;
	color: var(--homy-ink);
	font-family: inherit;
	margin: 0 auto;
	max-width: 1240px;
	width: 100%;
}

.homy-ls [hidden] {
	display: none !important;
}

.homy-ls-featured__heading {
	align-items: baseline;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin: 0 0 20px;
}

.homy-ls-featured__heading h2 {
	color: var(--homy-navy);
	font-size: clamp(24px, 2.7vw, 34px);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.homy-ls-featured__heading a {
	color: var(--homy-blue);
	flex: 0 0 auto;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.homy-ls-featured__heading a:hover,
.homy-ls-featured__heading a:focus {
	text-decoration: underline;
}

.homy-ls-featured__grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(var(--homy-featured-columns, 3), minmax(0, 1fr));
}

.homy-ls-featured--full-width {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: none;
	padding-left: clamp(16px, 2.5vw, 40px);
	padding-right: clamp(16px, 2.5vw, 40px);
	width: 100vw;
}

.homy-ls-featured--full-width .homy-ls-featured__grid {
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 1200px) {
	.homy-ls-featured--full-width .homy-ls-featured__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 1400px) {
	.homy-ls-featured--full-width .homy-ls-featured__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

/*
 * HomePress globally converts every select into Select2. Homy search uses
 * native selects so dynamic Estate/District option groups remain authoritative.
 */
.homy-ls .select2-container {
	display: none !important;
}

.homy-ls select.select2-hidden-accessible {
	border: 1px solid #cbd4dc !important;
	clip: auto !important;
	clip-path: none !important;
	height: 44px !important;
	overflow: visible !important;
	position: static !important;
	white-space: normal !important;
	width: 100% !important;
	padding-left: 10px !important;
}

.homy-ls__dynamic {
	min-height: 120px;
	position: relative;
	transition: opacity .16s ease;
}

.homy-ls.is-loading .homy-ls__dynamic {
	opacity: .52;
	pointer-events: none;
}

.homy-ls.is-loading {
	cursor: progress;
}

.homy-ls__ajax-status {
	background: #edf5fa;
	border: 1px solid #c7ddea;
	border-radius: 7px;
	bottom: 22px;
	box-shadow: 0 7px 24px rgba(18, 49, 77, .16);
	color: var(--homy-navy);
	font-size: 14px;
	font-weight: 700;
	margin: 0;
	max-width: calc(100vw - 32px);
	padding: 10px 13px;
	position: fixed;
	right: 22px;
	z-index: 9999;
}

.homy-ls__ajax-status:empty {
	display: none;
}

.homy-ls__ajax-status.is-error {
	background: #fff3f1;
	border-color: #efc5bd;
	color: #8b2f23;
}

.homy-ls__form {
	background: var(--homy-white);
	border: 1px solid var(--homy-line);
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(18, 49, 77, .07);
	margin: 0 0 18px;
	padding: 20px 22px;
}

.homy-ls__form-heading {
	align-items: flex-start;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 16px;
}

.homy-ls__form-heading h2 {
	color: var(--homy-navy);
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.2;
	margin: 0 0 6px;
}

.homy-ls__form-heading p {
	color: var(--homy-muted);
	margin: 0;
}

.homy-ls__clear {
	color: var(--homy-blue);
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 600;
	margin-top: 7px;
	text-decoration: none;
}

.homy-ls__clear:hover,
.homy-ls__clear:focus {
	text-decoration: underline;
}

.homy-ls__primary-filters,
.homy-ls__advanced-grid {
	align-items: end;
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homy-ls__advanced {
	border-top: 1px solid var(--homy-line);
	margin-top: 18px;
	padding-top: 18px;
}

.homy-ls__field {
	display: block;
	margin: 0;
}

.homy-ls__field > span,
.homy-ls__summary label > span {
	color: #425364;
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 6px;
}

.homy-ls__field input,
.homy-ls__field select,
.homy-ls__summary select {
	appearance: none;
	background: var(--homy-white);
	border: 1px solid #cbd4dc;
	border-radius: 7px;
	color: var(--homy-ink);
	font: inherit;
	font-size: 15px;
	height: 44px;
	line-height: 1.2;
	margin: 0;
	max-width: none;
	padding: 0 12px;
	width: 100%;
}

.homy-ls__field--locked strong {
	align-items: center;
	background: #eef4f7;
	border: 1px solid #cbd4dc;
	border-radius: 7px;
	color: var(--homy-navy);
	display: flex;
	font-size: 15px;
	height: 44px;
	line-height: 1.2;
	padding: 0 12px;
}

.homy-listing-archive {
	background: #f6f8fa;
	min-height: 60vh;
	padding-bottom: 56px;
}

.homy-listing-archive__container {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	margin-top: 20px;
	padding-bottom: 30px;
}

.homy-listing-archive__hero {
	background: linear-gradient(135deg, #102d46 0%, #1e5f80 100%);
	color: #fff;
	margin-bottom: 30px;
}

.homy-listing-archive__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.homy-listing-archive__hero h1 {
	color: #fff;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 750;
	letter-spacing: -.025em;
	line-height: 1.08;
	margin: 0 0 12px;
}

.homy-listing-archive__hero p:not(.homy-listing-archive__eyebrow) {
	color: rgba(255, 255, 255, .84);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	max-width: 760px;
}

.homy-listing-archive__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.homy-listing-archive__nav a {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 15px;
	text-decoration: none;
}

.homy-listing-archive__nav a:hover,
.homy-listing-archive__nav a:focus,
.homy-listing-archive__nav a[aria-current="page"] {
	background: #fff;
	color: #12314d;
}

.homy-listing-archive__search .homy-ls {
	max-width: none;
}

.homy-listing-archive--map .homy-ls-map__canvas {
	height: min(68vh, 680px);
}

@media (max-width: 640px) {
	.homy-listing-archive__container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.homy-listing-archive__hero {
		margin-bottom: 18px;
	}

	.homy-listing-archive__nav {
		gap: 7px;
	}

	.homy-listing-archive__nav a {
		font-size: 13px;
		padding: 9px 12px;
	}
}

.homy-ls__field select,
.homy-ls__summary select {
	background-image:
		linear-gradient(45deg, transparent 50%, #667585 50%),
		linear-gradient(135deg, #667585 50%, transparent 50%);
	background-position:
		calc(100% - 17px) 19px,
		calc(100% - 12px) 19px;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 34px;
}

.homy-ls__field input:focus,
.homy-ls__field select:focus,
.homy-ls__summary select:focus {
	border-color: var(--homy-blue);
	box-shadow: 0 0 0 3px rgba(35, 106, 148, .14);
	outline: 0;
}

.homy-ls__field--keyword {
	grid-column: span 2;
}

.homy-ls__choice-group {
	border: 0;
	grid-column: span 2;
	margin: 2px 0 0;
	min-width: 0;
	padding: 0;
}

.homy-ls__choice-group legend {
	color: #425364;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 8px;
	padding: 0;
}

.homy-ls__choice-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.homy-ls__choice-buttons label {
	cursor: pointer;
	margin: 0;
}

.homy-ls__choice-buttons input {
	height: 1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.homy-ls__choice-buttons span {
	align-items: center;
	background: var(--homy-white);
	border: 1px solid #9ba9b6;
	border-radius: 9px;
	color: #526171;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	min-height: 40px;
	min-width: 44px;
	padding: 7px 13px;
	transition: background .14s ease, border-color .14s ease, color .14s ease;
}

.homy-ls__choice-buttons input:checked + span {
	background: var(--homy-navy);
	border-color: var(--homy-navy);
	color: var(--homy-white);
}

.homy-ls__choice-buttons input:focus-visible + span {
	box-shadow: 0 0 0 3px rgba(35, 106, 148, .18);
	outline: 2px solid var(--homy-blue);
	outline-offset: 1px;
}

.homy-ls__form-actions {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 16px;
}

.homy-ls__expand {
	align-items: center;
	background: var(--homy-white);
	border: 1px solid #9ba9b6;
	border-radius: 7px;
	color: var(--homy-navy);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	height: 44px;
	justify-content: center;
	margin: 0;
	padding: 0 17px;
}

.homy-ls__expand:hover,
.homy-ls__expand:focus {
	border-color: var(--homy-blue);
	color: var(--homy-blue);
}

.homy-ls__expand-icon {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	display: block;
	height: 7px;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .15s ease;
	width: 7px;
}

.homy-ls__expand[aria-expanded="true"] .homy-ls__expand-icon {
	transform: rotate(225deg) translate(-2px, -2px);
}

.homy-ls__submit {
	min-width: 210px;
}

.homy-ls__submit button {
	background: var(--homy-navy);
	border: 1px solid var(--homy-navy);
	border-radius: 7px;
	color: var(--homy-white);
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	height: 44px;
	margin: 0;
	padding: 0 20px;
	width: 100%;
}

.homy-ls__submit button:hover,
.homy-ls__submit button:focus {
	background: var(--homy-blue);
	border-color: var(--homy-blue);
}

.homy-ls-map {
	background: var(--homy-white);
	border: 1px solid var(--homy-line);
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(18, 49, 77, .07);
	margin: 0 0 28px;
	overflow: hidden;
	position: relative;
}

.homy-ls-map__heading {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 18px 20px;
}

.homy-ls-map__heading h2 {
	color: var(--homy-navy);
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 3px;
}

.homy-ls-map__heading p {
	color: var(--homy-muted);
	font-size: 14px;
	margin: 0;
}

.homy-ls-map__actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
}

.homy-ls-map__actions a {
	color: var(--homy-blue);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.homy-ls-map__actions a:hover,
.homy-ls-map__actions a:focus {
	text-decoration: underline;
}

.homy-ls-map__search-area {
	background: var(--homy-white);
	border: 1px solid var(--homy-navy);
	border-radius: 7px;
	color: var(--homy-navy);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	min-height: 40px;
	padding: 8px 14px;
}

.homy-ls-map__search-area:hover,
.homy-ls-map__search-area:focus,
.homy-ls-map__search-area.is-dirty,
.homy-ls-map--bounded .homy-ls-map__search-area {
	background: var(--homy-navy);
	color: var(--homy-white);
}

.homy-ls-map__canvas {
	background: #e8eef1;
	height: clamp(390px, 48vw, 560px);
	width: 100%;
	z-index: 1;
}

.homy-ls-map__brand {
	background: #fff;
	border-radius: 4px;
	bottom: 12px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .28);
	color: #d7282f;
	font-size: 15px;
	font-style: italic;
	font-weight: 900;
	left: 12px;
	letter-spacing: -.04em;
	line-height: 1;
	padding: 7px 9px;
	position: absolute;
	text-decoration: none;
	z-index: 500;
}

.homy-ls-map__notice {
	background: var(--homy-soft);
	color: var(--homy-muted);
	margin: 0;
	padding: 24px;
	text-align: center;
}

.homy-ls .leaflet-container {
	font-family: inherit;
}

.homy-ls .leaflet-control-attribution {
	font-size: 10px;
}

.homy-ls-map-marker-wrap {
	background: transparent;
	border: 0;
	height: 0 !important;
	overflow: visible;
	width: 0 !important;
}

.homy-ls-map-marker-wrap > span {
	background: var(--homy-navy);
	border: 2px solid #fff;
	border-radius: 999px;
	box-shadow: 0 3px 10px rgba(18, 49, 77, .34);
	color: #fff;
	display: block;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 9px;
	position: absolute;
	transform: translate(-50%, -115%);
	transition: background .15s ease, transform .15s ease;
	white-space: nowrap;
}

.homy-ls-map-marker-wrap > span::after {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #fff;
	content: "";
	left: 50%;
	position: absolute;
	top: calc(100% + 2px);
	transform: translateX(-50%);
}

.homy-ls-map-marker-wrap.is-rent > span {
	background: #8b5a24;
}

.homy-ls-map-marker-wrap.is-highlighted > span,
.homy-ls-map-marker-wrap:hover > span {
	background: var(--homy-blue);
	transform: translate(-50%, -115%) scale(1.12);
}

.homy-ls-map-popup {
	display: flex;
	flex-direction: column;
	gap: 6px;
	line-height: 1.35;
}

.homy-ls-map-popup__title {
	color: var(--homy-ink);
	font-size: 14px;
}

.homy-ls-map-popup__price {
	color: var(--homy-navy);
	font-size: 16px;
	font-weight: 800;
}

.homy-ls-map-popup__details {
	color: var(--homy-muted);
	font-size: 12px;
}

.homy-ls-map-popup__link {
	color: var(--homy-blue) !important;
	font-size: 13px;
	font-weight: 700;
	margin-top: 3px;
}

.homy-ls__summary {
	align-items: end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin: 0 0 18px;
}

.homy-ls__summary p {
	color: var(--homy-navy);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
}

.homy-ls__summary label {
	min-width: 200px;
}

.homy-ls__grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homy-ls-card {
	background: var(--homy-white);
	border: 1px solid #dfe5ea;
	border-radius: 12px;
	box-shadow: 0 5px 18px rgba(18, 49, 77, .06);
	margin: 0;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow .18s ease, transform .18s ease;
}

.homy-ls-card--closed {
	background: #d1d0d0;
}

.homy-ls-card:hover {
	box-shadow: 0 12px 30px rgba(18, 49, 77, .12);
	transform: translateY(-2px);
}

.homy-ls-card__image {
	background: #e7edf1;
	height: 0;
	overflow: hidden;
	padding-bottom: 66.666%;
	position: relative;
	touch-action: pan-y;
}

.homy-ls-card__image-link {
	display: block;
	inset: 0;
	position: absolute;
}

.homy-ls-card__photo,
.homy-ls-card__placeholder {
	height: 100% !important;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: opacity .16s ease, transform .28s ease;
	width: 100% !important;
}

.homy-ls-card:hover .homy-ls-card__photo {
	transform: scale(1.025);
}

.homy-ls-card__image.is-loading-photo .homy-ls-card__photo {
	opacity: .55;
}

.homy-ls-card__placeholder {
	background:
		linear-gradient(135deg, rgba(255,255,255,.2), transparent),
		linear-gradient(135deg, #c9d7e0, #e9eef2);
}

.homy-ls-card__status {
	background: var(--homy-navy);
	border-radius: 999px;
	color: var(--homy-white);
	font-size: 12px;
	font-weight: 700;
	left: 14px;
	line-height: 1;
	padding: 8px 11px;
	position: absolute;
	top: 14px;
	z-index: 3;
}

.homy-ls-card__status--for_rent {
	background: #8b5a24;
}

.homy-ls-card__gallery-arrow {
	align-items: center;
	appearance: none;
	background: rgba(18, 49, 77, .82);
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 50%;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
	color: var(--homy-white);
	cursor: pointer;
	display: flex;
	height: 36px;
	justify-content: center;
	margin: 0;
	opacity: .9;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color .16s ease, opacity .16s ease, transform .16s ease;
	width: 36px;
	z-index: 4;
}

.homy-ls-card__gallery-arrow--previous {
	left: 10px;
}

.homy-ls-card__gallery-arrow--next {
	right: 10px;
}

.homy-ls-card__gallery-arrow svg {
	fill: none;
	height: 19px;
	pointer-events: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
	width: 19px;
}

.homy-ls-card__gallery-arrow:hover,
.homy-ls-card__gallery-arrow:focus-visible {
	background: var(--homy-navy);
	opacity: 1;
	transform: translateY(-50%) scale(1.06);
}

.homy-ls-card__gallery-arrow:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .95);
	outline-offset: 2px;
}

.homy-ls-card__photo-count {
	background: rgba(18, 36, 52, .78);
	border-radius: 999px;
	bottom: 11px;
	color: var(--homy-white);
	font-family: "Roboto", Arial, sans-serif;
	font-size: 12px;
	font-variant-numeric: tabular-nums lining-nums;
	font-weight: 600;
	letter-spacing: .02em;
	line-height: 1;
	padding: 7px 9px;
	position: absolute;
	right: 11px;
	z-index: 3;
}

.homy-ls-card__gallery-data {
	display: none !important;
}

.homy-ls-card__body {
	padding: 8px 18px;
}

.homy-ls-card__eyebrow {
	color: var(--homy-muted);
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 8px;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.homy-ls-card__eyebrow span + span::before {
	content: "•";
	margin-right: 8px;
}

.homy-ls-card h3 {
	font-family: "Roboto", Arial, sans-serif;
	font-size: 18px;
	font-variant-numeric: lining-nums;
	font-weight: 500;
	line-height: 1.38;
	margin: 0 0 12px;
	min-height: 2.76em;
}

.homy-ls-card h3 a {
	color: var(--homy-ink);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-decoration: none;
}

.homy-ls-card h3 a:hover,
.homy-ls-card h3 a:focus {
	color: var(--homy-blue);
}

.homy-ls-card__price {
	color: var(--homy-navy);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 13px;
}

.homy-ls-card__secondary {
	color: var(--homy-muted);
	display: flex;
	font-size: 12px;
	font-weight: 600;
	gap: 7px;
	line-height: 1.35;
	margin: -5px 0 12px;
	min-height: 16px;
	overflow: hidden;
	white-space: nowrap;
}

.homy-ls-card__secondary span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.homy-ls-card__secondary span + span::before {
	content: "•";
	margin-right: 7px;
}

.homy-ls-card__transit {
	align-items: center;
	color: #3f6179;
	display: flex;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 11.5px;
	font-variant-numeric: lining-nums tabular-nums;
	font-weight: 500;
	gap: 5px;
	line-height: 1.3;
	margin: -3px 0 11px;
	min-height: 16px;
	min-width: 0;
	white-space: nowrap;
}

.homy-ls-card__transit--empty {
	visibility: hidden;
}

.homy-ls-card__transit span {
	overflow: hidden;
	text-overflow: ellipsis;
}

.homy-ls-card__transit .homy-ls-card__fact-icon {
	height: 16px;
	width: 16px;
}

.homy-ls-card__facts {
	align-items: center !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 12px 0 0 !important;
	border-top: 1px solid var(--homy-line);
	display: flex !important;
	flex-flow: row nowrap !important;
	column-gap: 6px !important;
	justify-content: start !important;
	overflow: visible;
	white-space: nowrap;
}

.homy-ls-card__facts li {
	align-items: center !important;
	color: var(--homy-muted);
	display: inline-flex !important;
	flex: 0 0 auto !important;
	float: none !important;
	max-width: none !important;
	width: auto !important;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 15px !important;
	font-variant-numeric: lining-nums tabular-nums;
	font-weight: normal;
	line-height: 1.25;
	margin: 0 !important;
	min-width: 0;
	padding: 0 !important;
	color: #000000;
}

.homy-ls-card__facts li span {
	display: inline !important;
	overflow: visible;
	text-overflow: clip;
	white-space: nowrap;
}

.homy-ls-card__facts li::before {
	display: none !important;
}

.homy-ls-card__fact-icon {
	fill: none;
	flex: 0 0 auto;
	height: 15px;
	stroke: var(--homy-blue);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	width: 15px;
	margin-right: 3px;
}

@media (max-width: 390px) {
	.homy-ls-card__facts {
		column-gap: 5px !important;
	}

	.homy-ls-card__fact-icon {
		height: 13px;
		width: 13px;
	}
}

.homy-ls__empty,
.homy-ls__message {
	background: var(--homy-soft);
	border: 1px solid var(--homy-line);
	border-radius: 12px;
	grid-column: 1 / -1;
	min-height: 220px;
	padding: 36px 24px;
	text-align: center;
}

.homy-ls__empty h3 {
	color: var(--homy-navy);
	margin: 0 0 8px;
}

.homy-ls__empty p {
	color: var(--homy-muted);
	margin: 0 0 14px;
}

.homy-ls__empty a {
	color: #116f78;
	font-weight: 700;
}

.homy-ls-seller-card {
	align-items: center;
	background: linear-gradient(145deg, #123a5a 0%, #116f78 100%);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(18, 58, 90, .18);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding: 30px 24px;
	position: relative;
	text-align: center;
}

.homy-ls-seller-card::after {
	background: rgba(250, 167, 25, .18);
	border-radius: 50%;
	content: "";
	height: 170px;
	position: absolute;
	right: -65px;
	top: -70px;
	width: 170px;
}

.homy-ls-seller-card__icon {
	align-items: center;
	background: #faa719;
	border-radius: 50%;
	display: flex;
	height: 64px;
	justify-content: center;
	margin-bottom: 10px;
	width: 64px;
}

.homy-ls-seller-card__icon svg {
	fill: none;
	height: 36px;
	stroke: #123a5a;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
	width: 36px;
}

.homy-ls-seller-card .homy-ls-seller-card__eyebrow {
	color: #ffd88e;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	margin: 0 0 8px;
}

.homy-ls-seller-card h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
}

.homy-ls-seller-card p:not(.homy-ls-seller-card__eyebrow) {
	color: rgba(255, 255, 255, .88);
	line-height: 1.55;
	margin: 0 0 20px;
}

.homy-ls-seller-card a {
	background: #faa719;
	border-radius: 7px;
	color: #123a5a;
	font-weight: 800;
	padding: 12px 18px;
	text-decoration: none;
}

.homy-ls-seller-card a:hover,
.homy-ls-seller-card a:focus {
	background: #ffc456;
	color: #092b44;
}

.homy-ls__pagination {
	margin-top: 30px;
}

.homy-ls__pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	justify-content: center;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.homy-ls__pagination li {
	margin: 0 !important;
	padding: 0 !important;
}

.homy-ls__pagination li::before {
	display: none !important;
}

.homy-ls__pagination a,
.homy-ls__pagination span {
	align-items: center;
	border: 1px solid var(--homy-line);
	border-radius: 6px;
	color: var(--homy-navy);
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	min-height: 40px;
	min-width: 40px;
	text-decoration: none;
}

.stm-listing-pagination .pagination,
.site-content ul.page-numbers,
ul.page-numbers {
	display: block;
	padding: 30px 0 0 !important;
	margin: 30px 0 60px !important;
	border-radius: 0;
	border-top: 1px solid rgba(191, 191, 191, 0.3);
	text-align: center;
}

.homy-ls__pagination .current,
.homy-ls__pagination a:hover,
.homy-ls__pagination a:focus {
	background: var(--homy-navy);
	border-color: var(--homy-navy);
	color: var(--homy-white);
}

@media (max-width: 960px) {
	.homy-ls-featured__grid {
		grid-template-columns: repeat(var(--homy-featured-tablet-columns, 2), minmax(0, 1fr));
	}

	.homy-ls-featured--full-width .homy-ls-featured__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.homy-ls__primary-filters,
	.homy-ls__advanced-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.homy-ls__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.homy-ls-featured__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 16px;
	}

	.homy-ls-featured__grid {
		grid-template-columns: repeat(var(--homy-featured-mobile-columns, 1), minmax(0, 1fr));
	}

	.homy-ls-featured--full-width .homy-ls-featured__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.homy-ls__form {
		border-radius: 10px;
		padding: 18px;
	}

	.homy-ls__form-heading,
	.homy-ls__summary,
	.homy-ls-map__heading {
		align-items: stretch;
		flex-direction: column;
	}

	.homy-ls__primary-filters,
	.homy-ls__advanced-grid,
	.homy-ls__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.homy-ls__field--keyword,
	.homy-ls__choice-group {
		grid-column: auto;
	}

	.homy-ls__form-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.homy-ls__expand,
	.homy-ls__submit {
		min-width: 0;
		width: 100%;
	}

	.homy-ls__summary label {
		min-width: 0;
	}

	.homy-ls-map {
		border-radius: 10px;
	}

	.homy-ls-map__heading {
		padding: 16px;
	}

	.homy-ls-map__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.homy-ls-map__actions a {
		text-align: center;
	}

	.homy-ls-map__canvas {
		height: 370px;
	}
}

/* Dedicated split-screen map archive. */
body.homy-map-document {
	margin: 0;
	overflow: hidden;
}

.homy-listing-archive--map {
	--homy-map-header-height: 64px;
	background: #fff;
	height: var(--homy-map-viewport-height, 100vh);
	height: var(--homy-map-viewport-height, 100dvh);
	min-height: 0;
	padding: 0;
}

.homy-listing-map-header {
	align-items: center;
	background: #fff;
	border-bottom: 6px solid #faa719;
	display: grid;
	grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
	height: var(--homy-map-header-height);
	padding: 0 6px;
	position: relative;
	z-index: 1100;
}

.homy-listing-map-header__brand {
	align-items: center;
	display: flex;
	grid-column: 1;
	height: 100%;
	justify-self: start;
}

.homy-listing-map-header__brand > a {
	align-items: center;
	display: flex;
	height: 100%;
}

.homy-listing-map-header__brand > a:not(.homy-listing-map-logo-link) {
	color: #e6402e;
	font-size: 21px;
	font-weight: 800;
	text-decoration: none;
}

.homy-listing-map-header__brand .homy-listing-map-logo {
	display: block;
	height: 64px;
	max-height: 63px;
	max-width: 220px;
	object-fit: contain;
	width: 220px;
	padding: 3px 0;
}

.homy-listing-map-site-nav {
	grid-column: 2;
	justify-self: center;
	min-width: 0;
}

.homy-listing-map-site-nav .stm_nav_menu {
	align-items: center;
	display: flex;
	justify-content: center;
}

.homy-listing-map-site-nav .homy-listing-map-menu {
	align-items: stretch;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.homy-listing-map-site-nav .homy-listing-map-menu > li {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin: 0;
	position: relative;
	text-transform: uppercase;
}

.homy-listing-map-site-nav .homy-listing-map-menu > li::before {
	display: none;
}

.homy-listing-map-site-nav .homy-listing-map-menu > li > a {
	align-items: center;
	color: #c7352d;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	min-height: 48px;
	padding: 10px 15px;
	text-decoration: none;
}

.homy-listing-map-site-nav .homy-listing-map-menu > li:hover > a,
.homy-listing-map-site-nav .homy-listing-map-menu > li:focus-within > a,
.homy-listing-map-site-nav .homy-listing-map-menu > .current-menu-item > a,
.homy-listing-map-site-nav .homy-listing-map-menu > .current-menu-ancestor > a,
.homy-listing-map-site-nav .homy-listing-map-menu > .current_page_item > a {
	background: #ffad12;
	color: #fff;
}

.homy-listing-map-site-nav .homy-listing-map-menu .sub-menu {
	list-style: none;
	margin: 0;
}

.homy-listing-map-header__balance {
	grid-column: 3;
}

.homy-listing-map-header__title {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.homy-listing-archive__search--map {
	height: calc(100% - var(--homy-map-header-height));
	max-width: none;
	width: 100%;
}

.homy-listing-archive__search--map .homy-ls--map-view {
	height: 100%;
	max-width: none;
	width: 100%;
}

.homy-ls--map-view {
	margin: 0;
	position: relative;
}

.homy-ls--map-view .homy-ls__dynamic,
.homy-ls--map-view .homy-ls__map-split {
	height: 100%;
	min-height: 0;
}

.homy-ls__map-split {
	display: grid;
	grid-template-columns: minmax(0, 58%) minmax(400px, 42%);
}

.homy-ls__map-pane,
.homy-ls__map-results {
	min-height: 0;
	min-width: 0;
}

.homy-ls__map-pane {
	background: #e8eef1;
	position: relative;
}

.homy-ls__map-results {
	background: #fff;
	border-left: 1px solid var(--homy-line);
	overflow-y: auto;
	padding-top: 72px;
}

.homy-ls__map-toolbar {
	align-items: center;
	background: #fff;
	border-bottom: 1px solid var(--homy-line);
	display: flex;
	height: 72px;
	justify-content: space-between;
	padding: 12px 18px;
	position: absolute;
	right: 0;
	top: 0;
	width: 42%;
	z-index: 1000;
}

.homy-ls__map-toolbar > div:first-child {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.homy-ls__map-toolbar strong {
	color: var(--homy-ink);
	font-size: 21px;
	line-height: 1.15;
}

.homy-ls__map-toolbar span {
	color: var(--homy-muted);
	font-size: 12px;
	margin-top: 3px;
}

.homy-ls__map-toolbar-actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}

.homy-ls__map-toolbar-actions button,
.homy-ls__map-toolbar-actions a {
	background: transparent;
	border: 0;
	color: var(--homy-navy);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	padding: 7px 8px;
	text-decoration: none;
}

.homy-ls__map-toolbar-actions button {
	background: var(--homy-navy);
	border-radius: 6px;
	color: #fff;
}

.homy-ls__filter-panel {
	max-height: calc(100% - 28px);
	overflow: auto;
	position: absolute;
	right: calc(42% + 14px);
	top: 14px;
	width: min(620px, calc(58% - 28px));
	z-index: 1200;
}

.homy-ls__filter-close {
	align-items: center;
	background: #fff;
	border: 1px solid #b8cad7;
	border-radius: 6px;
	color: var(--homy-navy);
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 5px;
	margin: 0 0 8px auto;
	min-height: 34px;
	padding: 5px 11px;
}

.homy-ls__filter-close span {
	font-size: 20px;
	line-height: 1;
}

.homy-ls__filter-panel .homy-ls__form {
	box-shadow: 0 16px 50px rgba(18, 49, 77, .22);
	margin: 0;
}

.homy-ls__filter-panel .homy-ls__primary-filters,
.homy-ls__filter-panel .homy-ls__advanced-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.homy-ls--map-view .homy-ls-map {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.homy-ls--map-view .homy-ls-map__heading {
	background: transparent;
	padding: 0;
	position: absolute;
	right: 14px;
	top: 14px;
	z-index: 600;
}

.homy-ls--map-view .homy-ls-map__heading > div:first-child {
	display: none;
}

.homy-ls--map-view .homy-ls-map__actions {
	background: rgba(255, 255, 255, .94);
	border-radius: 7px;
	box-shadow: 0 3px 14px rgba(18, 49, 77, .18);
	padding: 6px;
}

.homy-ls--map-view .homy-ls-map__canvas {
	height: 100%;
}

.homy-ls--map-view .leaflet-top.leaflet-right {
	top: 54px;
}

.homy-ls__summary--map {
	background: #fff;
	border-bottom: 1px solid var(--homy-line);
	margin: 0;
	padding: 15px 18px;
	position: sticky;
	top: 0;
	z-index: 20;
}

.homy-ls__summary--map p {
	font-size: 15px;
	margin: 0;
}

.homy-ls__summary--map label {
	min-width: 170px;
}

.homy-ls__summary--map label > span {
	display: none;
}

.homy-ls__summary--map select {
	height: 38px;
}

.homy-ls__grid--map {
	display: block;
}

.homy-ls-card--map {
	border: 0;
	border-bottom: 1px solid var(--homy-line);
	border-radius: 0;
	box-shadow: none;
	display: grid;
	grid-template-columns: minmax(190px, 36%) minmax(0, 1fr);
	min-height: 228px;
}

.homy-ls-card--map:hover {
	background: #f8fafb;
	box-shadow: none;
	transform: none;
}

.homy-ls-card--map.is-map-active {
	background: #edf5fa;
	box-shadow: inset 4px 0 0 var(--homy-blue);
}

.homy-ls-card--map .homy-ls-card__image {
	height: 100%;
	min-height: 228px;
	padding-bottom: 0;
}

.homy-ls-card--map .homy-ls-card__body {
	padding: 18px 16px;
}

.homy-ls-card--map h3 {
	font-size: 16px;
	min-height: 0;
}

.homy-ls-card--map .homy-ls-card__price {
	font-size: 20px;
}

.homy-ls-card--map .homy-ls-card__facts {
	column-gap: 5px !important;
	overflow-x: auto;
}

.homy-ls-seller-card--map {
	border-radius: 0;
	box-shadow: none;
	min-height: 228px;
	padding: 24px 28px;
}

.homy-breadcrumbs {
	background: #e0f1fb;
	color: #607586;
	font-size: 13px;
	padding: 6px 0;
	box-shadow: 0 6px 6px rgb(0 0 0 / 10%);
}

.homy-breadcrumbs__inner {
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 10px;
	line-height: normal;
	font-weight: 400 !important;
}

.homy-breadcrumbs a {
	color: #245f84;
	text-decoration: none;
}

.homy-breadcrumbs__separator {
	color: #9aabb6;
	margin: 0 8px;
}

.homy-ls-card--map .homy-ls-card__facts li {
	font-size: 13px !important;
}

.homy-ls--map-view .homy-ls__pagination {
	background: #fff;
	margin: 0;
	padding: 22px 14px;
}

@media (max-width: 768px) {
	.homy-breadcrumbs {
		display: none;
	}

	.homy-listing-archive__container {
		margin: 0 auto;
		max-width: 1280px;
		padding-left: 20px;
		padding-right: 20px;
		width: 100%;
		margin-top: 0;
		padding-bottom: 30px;
		padding-top: 20px;
	}
}

@media (max-width: 1024px) {
	body.homy-map-document {
		overflow: auto;
	}

	.homy-listing-archive--map,
	body.admin-bar .homy-listing-archive--map {
		height: auto;
		min-height: 100vh;
	}

	.homy-listing-map-header {
		grid-template-columns: minmax(0, 1fr) auto;
		height: var(--homy-map-header-height);
		min-height: var(--homy-map-header-height);
	}

	.homy-listing-archive__search--map {
		height: auto;
	}

	.homy-listing-archive__search--map .homy-ls--map-view {
		height: auto;
	}

	.homy-listing-map-header__brand {
		grid-column: 1;
	}

	.homy-listing-map-header__balance {
		display: none;
	}

	.homy-listing-map-site-nav {
		grid-column: 2;
	}

	.homy-ls__map-toolbar {
		position: static;
		width: 100%;
	}

	.homy-ls__filter-panel {
		max-height: none;
		padding: 14px;
		position: static;
		width: 100%;
	}

	.homy-ls__map-split {
		display: block;
	}

	.homy-ls__map-pane {
		height: 55vh;
		min-height: 430px;
	}

	.homy-ls__map-results {
		border-left: 0;
		overflow: visible;
		padding-top: 0;
	}
}

@media (max-width: 680px) {
	body.admin-bar .homy-listing-archive--map {
		height: auto;
	}

	.homy-listing-map-header {
		padding: 0 10px 0 4px;
	}

	.homy-listing-map-header__brand .homy-listing-map-logo {
		height: auto;
		max-height: 55px;
		max-width: 190px;
		width: auto;
	}

	.homy-ls__map-toolbar {
		height: auto;
		padding: 12px 14px;
	}

	.homy-ls__map-toolbar > div:first-child span {
		display: none;
	}

	.homy-ls__map-pane {
		height: 430px;
		min-height: 0;
	}

	.homy-ls__filter-panel .homy-ls__primary-filters,
	.homy-ls__filter-panel .homy-ls__advanced-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.homy-ls-card--map {
		display: block;
	}

	.homy-ls-card--map .homy-ls-card__image {
		height: 0;
		min-height: 0;
		padding-bottom: 62%;
	}
}
