# Dunkle Akzentleiste (C 008)

Kategorie: Cards  
Tags: horizontal, media-left, dark, accent  
Seite: https://designforai.dev/de/snippet/card-008

## Prompt

Baue eine 480px horizontale Card auf dunklem Hintergrund #111827 mit 12px Radius und einem 4px linken Rahmen in Cyan #22d3ee. Linke Bildspalte fest 140px breit mit 160deg Gradient #164e63 zu #22d3ee. Body-Padding 18px 22px: ein 11px Versalien-Kicker "Tutorial" in #22d3ee mit .1em Laufweite, ein 18px weißer Titel, 14px Beschreibung in #9ca3af. Beim Hover hellt der linke Rahmen auf #a5f3fc auf.

## HTML

```html
<article class="card-008">
  <div class="card-008__img"></div>
  <div class="card-008__body">
    <span class="card-008__kicker">Tutorial</span>
    <h3>Container queries in practice</h3>
    <p>Stop guessing viewport widths. Size to the parent.</p>
  </div>
</article>
```

## CSS

```css
.card-008 {
  display: flex;
  width: 480px;
  background: #111827;
  border-radius: 12px;
  overflow: hidden;
  font-family: system-ui,sans-serif;
  color: #f9fafb;
  border-left: 4px solid #22d3ee
}
.card-008__img {
  flex: 0 0 140px;
  background: linear-gradient(160deg,#164e63,#22d3ee)
}
.card-008__body {
  padding: 18px 22px
}
.card-008__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #22d3ee
}
.card-008 h3 {
  margin: 6px 0 6px;
  font-size: 18px
}
.card-008 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #9ca3af
}
.card-008:hover {
  border-left-color: #a5f3fc
}
```
