/* 푸터 */
footer.site-footer {
	display: flex;
  align-items: center;
  justify-content: center;
	gap: 20px;
	padding:10px 0;
	background: #333;
	color: #aaa;
	font-size: 0.8rem;
}
footer.site-footer a { color: #aaa; margin: 0 5px; }
footer.site-footer .divider { color: #bbb; font-size: 0.8em; margin: 0 4px; }
footer.app-footer { display:none; }

@media (max-width: 640px) {
	footer.site-footer {
		display: none;
	}
	footer.app-footer {
		display: block;
		text-align: center;
		padding: 15px 0;
		position: fixed;
		bottom: 0; left: 0; right: 0;
		z-index: 1100;
	}
}

@media (max-width: 640px) {
	body { background-color: var(--color-bg-light); }
}