/* css styles */

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.6rem auto;
  /* optional: subtle border */
  border: 2px solid rgba(0,0,0,0.08);
}

.team-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.team-name {
  font-weight: 600;
  margin: 0;
}

.team-role {
  margin: 0.15rem 0 0 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.team-links {
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

/* DT table nice-ness */
table span[title] {
  border-bottom: 1px dotted #bbb;
}

