.staff-card{
      width:300px;
      min-width:300px;
      max-width:300px;
      border-radius:22px;
      overflow:hidden;
      background:rgba(255,255,255,.95);
      border:1px solid rgba(16,32,51,.08);
      box-shadow:0 12px 28px rgba(16,32,51,.06);
      transition:var(--transition);
      flex:0 0 300px;
      scroll-snap-align:start;
    }

    .staff-card:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow-hover);
    }

    .staff-photo{
      height:206px;
      background:
        linear-gradient(180deg, rgba(16,32,51,.02), rgba(16,32,51,.06)),
        var(--staff-photo) center/cover no-repeat,
        linear-gradient(135deg,#eff5fb,#f8fbff);
    }

    .staff-photo::before,
    .staff-photo::after{
      display:none;
    }


    .staff-photo.staff-photo-composite{
      position:relative;
      overflow:hidden;
      background:
        url('staff/bg.png') center/cover no-repeat,
        linear-gradient(135deg,#eff5fb,#f8fbff);
    }

    .staff-photo.staff-photo-composite .staff-cutout{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:contain;
      object-position:center bottom;
      display:block;
      z-index:1;
      pointer-events:none;
    }

    .staff-body{
      padding:16px 16px 18px;
    }

    .staff-name{
      font-size:21px;
      line-height:1.16;
      font-weight:700;
      letter-spacing:-.02em;
      margin-bottom:8px;
    }

    .staff-role{
      font-size:14px;
      line-height:1.62;
      color:var(--muted);
      margin-bottom:8px;
      min-height:auto;
    }

    .staff-links{
      display:flex;
      flex-wrap:nowrap;
      gap:5px;
      margin-top:10px;
      width:100%;
    }

    .staff-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-height:34px;
      padding:0 9px;
      border-radius:999px;
      background:rgba(11,92,171,.08);
      border:1px solid rgba(11,92,171,.10);
      color:var(--primary);
      font-size:12px;
      font-weight:700;
      transition:var(--transition);
      white-space:nowrap;
      flex:0 0 auto;
    }

    .staff-link:hover{
      background:rgba(11,92,171,.12);
      transform:translateY(-2px);
    }

    .leader-links .staff-link{
      min-height:40px;
      padding:0 14px;
      font-size:14px;
    }

    .staff-link.is-disabled{
  pointer-events:none;
  cursor:default;
  opacity:.98;
}

.staff-link.is-disabled:hover{
  background:rgba(11,92,171,.08);
  transform:none;
}

    .staff-link-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:34px;
      height:22px;
      padding:0 7px;
      border-radius:999px;
      background:rgba(11,92,171,.10);
      color:var(--primary);
      font-size:11px;
      font-weight:800;
      letter-spacing:.02em;
    }