.site-footer {
	background-color: var(--white-color);
	color: var(--text-color);
	font-size: 1.4rem;
	border-top: 1px solid #f4f4f4;
	border-bottom: 6px solid var(--primary-color);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
}

.footer__brand img {
	max-height: 34px;
	display: block;
}

.footer__right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer__link {
	color: var(--badge-color);
	transition: color .15s ease-in-out;
}

.footer__link:hover,
.footer__link:focus {
	color: var(--primary-color);
}

.footer__copy {
	color: var(--badge-color);
	font-size: 1.4rem;
}


@media (max-width: 768px) {
	.site-footer__inner {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.footer__right {
		display: flex;
		gap: 12px;
		flex-direction: column;
		justify-content: center;
	}
}