@charset "UTF-8";
/* =============================================================
   footer-policy.css
   푸터 하단 정책 링크(개인정보처리방침) 전용.
   common.css 의 .footer / .footer__info 규칙은 건드리지 않는다.
   ============================================================= */

.footer__policy {
  margin-top: 1.6rem;
}

.footer__policy a {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.footer__policy a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer__policy {
    margin-top: 1.2rem;
  }
  .footer__policy a {
    font-size: 13px;
  }
}
