/* ============================================================
   Site footer — global, theme-rendered (footer.php).
   Single home for footer styles (previously duplicated across the
   assets-plugin front.css + page-locations.css + theme-base.css and
   misnamed "tt-locations-footer-*"). Enqueued site-wide.
   ============================================================ */

.tt-footer {
	background: #f4f4f5;
	border-top: 1px solid #e4e4e7;
	color: #71717a;
	clear: both;
}

.tt-footer a {
	color: #71717a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tt-footer a:hover,
.tt-footer a:focus {
	color: #0a0a0a;
	text-decoration: none;
}

.tt-footer-desktop {
	display: none;
}

.tt-footer-inner {
	max-width: 1050px; /* match the header (.tt-desktop-header__inner) */
	margin: 0 auto;
	padding: 40px 24px;
}

.tt-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-bottom: 32px;
}

.tt-footer-heading {
	margin: 0 0 16px;
	color: #0a0a0a;
	font-size: 14px;
	font-weight: 600;
}

.tt-footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-footer-list li {
	margin-bottom: 8px;
}

.tt-footer-list a {
	font-size: 14px;
}

.tt-footer-bar {
	border-top: 1px solid #e4e4e7;
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.tt-footer-copy {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.tt-footer-sep {
	color: #a1a1aa;
}

.tt-footer-social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.tt-footer-social-icon {
	width: 20px;
	height: 20px;
	display: block;
}

.tt-footer-mobile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	padding: 15px;
	max-width: 100%;
	box-sizing: border-box;
}

@media (max-width: 1023px) {
	.tt-footer-mobile {
		padding-bottom: 85px;
	}
}

.tt-footer-mobile-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 15px;
	font-size: 14px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.tt-footer-mobile-nav a {
	white-space: nowrap;
	color: #71717a;
	text-overflow: clip;
}

.tt-footer-mobile-nav a:hover,
.tt-footer-mobile-nav a:focus {
	color: #0a0a0a;
}

.tt-footer-mobile .tt-footer-social {
	gap: 20px;
}

.tt-footer-mobile .tt-footer-social a {
	color: #71717a;
}

.tt-footer-mobile .tt-footer-social a:hover,
.tt-footer-mobile .tt-footer-social a:focus {
	color: #0a0a0a;
}

.tt-footer-copy-mobile {
	margin: 0;
	font-size: 12px;
	color: #71717a;
	text-align: center;
}

@media (min-width: 1024px) {
	.tt-footer-desktop {
		display: block;
	}

	.tt-footer-mobile {
		display: none;
	}
}
