/* Team Page Styles */

.team-header {
  text-align: center;
  padding: 2rem 0 1rem;
}

.team-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e7e3fc;
  margin-bottom: 0.5rem;
}

.team-title i {
  color: #58CC02;
}

.team-subtitle {
  color: #a5a3ae;
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Mission Section */
.team-mission {
  background: linear-gradient(135deg, rgba(88, 204, 2, 0.08) 0%, rgba(70, 163, 2, 0.04) 100%);
  border: 1px solid rgba(88, 204, 2, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin: 2rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #58CC02, transparent);
}

.team-mission-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #58CC02 0%, #46A302 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(88, 204, 2, 0.25);
}

.team-mission-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.team-mission h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e7e3fc;
  margin-bottom: 1rem;
}

.team-mission p {
  color: #b4b0c8;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Title */
.team-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e7e3fc;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Credentials Grid */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.credential-card {
  background: rgba(30, 27, 46, 0.6);
  border: 1px solid rgba(88, 204, 2, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.credential-card:hover {
  border-color: rgba(88, 204, 2, 0.25);
  box-shadow: 0 4px 20px rgba(88, 204, 2, 0.08);
}

.credential-icon {
  width: 48px;
  height: 48px;
  background: rgba(88, 204, 2, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.credential-icon i {
  font-size: 1.25rem;
  color: #58CC02;
}

.credential-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #e7e3fc;
  margin-bottom: 0.5rem;
}

.credential-card p {
  font-size: 0.875rem;
  color: #9992b0;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Team Members Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.team-member-card {
  background: rgba(30, 27, 46, 0.6);
  border: 1px solid rgba(88, 204, 2, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member-card:hover {
  border-color: rgba(88, 204, 2, 0.3);
  box-shadow: 0 8px 32px rgba(88, 204, 2, 0.1);
  transform: translateY(-4px);
}

.team-member-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(88, 204, 2, 0.25);
  background: rgba(88, 204, 2, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.team-member-icon i {
  font-size: 2rem;
  color: #58CC02;
}

.team-member-card:hover .team-member-icon {
  border-color: rgba(88, 204, 2, 0.5);
  background: rgba(88, 204, 2, 0.12);
}

.team-member-role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #58CC02;
  margin-bottom: 0.75rem;
}

.team-member-bio {
  font-size: 0.9375rem;
  color: #9992b0;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .team-header {
    padding: 1rem 0;
  }

  .team-title {
    font-size: 1.5rem;
  }

  .team-mission {
    padding: 2rem 1.5rem;
  }

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

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

  .team-member-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }

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