.team-card{
  background:#fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid rgba(0,0,0,.06);
}

.team-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
} 

.team-photo {
  width: 100%;
  height: 540px;      
  display: block;
  object-fit: cover;  
}
.rik {
  object-position: 50% 25%; 
}

.wim {
  object-position: 50% 35%;
}
.jaime {
  object-position: 70% 25%; 
}

.anand {
  object-position: 40% 35%;
}



.team-body{ padding: 16px 18px 14px; }

.team-name{
  font-size: 1.125rem;          
  font-weight: 700;
  margin:0 0 .15rem 0;
  color:#006633;                 
}
.team-role{
  margin:0 0 .75rem 0;
  color:#8a8a8a;
  font-style: italic;
  font-size: .95rem;
}
.team-bio{
  font-size: .98rem;
  line-height: 1.6;
  color:#222;
}

.team-contact{
  list-style:none;
  padding:0;
  margin:.75rem 0 0;
}
.team-contact li{
  display:flex;
  align-items: baseline;
  gap:.5rem;
  margin:.25rem 0;
}
.team-contact .label{
  display:inline-block;
  width:1.2rem;
  color:#a86b6b;   
  font-weight:700;
}
.team-contact a{
  text-decoration:none;
}
.team-contact a:hover{
  text-decoration:underline;
}

.teamRow{
	padding-right: calc(var(--bs-gutter-x) * 2) !important;
    padding-left: calc(var(--bs-gutter-x) * 2) !important;
}