/* ================================================
   footer.css — LMS 공통 푸터
   /lms/inc/footer.php <style> 블록에서 분리
   ================================================ */

/* ══ FOOTER ══ */
footer {
  background: rgba(7,16,32,0.9);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--accent);
}
.footer-logo em { color: var(--accent2); font-style: normal; }

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ══ 반응형 ══ */
@media (max-width: 900px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }
}
