/**
 * ==========================================================================
 * HELENERIU.FR — fixes-footer.css
 * ==========================================================================
 * Footer layout. Loaded on ALL pages.
 * Mobile-first.
 * ==========================================================================
 */

footer, .footer {
  text-align: center;
}

.footer-columns, .footer-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem;
}

.footer-column, .footer-col {
  width: 100% !important;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  padding: 0.5rem;
}

@media (min-width: 768px) {
  footer, .footer {
    text-align: left;
  }
  .footer-columns, .footer-grid {
    flex-direction: row !important;
  }
  .footer-column, .footer-col {
    width: auto !important;
  }
  .footer-links {
    align-items: flex-start;
  }
}

/* Hide empty social block */
.block-social ul:empty,
.block-social:has(ul:empty),
footer.page-footer .block-social {
  display: none !important;
}
