/**
 * Contact Location - "How To Find Us"
 * Two columns: left text (address, directions, CTA), right Google Maps
 * Light grey/white background per Figma
 */

.contact-location {
	padding: 0;
	background: #f5f5f5;
}

.contact-location__inner {
	background-color: #fff;
}

@media (min-width: 768px) {
	.contact-location__inner {
		display: flex;
		padding: 0;
	}
	.contact-location__content {
		max-width: 50%;
	}
}

.contact-location__content {
	order: 1;
	padding: 48px 24px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1100px) {
	.contact-location__content {
		padding: 64px 48px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		max-width: 560px;
		margin-left: auto;
		margin-right: auto;
	}
}

.contact-location__title {
	color: #000;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: capitalize;
	margin: 0 0 24px;
}

@media (min-width: 768px) {
	.contact-location__title {
		font-size: 32px;
		margin-bottom: 28px;
	}
}

.contact-location__body {
	color: #333;
	font-family: "Nunito", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.contact-location__body p {
	margin: 0 0 16px;
}

.contact-location__body p:last-child {
	margin-bottom: 0;
}

.contact-location__cta-wrap {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

.contact-location__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 50px;
	background-color: #8ea9a2;
	color: #fff;
	text-decoration: none;
	font-family: "Nunito", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
	border: none;
	transition: background-color 0.2s, color 0.2s;
}

.contact-location__cta:hover {
	background-color: black;
	color: #fff;
}

.contact-location__map {
	order: 2;
	min-height: 300px;
}

.contact-location__map-inner {
	width: 100%;
	height: 100%;
	min-height: 300px;
}

.contact-location__map-inner iframe {
	width: 100%;
	height: 100%;
	min-height: 300px;
	display: block;
	border: 0;
}

@media (min-width: 768px) {
	.contact-location__map-inner iframe {
		min-height: 400px;
	}
	.contact-location__map {
		width: 50%;
	}
}

.contact-location__map-placeholder {
	width: 100%;
	min-height: 300px;
	background: #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
}

.contact-location__map-placeholder p {
	font-family: "Nunito", Arial, Helvetica, sans-serif;
	color: #666;
	font-size: 14px;
	margin: 0;
	text-align: center;
}
