.site-footer {
	background: var(--color-nav-bg);
	color: var(--color-nav-text);
	padding: 1.25rem 2rem;
	flex-shrink: 0;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.footer-logo img {
	height: 48px;
	width: auto;
}

.footer-nav {
	display: flex;
	gap: 1.25rem;
}

.footer-nav a {
	font-size: 0.9375rem;
	color: var(--gray-400);
}

.footer-nav a:hover {
	color: var(--text-primary);
}

.footer-info {
	font-size: 0.875rem;
	color: var(--gray-500);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-info p {
	margin: 0;
}

.footer-info a {
	color: var(--gray-400);
}

.footer-info a:hover {
	color: var(--text-primary);
}

.step-logo img {
	height: 36px;
	width: auto;
	opacity: 0.7;
}

@media (max-width: 1100px) {
	.footer-content {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 0.875rem;
	}

	.footer-nav {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 0.5rem;
	}

	.footer-info {
		justify-content: center;
	}
}

@media (max-width: 860px) {
	.site-footer {
		padding: 0.875rem 1rem;
	}

	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.5rem;
	}

	.footer-logo img {
		height: 32px;
	}

	.footer-nav {
		justify-content: center;
		row-gap: 0.25rem;
	}

	.footer-info {
		flex-direction: column;
		gap: 0.25rem;
		text-align: center;
	}

	.step-logo img {
		height: 28px;
	}
}

@media (max-width: 560px) {
	.footer-nav a {
		font-size: 0.9rem;
	}

	.footer-info {
		font-size: 0.85rem;
	}

	.step-logo img {
		height: 26px;
	}
}
