/* Footer ---------- */
.site-footer {
  background-color: var(--primary-color);
  padding: 1rem;
}
#footer-grid {
  padding: 1rem 0;
  color: white;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto auto auto;
  font-size: 1.5rem;
  justify-content: space-between;
  justify-items: stretch;
  align-items: start;
  max-width: var(--site-width);
  margin: auto;
}
.footer-column {
  line-height: 3rem;
}
div.footer-column:nth-child(3),
div.footer-column:last-child {
  grid-row-end: span 2;
}
.footer-column ul {
  list-style: none;
  text-align: left;
  margin-left: 0;
}
footer a {
  color: var(--secondary-color);
}
footer a:hover,
footer a:focus,
footer a:active {
  color: var(--hover-color);
}
.footer-column iframe {
  background: var(--light-bg);
  border-radius: var(--radius);
  height: 190px;
}
.site-info.container {
  background: var(--light-bg);
  display: flex;
  position: absolute;
  padding: 10px 10px 0;
  font-size: 1.1rem;
  justify-content: space-between;
  left: 0;
  width: 100%;
  /* bottom: 0; */
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 960px) {
  #footer-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 4rem;
    justify-content: space-around;
  }
  .footer-column {
    flex: 1 1 46%;
  }
  .footer-column iframe {
    height: 230px;
  }
}
