/* --- Team Hero Section  --- */
.team-hero {
  position: relative;
  background-color: var(--fg);
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.team-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.team-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.team-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 210, 0, 0.15) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 2;
}

.team-hero .relative {
  z-index: 3;
}
