/* ============================================================
   SITE FOOTER — social links + bottom bar
   Replaces inline styles from template-parts/footer.php
   ============================================================ */

.footer-socials {
	display: flex;
	gap: var(--sp-2);
	margin-top: var(--sp-5);
	flex-wrap: wrap;
}

.footer-social {
	width: 36px;
	height: 36px;
	background: var(--bg-surface-2);
	border: 1px solid var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--txt-secondary);
	text-decoration: none;
	transition: all var(--transition-fast);
}
.footer-social:hover {
	background: var(--clr-primary);
	color: var(--txt-on-primary);
	border-color: var(--clr-primary);
	transform: translateY(-2px);
}

.footer-brand .site-logo {
	margin-bottom: var(--sp-3);
}

.footer-bottom {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-bottom__credit {
	display: flex;
	align-items: center;
	gap: var(--sp-1);
}
