.app-footer {
  flex-shrink: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #dfe5ec;
  box-shadow: 0 -2px 10px rgba(15, 23, 42, 0.04);
  color: #334155;
  padding: 0.85rem 1rem;
  text-align: center;
}

.app-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 1.35rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-footer a {
  color: #0d6efd;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.app-footer a:hover {
  color: #084298;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .app-footer__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
  }

  .app-footer a {
    white-space: normal;
  }
}
