# Stellenanzeige (C 082)

Kategorie: Cards  
Tags: job, listing, tags, logo, light, hover  
Seite: https://designforai.dev/de/snippet/card-082

## Prompt

Erstelle eine 420px Stellenanzeigen-Card: weiß, 1px #e5e7eb Rahmen (schwarz beim Hover mit weichem Schatten), 14px Radius, Padding 18px 20px. Kopfzeile: eine 44px schwarze abgerundete Logo-Kachel mit weißen Initialen "Ox", dann 16px Jobtitel über einer 13px #6b7280 Firmen-und-Ort-Zeile und ein grünes #059669 Gehalt "€90k+" rechts. Eine Reihe aus drei fast quadratischen Tags (#f3f4f6, 6px Radius, 11px semibold). Footer: 12px #9ca3af "Posted 2 days ago" links und ein fetter schwarzer "Apply" Link rechts.

## HTML

```html
<article class="card-082">
  <header><span class="card-082__logo">Ox</span><div><h3>Senior Product Designer</h3><p>Oxide Labs · Remote (EU)</p></div><b>€90k+</b></header>
  <div class="card-082__tags"><span>Full-time</span><span>Design systems</span><span>Figma</span></div>
  <footer><span>Posted 2 days ago</span><a href="#">Apply</a></footer>
</article>
```

## CSS

```css
.card-082 {
  width: 420px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-family: system-ui,sans-serif;
  color: #111827;
  transition: border-color .2s,box-shadow .2s
}
.card-082:hover {
  border-color: #111827;
  box-shadow: 0 8px 24px rgba(0,0,0,.06)
}
.card-082 header {
  display: flex;
  align-items: center;
  gap: 14px
}
.card-082__logo {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  font-size: 14px
}
.card-082 header div {
  flex: 1
}
.card-082 h3 {
  margin: 0;
  font-size: 16px
}
.card-082 p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #6b7280
}
.card-082 header b {
  font-size: 14px;
  color: #059669
}
.card-082__tags {
  display: flex;
  gap: 6px;
  margin: 14px 0
}
.card-082__tags span {
  padding: 4px 10px;
  border-radius: 6px;
  background: #f3f4f6;
  font-size: 11px;
  font-weight: 600;
  color: #374151
}
.card-082 footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9ca3af
}
.card-082 footer a {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  text-decoration: none
}
.card-082 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
```
