# Thumbnail row (C 007)

Category: Cards  
Tags: horizontal, media-left, compact, list-item, light  
Page: https://designforai.dev/snippet/card-007

## Prompt

Make a 360px wide clickable row card: flex, 14px gap, 10px padding, white background, 12px radius. Left a 56px square thumbnail with 10px radius and 135deg gradient #99f6e4 to #14b8a6. Middle stacks a 15px bold title and a 13px #71717a subtitle. Right a 16px chevron SVG in #a1a1aa. On hover background becomes #f4f4f5 and the arrow slides 4px right and turns #111.

## HTML

```html
<a class="card-007" href="#">
  <span class="card-007__thumb"></span>
  <span class="card-007__text"><strong>Spacing tokens</strong><span>4 / 8 / 12 / 16 / 24 / 32</span></span>
  <span class="card-007__arrow"><svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 6l6 6-6 6"/></svg></span>
</a>
```

## CSS

```css
.card-007 {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 360px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  font-family: system-ui,sans-serif;
  transition: background .15s
}
.card-007:hover {
  background: #f4f4f5
}
.card-007__thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg,#99f6e4,#14b8a6);
  flex: none
}
.card-007__text {
  display: flex;
  flex-direction: column;
  flex: 1
}
.card-007 strong {
  font-size: 15px
}
.card-007__text span {
  font-size: 13px;
  color: #71717a
}
.card-007__arrow {
  color: #a1a1aa;
  transition: transform .2s
}
.card-007:hover .card-007__arrow {
  transform: translateX(4px);
  color: #111
}
.card-007 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
```
