# Comillas grandes (C 025)

Categoría: Tarjetas  
Etiquetas: testimonial, quote, light, serif  
Página: https://designforai.dev/es/snippet/card-025

## Prompt

Construye una tarjeta de testimonio de 320px: blanca, borde 1px #e7e5e4, radio 16px, padding 34px 26px 24px. Unas comillas de apertura decorativas grandes (80px Georgia, color #e7e5e4) quedan arriba a la izquierda detrás del texto. La cita es 18px cursiva Georgia en #292524 con line-height 1.5. Debajo, en una fuente sans-serif, el nombre en 14px bold y el cargo en 12px #78716c apilados.

## 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
}
```
