/* ============================================
   Team Cards
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--ease-slow);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-dim);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 2px solid var(--border);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-glow);
  border-radius: 50%;
}

.team-card__name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

/* ============================================
   About intro — handwritten subtitle override
   ============================================ */
.about-intro__hand {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0.25rem 0 1.5rem;
}

/* ============================================
   "We're hiring" placeholder team card
   ============================================ */
.team-card--hiring {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 420px;
  width: 100%;
}

@media (max-width: 768px) {
  .team-card--hiring { max-width: none; }
}

.team-card__avatar-initials--placeholder {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-faint);
}

.team-card__role--faint { color: var(--text-faint); }

.team-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
}
