/* ============================================================
   TEAM PAGE — YourSalesMachine
   ============================================================ */

.team-hero {
  padding: 80px 0 64px;
  text-align: center;
}

.team-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.team-hero p {
  color: var(--text2);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── MEMBER CARD ──────────────────────────────────────────── */
.team-section {
  padding: 0 0 80px;
}

.team-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.team-info h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-info .team-role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: color .15s;
}

.team-linkedin:hover {
  color: var(--accent);
}

.team-linkedin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── YSM LINKEDIN ─────────────────────────────────────────── */
.team-company {
  padding: 40px 0 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.team-company p {
  color: var(--text2);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.team-company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  transition: color .15s, border-color .15s;
}

.team-company-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.team-company-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 560px) {
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }
}
