/* footer.css */

.site-footer {
  background: transparent;
  border-top: none;
  text-align: left;
  padding: 1.5rem 2rem;
  pointer-events: auto;
  display: none !important;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* DESKTOP: pin footer to bottom of left column */
@media (min-width: 1025px) {
  .site-footer {
    position: absolute;
    bottom: 2rem;
    /* give some breathing room */
    left: 0;
    width: 100%;
    /* full width of col‑1 */
  }
}

/* MOBILE: footer flows at end of page */
@media (max-width: 1024px) {
  .site-footer {
    position: static;
    padding: 2rem 1rem;
    text-align: center;
  }
}