.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
  margin-top: 2rem;
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  /* FIXED CARD DIMENSIONS */
  width: 200px;
  height: 260px; /* adjust as needed */
  padding: 1rem;
  box-sizing: border-box;
  background: var(--background);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

.sponsor-card:hover {
  transform: translateY(-4px);
}

.sponsor-logo {
  /* FIXED LOGO BOX */
  width: 100%;
  height: 120px; /* keep all logos same height */
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.sponsor-name {
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  /* ensure long names wrap */
  word-break: break-word;
  margin-top: auto; /* push name to the bottom if you prefer */
}

/*# sourceMappingURL=sponsors.css.map */