/* ═══════════════════════════════════════════════════════════════
   PAGE FOOTER — Vokabel.Lab
═══════════════════════════════════════════════════════════════ */

.app-footer {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
}

.app-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.app-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.app-footer-appname {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1b1b1b;
}

.app-footer-by {
  display: block;
  font-size: 11px;
  color: #a4a4a4;
  margin-top: 1px;
}

.app-footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.app-footer-link {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 12px;
  color: #6e6e6e;
  text-decoration: none;
  transition: color .15s;
}

.app-footer-link:hover { color: #3AA9AB; }

.app-footer-copy {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 12px;
  color: #b8b8b8;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .app-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
  }
  .app-footer-copy { align-self: flex-start; }
}
