/* ==========================================================
   LAYOUT: Footer
   Seitenfuß
   ========================================================== */

footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 0.8rem;
  font-size: 0.65rem;
  line-height: 1.2;
  position: relative;
  margin-top: auto;
}

footer a {
  color: #ffee99;
  text-decoration: underline;
  font-weight: 500;
  font-size: inherit;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-top {
  margin-bottom: 0.3rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: inherit;
}

.footer-links .sep {
  color: #ccc;
}

footer::before {
  content: "🔒";
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 22px;
  opacity: 0.8;
  cursor: pointer;
}

@media (max-width: 480px) {
  footer {
    font-size: 0.5rem;
    padding: 1rem 0.5rem;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
}