.roster-team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.team-member--media {
  width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
  background-color: #f5f5f5;
}

.team-member--media img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.team-member--text {
  padding: 1rem;
}

.member-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.member-role {
  font-style: italic;
  color: #666;
  margin-bottom: 0.75rem;
}

.member-contact--info p {
  margin: 0.25rem 0;
}

.member-categories {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.member-bio {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #333;
}

.notification {
  display: none;
  font-size: 0.875rem;
  color: green;
  margin-top: 0.5rem;
}
