// ============================================
// DATEI: assets/css/standorte.css (ERSETZEN - für Ihr Layout)
// ============================================
/* 
 * Standorte Styling - Angepasst an Growe Layout
 */

.standorte-wrapper {
	width: 100%;
}

/* Google Maps Container */
.standorte-map {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Standorte Grid */
.standorte-grid {
	width: 100%;
}

/* Responsive Grid Anpassungen */
@media (max-width: 1024px) {
	.standorte-grid[data-columns="4"],
	.standorte-grid[data-columns="3"] {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.standorte-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Standort Karte - Minimalistisches Design wie in Ihrem Original */
.standort-card {
	padding: 20px;
	background: transparent;
	border: none;
	border-radius: 0;
	transition: all 0.3s ease;
	cursor: default;
}

.standort-card.has-map-interaction {
	cursor: pointer;
}

.standort-card.has-map-interaction:hover {
	background: rgba(0, 0, 0, 0.02);
}

.standort-card.active {
	background: rgba(0, 102, 204, 0.05);
}

/* Standort Titel */
.standort-title {
	margin: 0 0 15px 0;
	font-size: 16px;
	font-weight: 700;
	color: #333;
	line-height: 1.4;
}

/* Standort Content */
.standort-content {
	line-height: 1.8;
	color: #666;
}

.standort-line {
	margin: 2px 0;
	font-size: 14px;
	line-height: 1.6;
}

.standort-line a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.standort-line a:hover {
	color: #0066cc;
}

.standort-link {
	color: #0066cc;
	text-decoration: underline;
}

.standort-link:hover {
	color: #0052a3;
}

/* Google Maps InfoWindow Styling */
.gm-style .gm-style-iw-c {
	border-radius: 8px;
	padding: 0;
}

.gm-style .gm-style-iw-d {
	overflow: auto !important;
}

/* Print Styles */
@media print {
	.standorte-map {
		display: none;
	}
	
	.standort-card {
		break-inside: avoid;
		page-break-inside: avoid;
	}
}