.location-map-page {
	box-sizing: border-box;
	min-height: 100vh;
	padding: 32px;
	background: #f4f1e8;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.location-map {
	position: relative;
	width: 100%;
	height: var(--location-map-desktop-height, 720px);
	overflow: hidden;
	border-radius: 18px;
	background: #e6e6dc;
}

.place-marker {
	min-width: 260px;
	padding: 14px 18px 12px;
	border-radius: 18px;
	background: rgba(246, 246, 237, 0.88);
	backdrop-filter: blur(4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	text-align: center;
	user-select: none;
	transform: translateY(-8px);
}

.place-marker.has-title-images {
	min-width: 420px;
}

.place-marker.featured {
	background: rgba(67, 68, 61, 0.82);
	color: #fff;
}

.place-marker-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 10px;
}

.place-title-images {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
}

.place-title-image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	overflow: hidden;
}

.place-title-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.place-title {
	color: #181818;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	white-space: nowrap;
}

.featured .place-title {
	color: #fff;
}

.pill-row {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: nowrap;
}

.time-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #050505;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
	white-space: nowrap;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.small-pin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 15px;
	border-radius: 999px;
	background: #9ca85e;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.07em;
	white-space: nowrap;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}

.maplibregl-ctrl-bottom-left,
.maplibregl-ctrl-bottom-right {
	display: none;
}

@media (max-width: 768px) {
	.location-map-page {
		padding: 16px;
	}

	.location-map {
		height: var(--location-map-mobile-height, 620px);
	}

	.place-marker {
		min-width: 190px;
		padding: 10px 12px;
	}

	.place-marker.has-title-images {
		min-width: 290px;
	}

	.place-marker-header {
		gap: 9px;
		margin-bottom: 7px;
	}

	.place-title-images {
		gap: 4px;
	}

	.place-title-image {
		width: 24px;
		height: 24px;
		border-radius: 7px;
	}

	.place-title {
		font-size: 12px;
	}

	.time-pill {
		padding: 5px 9px;
		font-size: 11px;
	}
}
