/* 푸터 소셜 링크 — 사업자 정보 위 단색 아이콘 줄.
   전역 누수 방지를 위해 모든 선택자를 .hello-child-footer 하위로 한정한다.

   --hc-social-knockout: 네이버 블로그 아이콘의 글자색.
   푸터 배경(.hello-child-footer-main #F8F9FA)과 같아야 글자가 파인 것처럼 보인다.
   푸터 배경을 바꾸면 이 값도 같이 바꾼다. */
.hello-child-footer .hc-social-links {
	--hc-social-knockout: #F8F9FA;

	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 0 0 12px;
}

.hello-child-footer .hc-social-links__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: #8B95A1;
	opacity: 0.9;
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}

.hello-child-footer .hc-social-links__item:hover,
.hello-child-footer .hc-social-links__item:focus-visible {
	color: #4E5968;
	opacity: 1;
}

.hello-child-footer .hc-social-links__item:focus-visible {
	outline: 2px solid var(--color-primary, #0064FF);
	outline-offset: 3px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.hello-child-footer .hc-social-links {
		justify-content: center;
	}
}
