/* Team Page (List style) - Theme Aware Colors */
.team-list-page {
    padding: 2rem;
  }
  
  .team-intro h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
  }
  
  .team-intro .description {
    font-size: 1rem;
    color: var(--subtext-color);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  /* Team List */
  .team-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .team-item {
    display: flex;
    gap: 2rem;
    background-color: var(--header-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px var(--shadow);
    align-items: center;
    flex-wrap: wrap;
  }
  
  .team-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
    min-width: 250px;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .team-left h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
  }
  
  .username {
    font-size: 0.95rem;
    color: var(--subtext-color);
  }
  
  .team-right {
    flex: 2;
    font-size: 1rem;
    color: var(--text-color);
  }
  