.stmp-team-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  margin:24px 0 32px;
}
.stmp-team-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:24px;
  min-height:620px;
  text-decoration:none;
  background:#dfe6df;
  box-shadow:0 18px 40px rgba(7,28,27,.10);
}
.stmp-team-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.stmp-placeholder{
  min-height:620px;
  background:linear-gradient(135deg,#d7dfd7 0%, #eef3ef 100%);
}
.stmp-team-overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:28px;
  background:rgba(8,20,22,.78);
  color:#fff;
  transform:translateY(calc(100% - 136px));
  transition:transform .28s ease;
}
.stmp-team-card:hover .stmp-team-overlay,
.stmp-team-card:focus .stmp-team-overlay{
  transform:translateY(0);
}
.stmp-team-overlay h3{
  margin:0 0 8px;
  color:#fff;
  font-size:1.42rem;
}
.stmp-role{
  color:#90d23a;
  font-weight:700;
  margin:0 0 10px;
}
.stmp-team-overlay ul{
  margin:12px 0 0 18px;
}
.stmp-short-bio{
  margin-top:14px;
  color:rgba(255,255,255,.88);
}
.stmp-contact{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:4px;
  color:rgba(255,255,255,.92);
  font-size:.95rem;
}
.stmp-more{
  margin-top:18px;
  font-weight:700;
}
.stmp-profile{
  max-width:1180px;
  margin:0 auto;
}
.stmp-profile-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:32px;
  align-items:start;
}
.stmp-profile-image img{
  width:100%;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(7,28,27,.10);
}
.stmp-profile-content,
.stmp-profile-longtext{
  background:#fff;
  border:1px solid rgba(14,63,59,.12);
  border-radius:24px;
  padding:30px;
  box-shadow:0 18px 40px rgba(7,28,27,.10);
}
.stmp-profile-longtext{margin-top:28px}
.stmp-focus-list{margin:0 0 0 18px}
.stmp-empty{
  padding:18px 20px;
  border-left:4px solid #76c043;
  background:#f1f8ec;
  border-radius:14px;
}
@media (max-width: 900px){
  .stmp-team-grid,
  .stmp-profile-grid{
    grid-template-columns:1fr;
  }
  .stmp-mobile-static .stmp-team-card{
    min-height:auto;
  }
  .stmp-mobile-static .stmp-team-overlay{
    position:static;
    transform:none;
    background:rgba(8,20,22,.90);
  }
}