# Team member row (C 012)

Category: Cards  
Tags: profile, avatar, horizontal, socials, light  
Page: https://designforai.dev/snippet/card-012

## Prompt

Make a 320px horizontal team card: flex row with 16px gap and padding, white, 14px radius, 1px #eee border. Left a 64px avatar with 16px rounded corners and a 135deg gradient #a7f3d0 to #059669. Right: 16px name, 13px role in #777, and a row of three 26px square social chips (6px radius, #f3f4f6 background, 11px bold text) that turn #059669 with white text on hover.

## HTML

```html
<article class="card-012">
  <div class="card-012__avatar"></div>
  <div>
    <h3>Priya Natarajan</h3>
    <p>Engineering lead</p>
    <div class="card-012__links"><a href="#">X</a><a href="#">in</a><a href="#">gh</a></div>
  </div>
</article>
```

## CSS

```css
.card-012 {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 320px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  font-family: system-ui,sans-serif;
  color: #222
}
.card-012__avatar {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg,#a7f3d0,#059669)
}
.card-012 h3 {
  margin: 0;
  font-size: 16px
}
.card-012 p {
  margin: 2px 0 8px;
  font-size: 13px;
  color: #777
}
.card-012__links {
  display: flex;
  gap: 6px
}
.card-012__links a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #f3f4f6;
  font-size: 11px;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  transition: background .15s,color .15s
}
.card-012__links a:hover {
  background: #059669;
  color: #fff
}
.card-012 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
```
