/* Partners Bowls – Locaties kaart + lijst (lijst boven, kaart 100% breed) */

.pb-locaties-wrap {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin: 1rem 0;
}

.pb-locaties-list {
	width: 100%;
}

.pb-locaties-list-title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
}

/* Lijst in 3 kolommen */
.pb-locaties-list-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem 2rem;
}

/* Een kolom kan meerdere categorieën bevatten (onder elkaar) */
.pb-locaties-column {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.pb-locaties-category {
	margin-bottom: 0;
}

.pb-locaties-category-title {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: #1e293b;
}

.pb-locaties-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pb-locaties-category-list li {
	margin: 0.5rem 0;
}

.pb-locaties-list-link {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	width: 100%;
	padding: 0.25rem 0;
	text-align: left;
	background: transparent !important;
	background-color: transparent !important;
	border: none;
	border-radius: 0;
	color: #334155;
	text-decoration: none;
	font: inherit;
	cursor: pointer;
	transition: text-decoration 0.15s;
}

.pb-locaties-list-link:hover,
.pb-locaties-list-link:focus {
	text-decoration: underline;
	color: #334155;
	background-color: transparent !important;
	background: transparent !important;
}

.pb-locaties-list-icon {
	flex-shrink: 0;
	color: var(--pb-cat-color, #3366cc);
	line-height: 0;
}

.pb-locaties-list-icon svg {
	display: block;
	vertical-align: middle;
}

.pb-locaties-list-content {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.pb-locaties-list-naam {
	font-weight: 500;
}

.pb-locaties-list-adres {
	font-size: 0.875em;
	color: #64748b;
	line-height: 1.3;
}

.pb-locaties-map-container {
	width: 100%;
	min-height: 800px;
}

.pb-locaties-map {
	width: 100%;
	height: 100%;
	min-height: 800px;
	border-radius: 8px;
	overflow: hidden;
}

/* Pop-up inhoud (InfoWindow) */
.pb-locaties-popup {
	padding: 0.25rem;
	min-width: 220px;
	max-width: 320px;
}

.pb-locaties-popup-naam {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.pb-locaties-popup-adres,
.pb-locaties-popup-categorie,
.pb-locaties-popup-website {
	margin: 0.25rem 0;
	font-size: 0.875rem;
	line-height: 1.4;
}

.pb-locaties-popup-website a {
	color: #2563eb;
}

.pb-locaties-error {
	padding: 1rem;
	background: #fef2f2;
	border-left: 4px solid #dc2626;
	color: #991b1b;
}

@media (max-width: 768px) {
	.pb-locaties-list-inner {
		grid-template-columns: 1fr;
	}
	.pb-locaties-map-container {
		min-height: 700px;
	}
	.pb-locaties-map {
		min-height: 700px;
	}
}
