/* Страница «Наши магазины» — карта и список одной высоты, скролл только у списка */

body.page-id-180 .map-container {
	display: flex;
	height: 606px;
	align-items: stretch;
	gap: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

body.page-id-180 #map {
	width: 66.666%;
	height: 100% !important;
	min-height: 0;
	flex-shrink: 0;
}

body.page-id-180 .shop-list {
	width: 33.333%;
	flex: 1;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0 6px 0 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

body.page-id-180 .shop-list::-webkit-scrollbar {
	width: 5px;
}

body.page-id-180 .shop-list::-webkit-scrollbar-track {
	background: transparent;
}

body.page-id-180 .shop-list::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.28);
	border-radius: 4px;
}

body.page-id-180 .shop-list::-webkit-scrollbar-thumb:hover {
	background-color: rgba(255, 255, 255, 0.42);
}

body.page-id-180 .shop-list li {
	padding-bottom: 2px;
}

@media (max-width: 1024px) {
	body.page-id-180 .map-container {
		height: auto;
		flex-direction: column;
		gap: 20px;
		overflow: visible;
	}

	body.page-id-180 #map {
		width: 100%;
		height: 450px !important;
	}

	body.page-id-180 .shop-list {
		width: 100%;
		height: auto;
		max-height: none;
		overflow: visible;
		padding: 0;
	}
}
