.site-footer {
	padding: 24px 0;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

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

.footer-inner nav {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-inner nav a {
	color: var(--muted);
	text-decoration: none;
}

.footer-inner nav a:hover {
	color: #1f2937;
}

.brand.tiny {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
}

.footer-donate {
	display: flex;
	align-items: center;
	border-left: 1px solid var(--line);
	padding-left: 16px;
}

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

.footer-donate input[type="image"] {
	height: 24px;
	width: auto;
	transition: transform 0.15s ease;
}

.footer-donate input[type="image"]:hover {
	transform: scale(1.05);
}

@media (max-width: 680px) {
	.footer-inner {
		flex-direction: column;
		gap: 16px;
	}

	.footer-left {
		width: 100%;
		justify-content: center;
	}

	.footer-inner nav {
		width: 100%;
		justify-content: center;
	}
}
