/* Shelbyville Location Maps — location archive banner */

.slm-location-map-banner {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	min-height: 350px;
	margin: 0 0 30px;
	border-radius: 4px;
	overflow: hidden;
	background: #f8f8f8;
}

/* Left column — title + description (35%) */
.slm-location-info {
	flex: 0 0 35%;
	width: 35%;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.slm-location-title {
	margin: 0 0 14px;
	font-size: 1.6em;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.slm-location-description {
	font-size: 0.95em;
	line-height: 1.7;
	color: #555;
}

.slm-location-learn-more {
	display: inline-block;
	align-self: flex-start;
	width: fit-content;
	max-width: 100%;
	margin-top: 8px;
	padding: 4px 10px;
	font-size: 0.95em;
	line-height: 1.7;
	color: #5C2E7E;
	text-decoration: none;
	background: transparent;
	border: 2px solid #5C2E7E;
	border-radius: 4px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.slm-location-learn-more:hover,
.slm-location-learn-more:focus {
	color: #fff;
	background-color: #5C2E7E;
	text-decoration: none;
}

/* Right column — map image (65%) */
.slm-location-image {
	flex: 0 0 65%;
	width: 65%;
	overflow: hidden;
}

.slm-location-map-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

/* Google Maps embed — fill the image column */
.slm-location-embed {
	width: 100%;
	height: 100%;
}

.slm-location-embed iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-height: 350px;
	border: 0;
}

/* Mobile — stack vertically */
@media (max-width: 768px) {
	.slm-location-map-banner {
		flex-direction: column;
		min-height: auto;
		margin-bottom: 20px;
	}

	.slm-location-info,
	.slm-location-image {
		flex: none;
		width: 100%;
	}

	.slm-location-image {
		height: 250px;
	}
}
