/* Avatar wall on founding-artists.html — GitHub-contributor style */
.founders-wall-section {
  padding: var(--space-32) 0 var(--space-40);
  border-top: 1px solid var(--n200);
  background: linear-gradient(180deg, var(--n0) 0%, var(--n50) 100%);
}

.founders-wall-section h2 {
  text-align: center;
}

.founders-wall-section .section-lead {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.founders-wall {
  margin-top: var(--space-24);
}

.founders-wall[hidden] {
  display: none !important;
}

.founders-wall__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.founders-wall__item {
  margin-left: -10px;
}

.founders-wall__item:first-child {
  margin-left: 0;
}

.founders-wall__link {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--n0);
  background: var(--n200);
  box-shadow: 0 0 0 1px var(--n200);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    z-index 0s;
  position: relative;
}

.founders-wall__link:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 14px rgba(106, 0, 244, 0.22);
  z-index: 2;
  text-decoration: none;
}

.founders-wall__link:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  z-index: 3;
}

.founders-wall__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founders-wall__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--purple);
  background: var(--muted-purple);
  user-select: none;
}

.founders-wall__empty {
  margin: var(--space-24) 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--n500);
}

.founders-wall__empty[hidden] {
  display: none !important;
}
