/* =========================
   Footer
========================= */

.site-footer {
  background: transparent;
  border-bottom: 1px solid var(--color-border);
  color: #fff;
}

.footer-top {
  background: var(--color-headerbackground2);
  padding: 1.25rem;
}

.footer-btm {
  background: var(--color-headerbackground1);
  padding: 1.25rem;
}

/* layout */
.footer-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-btm .container {
  display: flex;
  justify-content: center;
}

/* links */
.footer-top a {
  display: inline-block;
  padding: 0.625rem 1rem;
  background: transparent;
  font-size: 1rem;
}

.footer-top a:hover {
  background: transparent;
}

.footer-img1 {
  width: 50%;
  display: block;
  margin-right: auto; /* pushes left on desktop */
}

.footer-img2 {
  width: 50%;
  display: block;
  margin-left: auto; /* pushes right on desktop */
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {

  .footer-top,
  .footer-btm {
    padding: 0.75rem;
  }

  .footer-top .container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-btm .container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-top a {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
  
  .footer-img1 {
    width: 25%;
    display: block;
  	margin: 0 auto;
  }
  
  .footer-img2 {
    width: 25%;
    display: block;
  margin: 0 auto;
  }
}