/* //////////////////////////////////////////////// */
/* Grid */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  justify-content: start;
  justify-items: start;
  align-content: center;
  align-items: center;
  gap: 4.8rem;
}

@media (min-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-rows: auto;
    justify-content: start;
    justify-items: start;
    align-content: start;
    align-items: start;
    gap: 2.4rem;
  }
}
