/* Credits page — tiny, page-scoped tweaks */

/* Slightly reduce default section padding only on this page */
.credits-container .section { padding: 3rem 0; }

/* Hero spacing alignment */
.credits-hero .section-title {
  margin-bottom: .35rem;
}
.credits-hero .section-subtitle {
  margin-bottom: 1.25rem;
}

/* Avatar in feature-card */
.staff-avatar{
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem auto;
  border: 3px solid rgba(255,255,255,0.08);
  background: #1a1f2b;
}

/* Role (small line under name) */
.staff-role{
  color: var(--text-secondary);
  font-weight: 700;
  font-size: .95rem;
  margin-top: -.35rem;
  margin-bottom: .55rem;
}

/* Substaff pills */
.substaff { text-align: center; }
.substaff-list{
  list-style:none;
  padding:0;
  margin: 0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.6rem .75rem;
}
.substaff-item{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background: var(--bg-card, #1e1e1e);
  border: 1px solid var(--border-color, #333);
  border-radius: 999px;
  padding:.35rem .7rem .35rem .35rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
}
.substaff-avatar{
  width:28px; height:28px; border-radius:50%; object-fit:cover;
  border:2px solid rgba(255,255,255,.06); background:#1a1f2b;
}
.substaff-name{
  color:#d6dde8; font-weight:700; font-size:.92rem; text-decoration:none;
}
.substaff-name:hover{ text-decoration:underline; }
