/* =========================
   📌 공통 Footer
========================= */
.site-footer {
  background: #f9f9f9;
  padding: 30px 15px;
  color: #444;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-links {
  text-align: center;
  margin-bottom: 15px;
}
.site-footer .footer-links a {
  text-decoration: none;
  color: #555;
  margin: 0 6px;
  font-size: 14px;
}
.site-footer .footer-links a:hover {
  color: #ff5b5b;
}

.site-footer .footer-info {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 15px;
}
.site-footer .footer-info a {
  color: #444;
  text-decoration: none;
}
.site-footer .footer-info a:hover {
  text-decoration: underline;
}

.site-footer .footer-notice {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-bottom: 10px;
}

.site-footer .copyright {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 10px;
}

/* 기본값: PC에서는 안 보임 */
.nav-bar {
  display: none;
}

/* 모바일 전용 (767px 이하에서만 보임) */
@media (max-width: 767px) {
      .site-footer {
    font-size: 12px;
    padding: 20px 10px;
  }
  .site-footer .footer-info p {
    margin: 3px 0;
  }
  .nav-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 1000;

    justify-content: space-around;
    align-items: center;
  }

  .nav-bar a {
    flex: 1;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-bar a i {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .nav-bar a.active {
    color: #ff5b5b;
  }
}
