/* Footer Stack – Logo oben, darunter Copy, darunter Links (LINKSBÜNDIG) */

.footer-stack{
  display:flex;
  flex-direction:column;
  align-items:flex-start;   /* <- linksbündig */
  justify-content:flex-start;
  text-align:left;          /* <- Text links */
  gap:10px;
}

.footer-stack .footer-logo{
  display:block;
  height:auto;
  max-width:180px;          /* optional */
}

.footer-stack .footer-copy{
  opacity:.85;              /* optional */
}

.footer-stack__links{
  display:flex;
  align-items:center;
  justify-content:flex-start; /* <- Links links */
  gap:10px;
  flex-wrap:wrap;           /* Mobile: sauberer Umbruch */
}

/* Punkte dezenter */
.footer-stack__links .footer-dot{
  opacity:.7;
}