/* ════════════════════════════════════════════════════════════
   Freedom Discovery — Team page (extends home.css)
   ════════════════════════════════════════════════════════════ */

/* ─── Lead trainer spotlight (Coach Nan) ─── */
.lead-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(30px, 4vw, 56px); align-items: start;
}
.lead-photo-card {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(8,26,77,0.18);
  background: var(--blue-deep);
}
.lead-photo-card > img { width: 100%; display: block; }
.lead-nametag {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 22px 18px;
  background: linear-gradient(to top, rgba(8,26,77,0.92), transparent); color: #fff;
}
.lead-nametag h3 { font-size: 22px; font-weight: 800; line-height: 1.2; }
.lead-nametag p { font-size: 12.5px; color: rgba(255,255,255,0.82); margin-top: 4px; line-height: 1.5; }

.lead-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.lead-bio h2 {
  font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; color: var(--ink);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px;
}
.lead-bio p { color: var(--body); line-height: 1.85; margin-bottom: 16px; font-size: 14.5px; }
.lead-bio p strong { color: var(--ink); font-weight: 600; }

.lead-stats {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 26px;
}
.lead-stats .ls-item {
  flex: 1; min-width: 130px; padding: 18px 20px; border-radius: 16px;
  background: var(--soft); border: 1px solid var(--line); text-align: center;
}
.lead-stats .ls-num { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--blue); line-height: 1; }
.lead-stats .ls-lbl { font-size: 11.5px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 8px; }

.lead-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.lead-tags span {
  font-size: 12px; font-weight: 600; color: var(--blue);
  background: rgba(47,100,224,0.08); padding: 7px 15px; border-radius: 999px;
}
@media (max-width: 880px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-photo-card { max-width: 380px; margin: 0 auto; }
}

/* ─── Faculty (flat list) ─── */
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.faculty-card {
  display: flex; flex-direction: column; padding: 30px 28px;
  background: var(--white); border: 1px solid var(--line); border-radius: 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.faculty-card:hover {
  transform: translateY(-6px); border-color: rgba(47,100,224,0.3);
  box-shadow: 0 26px 56px rgba(8,26,77,0.13);
}
.fac-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.fac-avatar {
  flex: none; width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center; font-weight: 800; font-size: 23px; color: #fff;
  letter-spacing: 0.02em; box-shadow: 0 10px 24px rgba(8,26,77,0.18);
}
.fac-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.fac-avatar.av-blue   { background: linear-gradient(150deg, var(--blue-bright), var(--blue)); }
.fac-avatar.av-orange { background: linear-gradient(150deg, #f9a04a, var(--orange)); }
.fac-avatar.av-deep   { background: linear-gradient(150deg, var(--blue), var(--blue-deep)); }
.fac-id h4 { font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.fac-id .fac-role { font-size: 12.5px; color: var(--orange); font-weight: 600; margin-top: 5px; line-height: 1.45; }
.fac-bio { font-size: 13.5px; color: var(--body); line-height: 1.7; margin-bottom: 18px; }
.fac-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.fac-tags span {
  font-size: 11.5px; font-weight: 600; color: var(--blue);
  background: rgba(47,100,224,0.08); padding: 5px 12px; border-radius: 999px;
}
@media (max-width: 980px) { .faculty-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .faculty-grid { grid-template-columns: 1fr; } }

/* ─── Trusted By — single client-logo wall image (industry-grouped collage) ─── */
.clients-wall {
  max-width: 940px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 12px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(8,26,77,0.10);
}
.clients-wall img { width: 100%; height: auto; display: block; border-radius: 10px; }
