/* Team section styles (scoped to avoid conflicts) */
.hh-team-section{
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

.hh-container{
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.hh-team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  justify-items: center;
  align-items: start;
}

.hh-team-member{
  text-align: center;
  max-width: 280px;
}

.hh-photo{
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  background: #f5f5f5;
  box-shadow: 0 18px 40px rgba(6,37,33,0.06);
  margin-bottom: 22px;
}

.hh-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hh-name{
  font-weight: 700;
  color: #073a34; /* deep teal like screenshot */
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hh-role{
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
}

/* role colors to match screenshot (per-member) */
.hh-role--green{ color: #26c39a; /* light mint */ }
.hh-role--orange{ color: #ff7a3d; }
.hh-role--blue{ color: #39c5f6; }
.hh-role--yellow{ color: #f6c23e; }

/* Responsive */
@media (max-width: 1000px){
  .hh-team-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px){
  .hh-team-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hh-photo{ width: 180px; height: 180px; }
  .hh-team-member{ max-width: 360px; }
  .hh-name{ font-size: 18px; }
}

/* Small visual tweak for very large screens */
@media (min-width: 1400px){
  .hh-team-grid{ gap: 80px 80px; }
}
