/* Staff / partner shell */
.sty-staff {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 78vh;
  background: var(--sty-bg);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--sty-border);
  margin: 20px auto;
  width: min(1440px, calc(100% - 24px));
}
.sty-staff__sidebar {
  background: linear-gradient(180deg, #0b1437 0%, #1e2a6b 100%);
  color: #fff;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sty-staff__brand strong {
  display: block;
  font-family: var(--sty-display);
  font-size: 22px;
  letter-spacing: .04em;
}
.sty-staff__brand span { font-size: 12px; opacity: .7; }
.sty-staff__nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.sty-staff__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.82) !important;
  font-size: 14px;
  font-weight: 600;
}
.sty-staff__nav a:hover,
.sty-staff__nav a.is-active {
  background: rgba(255,255,255,.12);
  color: #fff !important;
}
.sty-staff__badge {
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
}
.sty-staff__back {
  color: rgba(255,255,255,.75) !important;
  font-size: 13px;
  font-weight: 600;
}
.sty-staff__main { padding: 28px 28px 40px; overflow: auto; }
.sty-staff__header { margin-bottom: 22px; }
.sty-staff__header h1 {
  font-size: 28px;
  margin: 0 0 6px;
}
.sty-staff__header p { margin: 0; color: var(--sty-muted); }

@media (max-width: 900px) {
  .sty-staff { grid-template-columns: 1fr; }
  .sty-staff__sidebar { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .sty-staff__nav { flex-direction: row; flex-wrap: wrap; width: 100%; }
}
