/* Footer */
.site-footer {
	border-top: 1px solid #1b1b1a;
	margin: 0 1.06vw;
}

.footer-content {
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-row {
	display: flex;
	align-items: center;
}

.footer-row--legal {
	gap: 2rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-links a {
	color: #1b1b1a;
	font-family: "Open Sauce Two", sans-serif;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0.14px;
	text-align: center;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

/* Responsive Mobile */
@media (max-width: 767px) {
	.logo-sur {
		display: none;	
	}

	.footer-row--social {
		display: none;
	}

	.site-footer {
		margin: 0 16px;
	}

	.footer-content {
		padding: 16px;
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}

	.footer-row--legal {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
		width: 100%;
	}

	.footer-links {
		gap: 24px;
	}

	.footer-links a {
		font-size: 12px;
	}
}