/* Site footer bottom bar */

.site-footer {
	background-color: var(--color-bg-dark);
	color: rgba(255, 255, 255, 0.5);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-sm);
	padding-block: var(--space-lg);
	font-size: var(--fs-small);
	line-height: 1.4;
}

.site-footer__copyright {
	margin: 0;
}

.site-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding: 0.4rem 0.7rem 0.4rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius-full);
	background-color: transparent;
	color: #fff;
	line-height: 1;
	text-decoration: none;
	transition:
		border-color var(--transition-fast),
		background-color var(--transition-fast);
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
	border-color: rgba(255, 255, 255, 0.45);
	background-color: rgba(255, 255, 255, 0.06);
}

.site-footer__credit-text {
	font-size: 0.68rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-footer__credit-logo {
	display: block;
	width: auto;
	height: 1.15rem;
	object-fit: contain;
	/* SD.png has a black canvas; lighten blends it out on the dark footer. */
	mix-blend-mode: lighten;
}

@media (min-width: 768px) {
	.site-footer__bottom {
		flex-direction: row;
		align-items: center;
	}
}
