.lew-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--lew-space-6); margin: var(--lew-space-6) 0; }
.lew-team-card { text-align: center; background: var(--lew-color-bg); border-radius: var(--lew-radius-md); overflow: hidden; border: 1px solid var(--lew-color-border); transition: box-shadow .2s ease, transform .2s ease; }
.lew-team-card:hover { box-shadow: var(--lew-shadow-md); transform: translateY(-3px); }
.lew-team-photo-wrap { aspect-ratio: 1; background: var(--lew-color-surface); overflow: hidden; }
.lew-team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.lew-team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--lew-color-text-muted); font-size: 2.5rem; }
.lew-team-info { padding: var(--lew-space-4); }
.lew-team-name { margin-bottom: 2px; font-size: 1.05rem; }
.lew-team-title { color: var(--lew-color-primary); font-size: 0.88rem; font-weight: 600; margin: 0 0 var(--lew-space-3); }
.lew-team-bio { color: var(--lew-color-text-muted); font-size: 0.88rem; margin-bottom: var(--lew-space-3); }
.lew-team-social { display: flex; justify-content: center; gap: var(--lew-space-2); }
.lew-social-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--lew-color-surface); color: var(--lew-color-text-muted); display: flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease; }
.lew-social-icon:hover { background: var(--lew-color-primary); color: #fff; }

@media (max-width: 1024px) { .lew-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .lew-team-grid { grid-template-columns: repeat(2, 1fr); } }
