.usp-item { display:flex; gap:18px; align-items:flex-start; margin-bottom:32px; }
    .usp-check { width:42px; height:42px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
    .usp-check svg { width:18px; height:18px; stroke:#fff; fill:none; }
    .mv-card { background:#fff; border:1px solid var(--stone-200); border-radius:4px; padding:44px 36px; text-align:center; transition:all .3s; }
    .mv-card:hover { box-shadow:0 16px 48px rgba(0,0,0,.09); transform:translateY(-4px); }
    .mv-card svg { width:44px; height:44px; color:var(--gold); margin:0 auto 20px; }


.team-card:hover {
    box-shadow:0 16px 48px rgba(0,0,0,.09);
    transform:translateY(-4px);
}
.team-card {
    background:#fff;
    border:1px solid var(--stone-200);
    border-radius:4px;
    overflow:hidden;
}

.team-img {
  width: 100%;
  height: 680px;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: #f5f5f5;
}
    .team-info { padding:28px 28px 32px; }
    .team-role { font-size:.68rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; display:block; }

/* Team Marquee */
.team-marquee { width:100%; overflow:hidden; position:relative; -webkit-mask-image:linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); mask-image:linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.team-marquee-track { display:flex; gap:48px; width:max-content; animation:team-marquee-scroll 20s linear infinite; padding:10px 0 30px; }
.team-marquee:hover .team-marquee-track { animation-play-state:paused; }
.team-marquee-item { flex:0 0 auto; width:160px; text-align:center; }
.team-marquee-item img { width:140px; height:140px; border-radius:50%; object-fit:cover; border:3px solid #fff; box-shadow:0 8px 24px rgba(0,0,0,.08); margin:0 auto 14px; display:block; overflow:hidden; }
.team-marquee-item .team-photo-wrap { width:140px; height:140px; border-radius:50%; overflow:hidden; margin:0 auto 14px; border:3px solid #fff; box-shadow:0 8px 24px rgba(0,0,0,.08); }
.team-marquee-item .team-photo-wrap img { width:100%; height:100%; object-fit:cover; border:none; box-shadow:none; margin:0; transform:scale(1.35); }
.team-marquee-item h4 { font-size:1rem; margin:0 0 4px; color:var(--stone-800, #2c2620); }
.team-marquee-item span { font-size:.7rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); }
@keyframes team-marquee-scroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (max-width:768px) {
  .team-marquee-item { width:120px; }
  .team-marquee-item img { width:100px; height:100px; }
  .team-marquee-item .team-photo-wrap { width:100px; height:100px; }
}
    .team-marquee-item .team-photo-wrap img {
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.35) translateY(-10px);
}