
.card-mini-2{
    width: 100%;
    vertical-align: top;
    margin-bottom: 15px;
    padding: 5px;
    background: #fff;
    box-shadow: 0px 1px 2px #aaa;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    max-height: 77px;
    transition: all .2s ease-in-out;
}
.card-mini-2:hover{
    transform: scale(1.08);
}
.card-mini-2 .thumbnail-wrapper{
    float: left;
    width: 120px;
}
.card-mini-2 .thumbnail-wrapper img{
    width: 100%;
    height: auto;
}
.card-mini-2 .card-detail-wrapper{
    width: 100%;
    padding-left: 120px;
}
.card-mini-2 .card-detail{
    padding-left: 10px;
    padding-right: 10px;
}

.card-mini-2 .card-title{
    font-weight: 500;
    display: block;
    line-height: 1.2em;
    height: 3.6em; /*for 3 rows of title*/
    overflow: hidden;
    position: relative;
}
.card-mini-2 .card-title:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 1.2em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 77%);
}

.card-mini-2 .card-owner{
    margin-top: 8px;
    color: #888;
    display: block;
    line-height: 1.2em;
    height: 1.2em;
    overflow: hidden;
    position: relative;
}
.card-mini-2 .card-owner:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: 1.2em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 77%);
}
