.sevenstay-destinations-map {
	--sevenstay-map-olive: #2e4229;
	--sevenstay-map-olive-deep: #22321f;
	--sevenstay-map-sand: #c9a46a;
	--sevenstay-map-stone: #d9cfbe;
	--sevenstay-map-cream: #f4efe6;
	--sevenstay-map-ink: #233126;
	--sevenstay-map-muted: #6b7766;
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	padding: 72px 24px;
	background:
		linear-gradient(180deg, rgba(244, 239, 230, 0.92), rgba(255, 255, 255, 0.98)),
		var(--sevenstay-map-cream);
	color: var(--sevenstay-map-ink);
}

.sevenstay-destinations-map__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
	gap: 28px;
	width: min(1180px, 100%);
	margin: 0 auto;
}

.sevenstay-destinations-map__content {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.sevenstay-destinations-map__list {
	display: grid;
	gap: 10px;
	margin-top: 8px;
}

.sevenstay-destinations-map__item {
	display: grid;
	gap: 5px;
	width: 100%;
	padding: 15px 16px;
	border: 1px solid rgba(46, 66, 41, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--sevenstay-map-ink);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.sevenstay-destinations-map__item span {
	font: 700 15px/1.2 "Inter", sans-serif;
}

.sevenstay-destinations-map__item small {
	color: var(--sevenstay-map-muted);
	font: 400 12px/1.35 "Inter", sans-serif;
}

.sevenstay-destinations-map__item:hover,
.sevenstay-destinations-map__item:focus {
	border-color: rgba(46, 66, 41, 0.42);
	background: #fff;
	color: var(--sevenstay-map-ink);
	outline: none;
}

.sevenstay-destinations-map__item:hover small,
.sevenstay-destinations-map__item:focus small {
	color: var(--sevenstay-map-muted);
}

.sevenstay-destinations-map__item.is-active {
	border-color: var(--sevenstay-map-olive);
	background: var(--sevenstay-map-olive);
	color: #fff;
}

.sevenstay-destinations-map__item.is-active:hover,
.sevenstay-destinations-map__item.is-active:focus {
	border-color: var(--sevenstay-map-olive);
	background: var(--sevenstay-map-olive);
	color: #fff;
}

.sevenstay-destinations-map__item.is-active small {
	color: rgba(255, 255, 255, 0.8);
}

.sevenstay-destinations-map__item.is-active:hover small,
.sevenstay-destinations-map__item.is-active:focus small {
	color: rgba(255, 255, 255, 0.8);
}

.sevenstay-destinations-map__map {
	min-height: 560px;
	border: 1px solid rgba(46, 66, 41, 0.16);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(35, 49, 38, 0.12);
	overflow: hidden;
}

.sevenstay-destinations-map__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 560px;
	border: 0;
}

.sevenstay-destinations-map__map iframe[hidden],
.sevenstay-destinations-map__empty[hidden] {
	display: none !important;
}

.sevenstay-destinations-map__empty {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
	min-height: 560px;
	padding: 24px;
	color: var(--sevenstay-map-muted);
	font: 500 15px/1.4 "Inter", sans-serif;
	text-align: center;
}

.sevenstay-destinations-map__empty strong {
	color: var(--sevenstay-map-ink);
	font: 700 20px/1.2 "Inter", sans-serif;
}

@media (max-width: 900px) {
	.sevenstay-destinations-map {
		padding: 52px 18px;
	}

	.sevenstay-destinations-map__inner {
		grid-template-columns: 1fr;
	}

	.sevenstay-destinations-map__map,
	.sevenstay-destinations-map__map iframe,
	.sevenstay-destinations-map__empty {
		min-height: 420px;
	}
}
