/* === SPONSORS GRID === */

.sponsors-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px 40px;
  align-items: center;
  justify-items: center;
}

.img-large{
  width: 400px;
  height: auto;
}

.img-medium{
  width: 200px;
  height: auto;
}

.img-small{
  width: 100px;
  height: auto;
}

/* thin line under sponsors */
.sponsors-divider {
  max-width: 1100px;
  margin: 40px auto 0;
  border-top: 1px solid var(--color-gray-mid);
}

