.team-main{
  padding-top:140px;
  padding-bottom:120px;
}

/* HERO */
.team-hero{
  text-align:center;
  margin-bottom:80px;
}

.team-hero h1{
  font-size:3.5rem;
  color:#4fcaff;
}

.team-hero p{
  color:#cfd6de;
}

/* SECTION */
.team-section{
  max-width:1200px;
  margin:0 auto 120px;
  text-align:center;
}

.team-section h2{
  position:relative;

  font-size:2.2rem;
  margin-bottom:70px;

  font-weight:600;
  letter-spacing:1px;

  background:linear-gradient(
    90deg,
    #29a9ff,
    #7a5cff,
    #4fcaff
  );
  background-clip: text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  display:inline-block;
}

/* GRID */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,260px);
  gap:40px;
  justify-content:center;
}

/* CARD */
.team-card{

  width:280px;

  border-radius:18px;

  background:rgba(15,20,30,0.85);
  backdrop-filter:blur(12px);

  border:2px solid transparent;

  border-image:linear-gradient(
    135deg,
    #29a9ff,
    #7a5cff,
    #4fcaff
  )1;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.7);

  text-align:center;

  overflow:hidden;

  padding-bottom:18px;
}

/* PHOTO FRAME */
.team-photo{

  width:92%;
  height:260px;

  margin:16px auto 10px auto;

  overflow:hidden;

  border-radius:14px;   /* rounded photo frame */

  box-shadow:
  0 8px 18px rgba(0,0,0,0.45);
}

/* PHOTO */
.team-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  border-radius:14px;
}

/* NAME */
.team-name{
  font-size:1.4rem;
  color:white;
  margin-top:10px;
}

/* ROLE */
.team-role{
  font-size:0.9rem;
  letter-spacing:1px;
  color:#cfd6de;
  margin-top:4px;
}

/* BACKGROUND VIDEO */
.bg-video {
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;

  filter:blur(8px) saturate(0.9) contrast(0.9);

  animation:bg-zoom 40s linear infinite;
}