#card-annuncio>a {
    display: block;
    width: 100%;
    height: 100%;
}

#card-annuncio .annuncio {
    background: #f2f2f2;
    border-radius: 10px;
    height: 450px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#card-annuncio .thumbnail {
    margin-bottom: 10px;
    height: 300px;
    position: relative;
}

#card-annuncio .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#card-annuncio .annuncio p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

#card-annuncio .subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

#card-annuncio .specifiche {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 5px;
    margin-top: 8px;
    min-height: 45px;
}

#card-annuncio .price {
    margin-top: 8px;
    font-weight: bold;
}