/* ==========================================================================
   footer.css
   ========================================================================== */

.site-footer {
	margin-top: var(--s-8);
	border-top: 1px solid var(--line);
	background: color-mix(in srgb, var(--mint) 45%, var(--paper));
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4);
	padding-block: var(--s-6);
}

.site-footer__brand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s-4);
}

.site-footer__brand img {
	height: 1.5rem;
	width: auto;
}

.site-footer p {
	font-size: var(--t-sm);
	color: var(--ink-muted);
}

.site-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: var(--s-2);
	font-size: var(--t-sm);
	color: var(--ink-muted);
}

.site-footer__credit a {
	color: var(--ink);
	font-weight: 600;
}

@media (max-width: 47.99rem) {
	.site-footer__inner {
		flex-direction: column;
		text-align: center;
	}

	.site-footer__brand {
		justify-content: center;
	}
}
