.site-footer {
  background-color: #000;
  color: white;
  padding: 3em 2em;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
}

.footer-logo-wrapper {
  margin-bottom: 2em;
  flex-shrink: 1;
  min-width: 0;
  min-height: 0;
}

.footer-logo {
  max-height: 50px;
  max-width: 100%;
  height: auto;
  width: auto;
  min-width: 0;
  min-height: 0;
}


/* This groups the address info + right columns */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 10em;
  /* gap from side to links */
  align-items: flex-start;
  
}

.footer-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.footer-location p {
  margin: 0.25em 0;
  font-size: 0.95rem;
}

.footer-left p,
.footer-info p {
  font-size: 0.95rem;
}

.footer-copyright {
  margin-top: 1.5em;
  color: steelblue;
  font-size: 0.9rem;

}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 7.5em;
  flex: 2 1 600px;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  width: 140px;
}

.footer-col a {
  color: white;
  text-decoration: underline;
  margin-bottom: 0.5em;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: orange;
}


@media (max-width: 1200px) {
  .footer-logo {
    max-height: 35px;
  }
}