.module-logos {
    padding: 40px 0;
}

@media only screen and (min-width: 768px) {
	.module-logos {
        padding: 80px 0 60px;
    }
}

.module-logos-body {
    max-width: 800px;
    margin: 0 auto;
}


.module-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* adjust spacing as needed */
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 30px auto 0;
}
/* Desktop: 6 columns from 1024px and up */
@media (min-width: 1024px) {
  .module-logos-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: .5rem; /* adjust spacing as needed */
  }
}


.module-logos-item img {
  max-height: 4rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
    .module-logos-item img {
        max-height: 7rem;
    }
}
