/* [project]/src/app/team/styles.css [app-client] (css) */
.team-page {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-header h1 {
  color: #004aad;
  background: linear-gradient(135deg, #004aad, #1c2253);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
}

.team-header p {
  color: #666;
  font-size: 1.2rem;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 1rem;
  display: grid;
}

.team-member {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  flex-direction: column;
  padding: 1.5rem;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image-container {
  border: 3px solid #004aad;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.member-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.team-member:hover .member-image {
  transform: scale(1.1);
}

.team-member h3 {
  color: #004aad;
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

.member-role {
  color: #43a047;
  margin-bottom: 1rem;
  font-weight: bold;
}

.member-bio-container {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.member-bio {
  color: #666;
  max-width: 300px;
  margin: 0 auto;
  font-size: .95rem;
  line-height: 1.6;
  transition: max-height .3s;
  position: relative;
}

.member-bio:not(.expanded) {
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.read-more-button {
  color: #004aad;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: .5rem;
  padding: .5rem;
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}

.read-more-button:hover {
  color: #003c8f;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .team-header h1 {
    font-size: 2.2rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .member-image-container {
    width: 150px;
    height: 150px;
  }

  .team-member h3 {
    font-size: 1.25rem;
  }

  .member-bio {
    font-size: .9rem;
  }
}

/*# sourceMappingURL=src_app_team_styles_b692f944.css.map*/