/* Team member pages */

.team-hero {
  background: var(--dark);
  color: white;
  padding: 8rem 2rem 4rem;
}

.team-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: center;
}

.team-photo img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(98, 187, 70, 0.3);
  background: rgba(255,255,255,0.05);
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.7;
}

.team-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.team-title {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 600;
}

.team-body {
  background: white;
  padding: 4rem 2rem;
}

.team-content {
  max-width: 720px;
  margin: 0 auto;
  color: var(--dark);
}

.team-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.team-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.expertise-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.expertise-list li {
  font-size: 0.95rem;
  opacity: 0.8;
  padding-left: 1.25rem;
  position: relative;
}

.expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .team-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-photo { display: flex; justify-content: center; }
  .team-photo img { width: 180px; height: 180px; }
  .expertise-list { grid-template-columns: 1fr; }
}
