.site-footer {
	border-top: 1px solid #e7e7e7;
	background: #fff;
	padding: 18px 0 20px;
}

.site-footer__desktop {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 12px;
	line-height: 1.4;
	color: #111;
}

.site-footer__desktop a {
	color: #111;
	text-decoration: none;
	white-space: nowrap;
}

.site-footer__desktop a:hover {
	color: #F95C20;
}

.site-footer__copyright {
	margin-left: auto;
	color: #666;
	white-space: nowrap;
}

.site-footer__mobile {
	display: none;
}

@media (max-width: 780px) {
	.site-footer {
		padding: 20px 0 24px;
	}

	.site-footer__desktop {
		display: none;
	}

	.site-footer__mobile {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 18px;
		row-gap: 12px;
		font-size: 12px;
		line-height: 1.4;
		text-align: center;
	}

	.site-footer__mobile a {
		color: #111;
		text-decoration: none;
		white-space: nowrap;
	}

	.site-footer__mobile a:hover {
		color: #F95C20;
	}
}
