/* Team Page Styles */

.team-hero {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary) 100%);
  text-align: center;
}

.team-hero__content h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.team-hero__content > p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
}

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

.team-stat__number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.team-stat__label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

/* Team Expertise */
.team-expertise {
  padding: var(--space-4xl) 0;
  background: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.expertise-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.expertise-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.expertise-icon svg {
  width: 32px;
  height: 32px;
}

.expertise-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.expertise-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Team Members */
.team-members {
  padding: var(--space-4xl) 0;
  background: var(--color-secondary);
}

.team-members__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.team-member-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.team-member__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-primary-light);
}

.team-member__avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
  background: white;
}

.team-member__avatar svg {
  width: 100%;
  height: 100%;
}

.team-member__info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.team-member__title {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.team-member__cert {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-primary);
  background: white;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.team-member__body {
  padding: var(--space-lg);
}

.team-member__bio {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.team-member__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.specialty-tag {
  font-size: 12px;
  color: var(--color-text-secondary);
  background: var(--color-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.team-member__footer {
  padding: 0 var(--space-lg) var(--space-lg);
}

.team-member__footer .btn {
  width: 100%;
  text-align: center;
}

/* Support Services */
.support-services {
  padding: var(--space-4xl) 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-item {
  text-align: center;
  padding: var(--space-xl);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.service-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.service-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Team CTA */
.team-cta {
  padding: var(--space-4xl) 0;
  background: var(--color-primary);
  color: white;
  text-align: center;
}

.team-cta__content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.team-cta__content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-members__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-hero__content h1 {
    font-size: 28px;
  }

  .team-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .team-stat__number {
    font-size: 36px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .team-members__grid {
    grid-template-columns: 1fr;
  }

  .team-member__header {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-cta__content h2 {
    font-size: 28px;
  }
}
