/* Employer names and local logos on the homepage and about page. */
.employer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.employer-grid li {
  padding: 1.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  text-align: center;
}

/* Crop only transparent margins; preserve the supplied artwork. */
.employer-logo {
  position: relative;
  width: min(100%, 180px);
  aspect-ratio: 7 / 5;
  margin: 0 auto 1.25rem;
  overflow: hidden;
}

.employer-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.employer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (min-width: 1001px) {
  .employer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media print {
  .employer-grid li {
    break-inside: avoid;
  }
}
