.card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* CONTENEDOR DE IMAGEN */
.card .img-wrap {
    width: 100%;
    height: 150px;            /* MÁS CHICA */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* IMAGEN */
.card img {
    max-width: 85%;
    max-height: 100%;
    object-fit: contain;      /* CLAVE: no recorta */
}
