.home-team-panel {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 10%, rgba(137,107,255,.14), transparent 24rem),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.home-team-lead {
  display: grid;
  gap: 18px;
  align-content: start;
}

.home-team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #11111a;
}
.home-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.home-team-lead-card h3,
.home-team-copy h2,
.home-team-role h3 { color: #f7f7fb; }
.home-team-lead-card h3 { margin: 0 0 5px; }
.home-team-lead-card p,
.home-team-copy > p,
.home-team-role p { color: #aaaab8; line-height: 1.7; }
.home-team-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.home-team-copy > p { max-width: 820px; margin: 18px 0 0; }
.home-team-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
}
.home-team-role {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
}
.home-team-role span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #dcd7ff;
  background: rgba(137,107,255,.12);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.home-team-role h3 { margin: 0 0 9px; font-size: 1.05rem; }
.home-team-role p { margin: 0; font-size: .9rem; }
.home-team-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.ui-classic .home-team-panel {
  border-color: #dce5ee;
  background: #fff;
  box-shadow: 0 18px 52px rgba(15,23,42,.08);
}
.ui-classic .home-team-photo { border-color: #dce5ee; background: #eef3f8; }
.ui-classic .home-team-lead-card h3,
.ui-classic .home-team-copy h2,
.ui-classic .home-team-role h3 { color: #172033; }
.ui-classic .home-team-lead-card p,
.ui-classic .home-team-copy > p,
.ui-classic .home-team-role p { color: #526075; }
.ui-classic .home-team-role {
  border-color: #dce5ee;
  background: #f8fafc;
}
.ui-classic .home-team-role span { color: #315ca5; background: #eaf1f8; }

@media (max-width: 980px) {
  .home-team-panel { grid-template-columns: 190px minmax(0, 1fr); }
  .home-team-roles { grid-template-columns: 1fr; }
  .home-team-role { min-height: auto; }
}

@media (max-width: 680px) {
  .home-team-panel { grid-template-columns: 1fr; padding: 22px; }
  .home-team-lead { grid-template-columns: 120px minmax(0,1fr); align-items: center; }
  .home-team-photo { width: 120px; }
  .home-team-copy h2 { font-size: clamp(2rem, 10vw, 3rem); }
}
