.eh-loc {
	--eh-green: #1f6b4a;
	--eh-green-d: #164e37;
	--eh-ink: #141a14;
	--eh-soft: #5f675a;
	--eh-line: #e8e4da;
	--eh-radius: 18px;
	margin: 16px 0 12px;
}

.eh-loc *,
.eh-loc *::before,
.eh-loc *::after {
	box-sizing: border-box;
}

.eh-loc-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.eh-loc-head-left {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.eh-loc-kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--eh-green);
}

.eh-loc-head h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	color: var(--eh-ink);
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.eh-loc-head-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.eh-loc-seeall {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #edf5f0;
	color: var(--eh-green);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	transition: 0.2s;
}

.eh-loc-seeall:hover {
	background: var(--eh-green);
	color: #fff;
}

.eh-loc-seeall svg {
	width: 14px;
	height: 14px;
}

.eh-loc-nav {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.eh-loc-btn {
	width: 42px;
	height: 42px;
	border: 1px solid var(--eh-line);
	border-radius: 50%;
	background: #fff;
	color: var(--eh-ink);
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: 0.2s;
	box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.35);
}

.eh-loc-btn:hover:not(:disabled) {
	background: var(--eh-green);
	border-color: var(--eh-green);
	color: #fff;
}

.eh-loc-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.eh-loc-btn svg {
	width: 18px;
	height: 18px;
}

/* Collage mosaic */
.eh-loc-collage {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	grid-template-rows: 170px 170px;
	gap: 14px;
	margin-bottom: 18px;
}

.eh-loc-tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--eh-radius);
	text-decoration: none !important;
	background: linear-gradient(135deg, #2d5a45, #1f6b4a);
	box-shadow: 0 16px 36px -24px rgba(20, 26, 20, 0.55);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eh-loc-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 44px -20px rgba(31, 107, 74, 0.45);
}

.eh-loc-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.eh-loc-tile:hover img {
	transform: scale(1.06);
}

.eh-loc-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.72) 100%);
	z-index: 1;
}

.eh-loc-tile-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 16px 18px;
	color: #fff;
}

.eh-loc-tile-state {
	display: inline-block;
	margin-bottom: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eh-loc-tile h3 {
	margin: 0 0 4px;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.eh-loc-tile--hero h3 {
	font-size: clamp(22px, 2.8vw, 30px);
}

.eh-loc-tile-meta span {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	font-size: 12px;
	font-weight: 600;
}

.eh-loc-tile--hero {
	grid-row: 1 / 3;
	grid-column: 1;
}

.eh-loc-tile--a {
	grid-column: 2;
	grid-row: 1;
}

.eh-loc-tile--b {
	grid-column: 3;
	grid-row: 1;
}

.eh-loc-tile--c {
	grid-column: 2 / 4;
	grid-row: 2;
}

/* Slider */
.eh-loc-slider {
	position: relative;
}

.eh-loc-track-wrap {
	overflow: hidden;
	border-radius: var(--eh-radius);
}

.eh-loc-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 2px 14px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.eh-loc-track::-webkit-scrollbar {
	display: none;
}

.eh-loc-slide {
	flex: 0 0 calc(25% - 12px);
	min-width: 220px;
	scroll-snap-align: start;
}

.eh-loc-card {
	position: relative;
	display: block;
	height: 260px;
	border-radius: calc(var(--eh-radius) - 2px);
	overflow: hidden;
	text-decoration: none !important;
	background: linear-gradient(145deg, #315f48, #1f6b4a);
	box-shadow: 0 12px 28px -18px rgba(20, 26, 20, 0.5);
	transition: transform 0.25s ease;
}

.eh-loc-card:hover {
	transform: translateY(-5px);
}

.eh-loc-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.eh-loc-card:hover img {
	transform: scale(1.08);
}

.eh-loc-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78) 100%);
	z-index: 1;
}

.eh-loc-card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 16px;
	color: #fff;
}

.eh-loc-card-content h4 {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.eh-loc-card-content p {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	opacity: 0.9;
}

.eh-loc-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.eh-loc-dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 999px;
	background: #cfd8d2;
	cursor: pointer;
	padding: 8px;
	background-clip: content-box;
	min-width: 24px;
	min-height: 24px;
	box-sizing: content-box;
	transition: 0.25s;
}

.eh-loc-dot.is-active {
	width: 8px;
	padding: 8px;
	background: var(--eh-green);
}

@media (max-width: 992px) {
	.eh-loc-collage {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 200px 140px 140px;
	}

	.eh-loc-tile--hero {
		grid-column: 1 / 3;
		grid-row: 1;
	}

	.eh-loc-tile--a {
		grid-column: 1;
		grid-row: 2;
	}

	.eh-loc-tile--b {
		grid-column: 2;
		grid-row: 2;
	}

	.eh-loc-tile--c {
		grid-column: 1 / 3;
		grid-row: 3;
	}

	.eh-loc-slide {
		flex: 0 0 calc(50% - 8px);
		min-width: 200px;
	}
}

@media (max-width: 640px) {
	.eh-loc-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.eh-loc-head-right {
		width: 100%;
		justify-content: space-between;
	}

	.eh-loc-collage {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 12px;
		padding-bottom: 4px;
		scrollbar-width: none;
	}

	.eh-loc-collage::-webkit-scrollbar {
		display: none;
	}

	.eh-loc-tile {
		flex: 0 0 82%;
		min-height: 220px;
		scroll-snap-align: center;
	}

	.eh-loc-tile--hero,
	.eh-loc-tile--a,
	.eh-loc-tile--b,
	.eh-loc-tile--c {
		grid-column: auto;
		grid-row: auto;
	}

	.eh-loc-slide {
		flex: 0 0 78%;
		min-width: 0;
	}

	.eh-loc-card {
		height: 230px;
	}
}
