/**
 * Location CPT (24 city x practice-area pages). Token-driven translation
 * consistent with home.css/base.css — not chased through the same exhaustive
 * per-pixel CSS extraction as header/footer; flagged for a visual QA pass.
 */

.location-hero {
	background-size: cover;
	background-position: center;
	background-color: var(--plf-color-bg-cream);
	padding: 160px 0 60px;
	text-align: center;
}

@media (max-width: 767px) {
	.location-hero {
		padding: 120px 0 40px;
	}
}

.location-hero__breadcrumb {
	display: flex;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	color: var(--plf-color-text-black);
	margin-bottom: 15px;
}

.location-hero__breadcrumb a {
	color: var(--plf-color-primary);
	text-decoration: none;
}

.location-hero__title {
	max-width: 800px;
	margin: 0 auto 15px;
}

.location-hero__subtitle {
	max-width: 640px;
	margin: 0 auto 20px;
}

.location-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	padding: 80px 0;
}

.location-main {
	flex: 1 1 65%;
	min-width: 300px;
}

.location-block {
	margin-bottom: 40px;
}

.location-block__image img {
	width: 100%;
	margin-bottom: 20px;
}

.location-block__body ul {
	margin: 0 0 16px;
	padding-left: 20px;
}

.location-block__body li {
	margin-bottom: 10px;
}

.location-cta-embed {
	background: var(--plf-color-bg-cream);
	border: 1px solid var(--plf-color-border);
	padding: 30px;
	margin-top: 40px;
}

.location-sidebar {
	flex: 1 1 30%;
	min-width: 280px;
	align-self: flex-start;
	position: sticky;
	top: 20px;
	background-color: var(--plf-color-secondary);
	background-size: cover;
	background-position: center;
	color: var(--plf-color-accent);
	padding: 30px;
}

.location-sidebar__section {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.location-sidebar__section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.location-sidebar h3,
.location-sidebar h4,
.location-sidebar p {
	color: var(--plf-color-accent);
}

.location-sidebar__office {
	margin-top: 15px;
}

.location-sidebar__links,
.location-sidebar__socials {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.location-sidebar__socials {
	flex-direction: row;
}

.location-sidebar__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--plf-color-accent);
	text-decoration: none;
}

.location-sidebar__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--plf-color-primary);
	color: var(--plf-color-accent);
}

.location-final-cta {
	background: var(--plf-color-secondary);
	color: var(--plf-color-accent);
	padding: 60px 0;
	text-align: center;
}

.location-final-cta h2,
.location-final-cta p {
	color: var(--plf-color-accent);
}

@media (max-width: 1024px) {
	.location-layout {
		flex-direction: column;
	}
	.location-sidebar {
		position: static;
	}
}
