# Big quote mark (C 025)

Category: Cards  
Tags: testimonial, quote, light, serif  
Page: https://designforai.dev/snippet/card-025

## Prompt

Build a 320px testimonial card: white, 1px #e7e5e4 border, 16px radius, padding 34px 26px 24px. A large decorative opening quote mark (80px Georgia, color #e7e5e4) sits at top-left behind the text. The quote is 18px italic Georgia in #292524 with 1.5 line-height. Below, in a sans-serif font, the name in 14px bold and the title in 12px #78716c stacked.

## HTML

```html
<figure class="card-025">
  <blockquote>The kettle shipped on Tuesday. The manual was two pages.</blockquote>
  <figcaption><b>Sam Rivera</b><span>Head of Design, Loop</span></figcaption>
</figure>
```

## CSS

```css
.card-025 {
  position: relative;
  width: 320px;
  margin: 0;
  padding: 34px 26px 24px;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  font-family: Georgia,serif;
  color: #292524
}
.card-025::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 80px;
  line-height: 1;
  color: #e7e5e4;
  font-family: Georgia,serif
}
.card-025 blockquote {
  position: relative;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic
}
.card-025 figcaption {
  display: flex;
  flex-direction: column;
  font-family: system-ui,sans-serif
}
.card-025 b {
  font-size: 14px
}
.card-025 span {
  font-size: 12px;
  color: #78716c
}
```
