.property-location {
	background: var(--wp--preset--color--base);
	padding-block: var(--wp--custom--layout--section-space);
	padding-inline: var(--wp--custom--layout--gutter);
}
.property-location__inner { max-width: 1344px; margin: 0 auto; }
.property-location__title {
	margin: 0 0 var(--wp--preset--spacing--r-40);
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--r-48);
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--contrast);
}

.property-location__map-wrap {
	position: relative;
	z-index: 0;
	overflow: hidden;
	border-radius: var(--wp--custom--radius--lg, 24px);
}
.property-location__map {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1344 / 627;
	background: var(--wp--preset--color--surface-muted);
}
.property-location__map .leaflet-control-attribution { font-size: 10px; }

/* Адрес-карточка поверх карты (Figma 186:943). */
.property-location__card {
	position: absolute;
	left: var(--wp--preset--spacing--r-32);
	bottom: var(--wp--preset--spacing--r-32);
	z-index: 2;
	display: flex;
	align-items: flex-start;
	gap: var(--wp--preset--spacing--r-16);
	max-width: 360px;
	padding: var(--wp--preset--spacing--r-24) var(--wp--preset--spacing--r-32);
	background: var(--wp--preset--color--base);
	border-radius: var(--wp--custom--radius--md, 16px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.property-location__card-pin {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	background: var(--wp--preset--color--primary);
	-webkit-mask: url("../../assets/property/icons/location.svg") center / contain no-repeat;
	mask: url("../../assets/property/icons/location.svg") center / contain no-repeat;
}
.property-location__card-pin img { display: none; }
.property-location__card-addr { display: flex; flex-direction: column; gap: 2px; }
.property-location__card-addr p {
	margin: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--r-18);
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--primary-dark);
}

.property-location__pois {
	position: absolute;
	left: var(--wp--preset--spacing--r-16);
	right: var(--wp--preset--spacing--r-16);
	bottom: var(--wp--preset--spacing--r-16);
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	pointer-events: none;
}
.property-location__poi {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: var(--wp--preset--spacing--r-24);
	padding: var(--wp--preset--spacing--r-24);
	background: var(--wp--preset--color--base);
}
.property-location__poi-top {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--r-16);
	min-width: 0;
}
.property-location__poi-icon { flex: 0 0 40px; width: 40px; height: 40px; }
.property-location__poi-label {
	font-family: var(--wp--preset--font-family--body);
	font-weight: 400;
	font-size: var(--wp--preset--font-size--r-16);
	line-height: 1.5;
	letter-spacing: -0.16px;
	color: var(--wp--preset--color--muted);
}
.property-location__poi-time {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 600;
	font-size: var(--wp--preset--font-size--r-32);
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--contrast);
}

@media (max-width: 781px) {
	.property-location__map { aspect-ratio: 4 / 3; }
	.property-location__pois {
		position: static;
		grid-template-columns: repeat(2, 1fr);
		margin-top: var(--wp--preset--spacing--r-16);
	}
	.property-location__title { font-size: var(--wp--preset--font-size--r-40); }
	.property-location__card {
		left: 16px;
		right: 16px;
		bottom: 16px;
		max-width: none;
		padding: var(--wp--preset--spacing--r-16) var(--wp--preset--spacing--r-24);
	}
	.property-location__card-addr p { font-size: var(--wp--preset--font-size--r-16); }
}
@media (max-width: 420px) {
	.property-location__pois { grid-template-columns: 1fr; }
}
