/* ================================
   Footer Layout – SPÖ Hohenems
   ================================ */

.site-footer .footer-inner{
  padding: 28px 16px;
}

/* Desktop: 3 Spalten */
.footer-widgets-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

/* Tablet: 2 Spalten */
@media (max-width: 992px){
  .footer-widgets-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-col-3{
    grid-column: 1 / -1;
  }
}

/* Smartphone: 1 Spalte */
@media (max-width: 640px){
  .footer-widgets-grid{
    grid-template-columns: 1fr;
  }
  .footer-col-3{
    grid-column: auto;
  }
}

/* Footer Bottom */
.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-menu a{
  text-decoration: none;
}
