/* Footer */
.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-h);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 24, .68);
  z-index: 40;
}
:root[data-theme="light"] .footer {
  background: rgba(245, 247, 251, .78);
}

.footer__inner {

    font-size: 12px;
    height: var(--footer-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;



}

a {

    text-decoration: none;
}

.footer__nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  white-space: nowrap;
}
.footer__sep { opacity: .5; }

@media (max-width: 680px) {
  .footer__inner { flex-direction: column; justify-content: center; padding: 6px 0; }
  :root { --footer-h: 74px; }
}
