/* ============================================
   FOOTER
   Site footer with copyright
   ============================================ */

footer {
  /* Layout */
  position: relative;
  width: 100%; /* Ändere von 100vw zu 100% */
  padding: 1.25rem;
  
  /* Typography */
  text-align: center;
  
  /* Visual */
  background: var(--gradient-bg-base);
}


/* ============================================
   FOOTER TEXT
   ============================================ */

footer p {
  margin-bottom: 0;
  font-size: 0.875rem;
  width: 100%;
  color: var(--color-text-light);
  opacity: 0.8;
}


/* ============================================
   RESPONSIVE DESIGN
   Mobile footer adjustments
   ============================================ */

@media (max-width: 48rem) {
  footer {
    padding: 1rem;
  }

  footer p {
    font-size: 0.8125rem;
  }
}
