  /* Âé¶¹´«Ã½Ó³»­ â€” scoped new footer (.sf-footer only) */

.sf-footer a {
	text-decoration: none;
}

/* Social bar */
.sf-footer__social {
	background: var(--gray-light);
	color: var(--blue);
	padding: 1.25rem 0;
}

.sf-footer__social-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
}

.sf-footer__social-heading {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--blue);
}

.sf-footer__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--blue-light);
	color: var(--blue);
	font-size: 1rem;
	flex-shrink: 0;
}

.sf-footer__social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sf-footer__social-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 1rem;
	color: var(--blue);
	text-decoration: none;
}

.sf-footer__social-links a:hover,
.sf-footer__social-links a:focus {
	color: var(--blue-med);
	text-decoration: none;
}

.sf-footer__social-links a:focus {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
}

.sf-footer__social-links .fab {
	font-size: 1.25rem;
}

.sf-footer__social-links .fa-facebook {
	color: #1877f2;
}

.sf-footer__social-links .fa-x-twitter {
	color: #000;
}

.sf-footer__social-links .fa-instagram {
	color: #e4405f;
}

.sf-footer__social-links .fa-youtube {
	color: #ff0000;
}

.sf-footer__social-links .fa-linkedin {
	color: #0a66c2;
}

@media (max-width: 991.98px) {
	.sf-footer__social {
		padding: 1.5rem 0;
	}

	.sf-footer__social-inner {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 1.25rem;
	}

	.sf-footer__social-heading {
		justify-content: center;
		width: 100%;
	}

	.sf-footer__social-links a {
		justify-content: center;
		min-height: 44px;
		padding: 0.625rem 0.75rem;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.sf-footer__social-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 0.75rem 1.5rem;
		width: 100%;
		margin: 0 auto;
	}

	.sf-footer__social-links li {
		flex: 0 1 auto;
	}

	.sf-footer__social-links a {
		width: auto;
		padding: 0.625rem 1rem;
	}
}

@media (max-width: 575.98px) {
	.sf-footer__social-links {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.5rem;
		max-width: 18rem;
		margin: 0 auto;
	}

	.sf-footer__social-links li {
		min-width: 0;
	}

	.sf-footer__social-links a {
		width: 100%;
	}
}

/* Main footer body */
.sf-footer__body {
	color: var(--white);
	background: var(--blue);
	--outline-hover-color: rgba(var(--outline-hover-color-rgb), .5);
	outline-offset: 1px !important;
}

.sf-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem 0;
	border-bottom: 1px solid var(--blue-med);
}

@media (min-width: 768px) {
	.sf-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: auto auto 1fr;
		gap: 0;
		align-items: start;
	}

	.sf-footer__column {
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 3;
		min-width: 0;
	}

	.sf-footer__column--address .sf-footer__brand {
		grid-row: 1;
	}

	.sf-footer__column-heading {
		grid-row: 2;
		margin-top: 0;
		align-self: start;
	}

	.sf-footer__column--address .sf-footer__address,
	.sf-footer__column--touch .sf-footer__links,
	.sf-footer__column--nav .sf-footer__links {
		grid-row: 3;
		align-self: start;
	}
}

.sf-footer__column {
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.sf-footer__column--touch,
	.sf-footer__column--nav {
		border-left: 1px solid var(--blue-med);
	}
}

@media (max-width: 767.98px) {
	.sf-footer__column {
		display: block;
		text-align: center;
	}

	.sf-footer__brand {
		margin-inline: auto;
	}

	.sf-footer__column--touch,
	.sf-footer__column--nav {
		border-top: 1px solid var(--blue-med);
		padding-top: 1.5rem;
	}

	.sf-footer__links li + li {
		margin-top: 0;
	}

	.sf-footer__links a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 44px;
		padding: 0.625rem 0;
	}

	.sf-footer__directions {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 44px;
	}
}

.sf-footer__column-heading {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blue-md-light-alt);
	margin: 1.5rem 0 1rem;
}

.sf-footer__column--address .sf-footer__column-heading {
	margin-top: 1.5rem;
}

.sf-footer__brand {
	display: block;
	width: 100%;
	max-width: 200px;
}

.sf-footer__brand img {
	display: block;
	width: 200px;
	max-width: 100%;
	height: auto;
}

.sf-footer__address {
	font-style: normal;
	margin: 0;
}

.sf-footer__address-line {
	display: block;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.5;
}

.sf-footer__directions {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--blue-md-light-alt);
	text-decoration: none;
}

.sf-footer__directions:hover,
.sf-footer__directions:focus {
	color: var(--white);
	text-decoration: underline;
}

.sf-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sf-footer__links li + li {
	margin-top: 0.625rem;
}

.sf-footer__links a {
	display: inline-block;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--white);
	text-decoration: none;
}

.sf-footer__links a:hover,
.sf-footer__links a:focus {
	color: var(--white);
	text-decoration: underline;
}

.sf-footer__legal {
	padding: 2.5rem 0 3rem;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.6;
	max-width: 52rem;
	margin: 0 auto;
}

.sf-footer__legal p {
	margin-bottom: 1.25rem;
}

.sf-footer__legal p:last-child {
	margin-bottom: 0;
}

.sf-footer__legal strong {
	font-weight: 700;
}

.sf-footer__body a:not(.btn) {
	color: var(--white);
}

.sf-footer__body a:not(.btn):hover,
.sf-footer__body a:not(.btn):focus {
	color: var(--white);
	outline: 3px solid #f4bb33 !important;
}

.sf-footer__legal a {
	text-decoration: underline;
}

.sf-footer__legal a:hover,
.sf-footer__legal a:focus {
	text-decoration: underline;
}
