footer.site-footer {
  height: 5vh; /* 고정 높이 제거 */
  padding: 0.3rem 0.5rem; /* 패딩 줄이기 */
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: #555;

  /* 고정 해제 */
  position: static; /* 또는 없애도 됨 */
  bottom: auto;
  width: 100%;
}

footer.site-footer > div {
  margin-bottom: 0.4rem; /* 간격 축소 */
}

footer.site-footer a {
  color: #333;
  text-decoration: none;
  margin-right: 0.6rem; /* 여백도 살짝 줄임 */
  font-size: 0.8rem;
}

footer.site-footer a:last-child {
  margin-right: 0;
}

footer.site-footer .disclaimer {
  font-size: 0.7rem;
  color: #888;
}
@media (max-width: 768px) {
  footer.site-footer {
    font-size: 0.75rem;
    padding: 0.2rem 0.3rem;
  }
  footer.site-footer .disclaimer {
    font-size: 0.65rem;
  }
}
