/* Map Block Styles */
.ds-map__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 20px;
}

/* Header Section */
.ds-map__header {
	margin-bottom: 60px;
	text-align: center;
}

.ds-map__headline {
	font-size: 1.5rem;
	line-height: 1.6;
	color: #2c2c2c;
	margin: 0 auto 40px;
	max-width: 600px;
	font-weight: 600;
}

/* Stats Row */
.ds-map__stats {
	display: flex;
	gap: 60px;
	justify-content: center;
	flex-wrap: wrap;
	align-items: baseline;
}

.ds-map__stat {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	position: relative;
	text-align: center;
}

.ds-map__stat::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #1a1a1a;
	opacity: 0.2;
}

/* Map Container */
.ds-map__container {
	margin: 0 auto 60px;
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ds-map__container img,
.ds-map__container svg {
	width: 100%;
	height: auto;
	display: block;
	max-width: 100%;
}

.ds-map__container svg {
	max-height: none;
}

/* Mobile Map */
.ds-map__mobile {
	display: none;
	margin-bottom: 60px;
}

.ds-map__mobile-link {
	display: block;
}

.ds-map__mobile img {
	width: 100%;
	height: auto;
	display: block;
}

/* Communities List */
.ds-map__communities {
	max-width: 1200px;
	margin: 0 auto;
}

.ds-map__communities-list {
	list-style: none;
	margin: 0;
	padding: 0;
	columns: 2;
	column-gap: 20px;
	counter-reset: community-counter;
}

.ds-map__community-item {
	display: flex;
	gap: 6px;
	padding: 0;
	margin: 0 0 12px 0;
	line-height: 1.3;
	counter-increment: community-counter;
	break-inside: avoid;
}

.ds-map__community-item::before {
	content: counter(community-counter) ". ";
	font-weight: 700;
	color: #1a1a1a;
	font-size: 0.938rem;
	flex-shrink: 0;
}

.ds-map__community-name {
	font-weight: 700;
	color: #1a1a1a;
	font-size: 0.938rem;
	flex-shrink: 0;
	margin-right: 4px;
}

.ds-map__community-address {
	color: #666;
	font-size: 0.938rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
	.ds-map__inner {
		padding: 60px 24px;
	}
	
	.ds-map__stats {
		gap: 40px;
	}
	
	.ds-map__headline {
		font-size: 1.375rem;
	}
	
	.ds-map__communities-list {
		columns: 1;
		column-gap: 0;
	}
}

@media screen and (max-width: 768px) {
	.ds-map__inner {
		padding: 50px 20px;
	}
	
	.ds-map__header {
		margin-bottom: 40px;
	}
	
	.ds-map__headline {
		font-size: 1.25rem;
		line-height: 1.55;
		margin-bottom: 32px;
		max-width: 500px;
	}
	
	.ds-map__stats {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}
	
	.ds-map__stat {
		font-size: 0.813rem;
	}
	
	.ds-map__stat::after {
		bottom: -6px;
	}
	
	/* Hide desktop map, show mobile map on small screens */
	.ds-map__container {
		display: none;
	}
	
	.ds-map__mobile {
		display: block;
	}
	
	.ds-map__communities-list {
		columns: 1;
		column-gap: 0;
	}
	
	.ds-map__community-item {
		margin-bottom: 12px;
		flex-wrap: wrap;
		line-height: 1.3;
	}
	
	.ds-map__community-name,
	.ds-map__community-address {
		font-size: 0.875rem;
	}
	
	.ds-map__community-item::before {
		font-size: 0.875rem;
	}
}

@media screen and (max-width: 480px) {
	.ds-map__inner {
		padding: 40px 16px;
	}
	
	.ds-map__headline {
		font-size: 1.125rem;
		max-width: 100%;
	}
	
	.ds-map__stat {
		font-size: 0.75rem;
	}
	
	.ds-map__community-name,
	.ds-map__community-address {
		font-size: 0.813rem;
	}
}
