.cml-explorer {
	--cml-primary: #315f4c;
	--cml-soft: #e5ece6;
	--cml-text: #101813;
	--cml-muted: #536159;
	--cml-border: #d9e0db;
	--cml-map-width: 56%;
	--cml-height: 760px;
	align-items: stretch;
	background: #fff;
	color: var(--cml-text);
	display: flex;
	font-family: "DM Sans", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	gap: 10px;
	isolation: isolate;
	line-height: 1.4;
	min-height: var(--cml-height);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.cml-explorer *,
.cml-explorer *::before,
.cml-explorer *::after {
	box-sizing: border-box;
}

.cml-explorer button,
.cml-explorer input,
.cml-explorer select {
	font: inherit;
}

.cml-explorer a {
	color: inherit;
	text-decoration: none;
}

.cml-explorer__map-column {
	flex: 0 0 var(--cml-map-width);
	min-height: var(--cml-height);
	overflow: hidden;
	position: relative;
}

.cml-map {
	background: #e9efe9;
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.cml-filter {
	background: #fff;
	border: 1px solid rgba(217, 224, 219, .72);
	border-radius: 16px;
	box-shadow: 0 7px 22px rgba(28, 62, 48, .15);
	left: 14px;
	padding: 18px 20px 17px;
	position: absolute;
	right: 14px;
	top: 14px;
	z-index: 900;
}

.cml-filter__fields {
	align-items: end;
	display: grid;
	gap: 14px;
	grid-template-columns: 1.75fr .82fr .82fr .88fr;
}

.cml-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.cml-field > span {
	color: var(--cml-text);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.cml-field input,
.cml-field select {
	appearance: none;
	background-color: #fff;
	border: 1px solid var(--cml-border);
	border-radius: 10px;
	box-shadow: none;
	color: var(--cml-text);
	font-size: 13px;
	font-weight: 600;
	height: 54px;
	line-height: 1.2;
	margin: 0;
	max-width: 100%;
	outline: none;
	padding: 0 15px;
	transition: border-color .2s ease, box-shadow .2s ease;
	width: 100%;
}

.cml-field select {
	background-image:
		linear-gradient(45deg, transparent 50%, var(--cml-text) 50%),
		linear-gradient(135deg, var(--cml-text) 50%, transparent 50%);
	background-position:
		calc(100% - 17px) 50%,
		calc(100% - 12px) 50%;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 34px;
}

.cml-field input::placeholder {
	color: #7b817d;
	font-weight: 500;
	opacity: 1;
}

.cml-field input:focus,
.cml-field select:focus {
	border-color: var(--cml-primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cml-primary), transparent 86%);
}

.cml-filter__actions {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 16px;
}

.cml-filter__checks {
	align-items: center;
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 15px 24px;
}

.cml-filter__checks label {
	align-items: center;
	color: var(--cml-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	gap: 9px;
	margin: 0;
}

.cml-filter__checks input {
	appearance: none;
	background: #fff;
	border: 1px solid #9ca59f;
	border-radius: 3px;
	height: 14px;
	margin: 0;
	min-width: 14px;
	position: relative;
	width: 14px;
}

.cml-filter__checks input:checked {
	background: var(--cml-primary);
	border-color: var(--cml-primary);
}

.cml-filter__checks input:checked::after {
	border: solid #fff;
	border-width: 0 1.5px 1.5px 0;
	content: "";
	height: 7px;
	left: 4px;
	position: absolute;
	top: 1px;
	transform: rotate(45deg);
	width: 3px;
}

.cml-filter__submit,
.cml-load-more {
	background: var(--cml-primary);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	min-height: 44px;
	min-width: 200px;
	padding: 11px 26px;
	text-transform: uppercase;
	transition: filter .2s ease, transform .2s ease;
}

.cml-filter__submit:hover,
.cml-filter__submit:focus-visible,
.cml-load-more:hover,
.cml-load-more:focus-visible {
	filter: brightness(.91);
	transform: translateY(-1px);
}

.cml-explorer__results {
	background: #fff;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 23px 18px 13px 10px;
}

.cml-results-head {
	align-items: flex-start;
	display: flex;
	flex: 0 0 auto;
	gap: 20px;
	justify-content: space-between;
	margin: 0 0 18px;
	padding: 0 1px;
}

.cml-results-head h2 {
	color: var(--cml-text);
	font-size: clamp(22px, 1.8vw, 30px);
	font-weight: 750;
	letter-spacing: -.035em;
	line-height: 1.1;
	margin: 0 0 9px;
}

.cml-results-count {
	color: var(--cml-muted);
	font-size: 13px;
	font-weight: 500;
	margin: 0;
}

.cml-view-toggle {
	border: 1px solid var(--cml-border);
	border-radius: 999px;
	display: inline-flex;
	flex: 0 0 auto;
	overflow: hidden;
}

.cml-view-toggle button {
	background: #fff;
	border: 0;
	color: var(--cml-primary);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	min-height: 42px;
	padding: 9px 20px;
}

.cml-view-toggle button.is-active {
	background: var(--cml-primary);
	color: #fff;
}

.cml-results-list {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 10px;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 1px 3px 1px 0;
	scrollbar-color: color-mix(in srgb, var(--cml-primary), transparent 55%) transparent;
	scrollbar-width: thin;
}

.cml-card {
	background: #fff;
	border: 1px solid var(--cml-border);
	border-radius: 14px;
	display: flex;
	flex: 0 0 auto;
	gap: 0;
	min-height: 174px;
	overflow: hidden;
	position: relative;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cml-card:hover,
.cml-card:focus,
.cml-card.is-active {
	border-color: color-mix(in srgb, var(--cml-primary), transparent 32%);
	box-shadow: 0 9px 24px rgba(30, 65, 49, .1);
	outline: 0;
	transform: translateY(-1px);
}

.cml-card__image {
	display: block;
	flex: 0 0 auto;
	margin: 10px 0 10px 10px;
	overflow: hidden;
	position: relative;
	width: 38%;
}

.cml-card__image,
.cml-card__image img {
	border-radius: 8px;
}

.cml-card__image img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform .45s ease;
	width: 100%;
}

.cml-card:hover .cml-card__image img {
	transform: scale(1.035);
}

.cml-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 16px 17px 13px 20px;
}

.cml-card__category {
	--cml-category: var(--cml-soft);
	align-self: flex-start;
	background: color-mix(in srgb, var(--cml-category), #fff 84%);
	border-radius: 999px;
	color: var(--cml-primary);
	display: inline-block;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .055em;
	line-height: 1;
	margin: 0 0 9px;
	max-width: 100%;
	overflow: hidden;
	padding: 7px 12px;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.cml-card__title {
	color: var(--cml-text);
	font-size: clamp(17px, 1.25vw, 21px);
	font-weight: 750;
	letter-spacing: -.025em;
	line-height: 1.18;
	margin: 0 0 6px;
}

.cml-card__title a:hover {
	color: var(--cml-primary);
}

.cml-card__location {
	align-items: center;
	color: var(--cml-muted);
	display: flex;
	font-size: 11px;
	gap: 6px;
	margin: 0 0 6px;
}

.cml-card__location svg {
	fill: var(--cml-primary);
	height: 14px;
	width: 14px;
}

.cml-card__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #3f4943;
	display: -webkit-box;
	font-size: 11px;
	line-height: 1.45;
	margin: 0 0 8px;
	overflow: hidden;
}

.cml-card__footer {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: auto;
}

.cml-card__features {
	align-items: center;
	display: flex;
	gap: 6px;
}

.cml-card__feature {
	align-items: center;
	background: var(--cml-soft);
	border-radius: 999px;
	color: var(--cml-primary);
	display: inline-flex;
	height: 27px;
	justify-content: center;
	width: 27px;
}

.cml-card__feature svg {
	fill: currentColor;
	height: 16px;
	width: 16px;
}

.cml-card__link {
	align-items: center;
	color: var(--cml-text);
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	gap: 10px;
	white-space: nowrap;
}

.cml-card__link:hover {
	color: var(--cml-primary);
}

.cml-card__link svg {
	fill: currentColor;
	height: 18px;
	transition: transform .2s ease;
	width: 18px;
}

.cml-card__link:hover svg {
	transform: translateX(3px);
}

.cml-load-more-wrap {
	flex: 0 0 auto;
	padding: 12px 0 0;
	text-align: center;
}

.cml-load-more {
	font-size: 10px;
	min-height: 38px;
}

.cml-empty {
	align-items: center;
	background: #f4f7f5;
	border: 1px dashed var(--cml-border);
	border-radius: 14px;
	color: var(--cml-muted);
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	min-height: 220px;
	padding: 35px;
	text-align: center;
}

.cml-empty > span {
	color: var(--cml-primary);
	font-size: 38px;
}

.cml-skeleton {
	animation: cml-pulse 1.2s ease-in-out infinite alternate;
	background: linear-gradient(90deg, #f0f3f1, #f8faf9, #f0f3f1);
	background-size: 200% 100%;
	border-radius: 14px;
	flex: 0 0 174px;
}

@keyframes cml-pulse {
	to { background-position: -100% 0; }
}

.cml-marker-wrap {
	background: none;
	border: 0;
}

.cml-marker-dot {
	--cml-marker: var(--cml-primary);
	align-items: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 3px 9px rgba(14, 45, 31, .3);
	display: flex;
	height: 32px;
	justify-content: center;
	position: relative;
	transition: transform .2s ease;
	width: 32px;
}

.cml-marker-dot::before {
	border: 2px solid var(--cml-marker);
	border-radius: inherit;
	content: "";
	inset: 4px;
	position: absolute;
}

.cml-marker-dot i {
	background: var(--cml-marker);
	border-radius: 50%;
	display: block;
	height: 9px;
	width: 9px;
}

.cml-marker-wrap:hover .cml-marker-dot,
.cml-marker-wrap.is-active .cml-marker-dot {
	transform: scale(1.16);
}

.cml-leaflet-popup .leaflet-popup-content-wrapper {
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(18, 48, 35, .2);
	padding: 0;
}

.cml-leaflet-popup .leaflet-popup-content {
	margin: 0;
	width: auto !important;
}

.cml-map-popup {
	align-items: center;
	display: flex;
	gap: 10px;
	min-height: 76px;
	padding: 8px;
}

.cml-map-popup img {
	border-radius: 7px;
	height: 62px;
	object-fit: cover;
	width: 92px;
}

.cml-map-popup strong {
	color: var(--cml-text);
	font-family: "DM Sans", "Montserrat", sans-serif;
	font-size: 13px;
	line-height: 1.25;
	padding-right: 5px;
}

.cml-photo-tooltip {
	background: #fff;
	border: 0;
	border-radius: 9px;
	box-shadow: 0 7px 20px rgba(17, 52, 37, .19);
	max-width: 270px;
	padding: 0;
}

.cml-photo-tooltip::before {
	border-top-color: #fff !important;
}

.cml-photo-tooltip .cml-map-popup {
	min-height: 70px;
	padding: 7px;
}

.cml-photo-tooltip .cml-map-popup img {
	height: 57px;
	width: 85px;
}

.cml-photo-tooltip .cml-map-popup strong {
	white-space: normal;
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
	background: color-mix(in srgb, var(--cml-primary), transparent 72%);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
	background: var(--cml-primary);
	color: #fff;
	font-family: inherit;
	font-weight: 800;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

@media (max-width: 1280px) {
	.cml-filter__fields {
		gap: 10px;
		grid-template-columns: 1.55fr .8fr .8fr;
	}

	.cml-field:last-child {
		grid-column: 3;
	}

	.cml-filter__submit {
		min-width: 155px;
	}

	.cml-card {
		min-height: 158px;
	}

	.cml-card__body {
		padding: 13px 13px 11px 15px;
	}
}

@media (max-width: 1024px) {
	.cml-explorer {
		--cml-map-width: 53%;
		--cml-height: 700px;
	}

	.cml-filter {
		padding: 15px;
	}

	.cml-filter__fields {
		grid-template-columns: 1fr 1fr;
	}

	.cml-field:last-child {
		grid-column: auto;
	}

	.cml-filter__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.cml-filter__submit {
		width: 100%;
	}

	.cml-explorer__results {
		padding: 18px 12px 10px 7px;
	}

	.cml-results-head {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.cml-view-toggle {
		align-self: flex-start;
	}

	.cml-card {
		flex-direction: column;
	}

	.cml-card__image {
		aspect-ratio: 16 / 8;
		margin: 8px 8px 0;
		width: calc(100% - 16px) !important;
	}
}

@media (max-width: 767px) {
	.cml-explorer {
		--cml-height: auto;
		background: #fff;
		display: block;
		min-height: 560px;
		overflow: visible;
	}

	.cml-explorer__map-column,
	.cml-explorer__results {
		display: none;
		min-height: 0;
		width: 100%;
	}

	.cml-explorer__map-column.is-mobile-active,
	.cml-explorer__results.is-mobile-active {
		display: flex;
	}

	.cml-explorer__map-column {
		flex-direction: column;
		height: 640px;
	}

	.cml-map {
		inset: 0;
	}

	.cml-filter {
		border-radius: 14px;
		left: 10px;
		max-height: 53%;
		overflow: auto;
		padding: 14px;
		right: 10px;
		top: 10px;
	}

	.cml-filter__fields {
		grid-template-columns: 1fr 1fr;
	}

	.cml-field--search {
		grid-column: 1 / -1;
	}

	.cml-field input,
	.cml-field select {
		height: 48px;
	}

	.cml-filter__checks {
		gap: 12px 18px;
	}

	.cml-filter__submit {
		min-height: 44px;
	}

	.cml-explorer__results {
		flex-direction: column;
		max-height: none;
		padding: 18px 12px;
	}

	.cml-results-head {
		align-items: center;
		flex-direction: row;
	}

	.cml-results-head h2 {
		font-size: 23px;
	}

	.cml-view-toggle {
		align-self: center;
	}

	.cml-view-toggle button {
		font-size: 12px;
		min-height: 40px;
		padding: 8px 14px;
	}

	.cml-results-list {
		overflow: visible;
	}

	.cml-card {
		flex-direction: row;
		min-height: 165px;
	}

	.cml-card__image {
		aspect-ratio: auto;
		margin: 9px 0 9px 9px;
		width: 38% !important;
	}

	.cml-card__excerpt {
		font-size: 11px;
	}

	.cml-photo-tooltip {
		display: none;
	}
}

@media (max-width: 520px) {
	.cml-explorer__map-column {
		height: 590px;
	}

	.cml-filter__fields {
		grid-template-columns: 1fr;
	}

	.cml-field--search {
		grid-column: auto;
	}

	.cml-filter__checks {
		align-items: flex-start;
		flex-direction: column;
	}

	.cml-results-head {
		align-items: flex-start;
	}

	.cml-results-head h2 {
		font-size: 20px;
	}

	.cml-card {
		flex-direction: column;
	}

	.cml-card__image {
		aspect-ratio: 16 / 9;
		margin: 8px 8px 0;
		width: calc(100% - 16px) !important;
	}

	.cml-card__body {
		padding: 13px 14px 14px;
	}

	.cml-card__title {
		font-size: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cml-explorer *,
	.cml-explorer *::before,
	.cml-explorer *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

