.cards {
    overflow: hidden;
}

.card {
    position: relative;
    display: block;
    float: left;
    overflow: hidden;
    margin-left: 12px;
    padding: 10px;
    width: 198px;
    height: 249px;
    border: #B7B5B6 1px solid;
    background: #FFF;
    -webkit-box-shadow: 0px 0px 8px #B7B5B6;
    box-shadow: 0px 0px 8px #B7B5B6;
    color: rgb(86, 86, 86);
    font-size: 12px;
    font-family: Arial, sans-serif;
    cursor: default;
}

.card:first-child {
    margin-left: 0px;
}

.card:hover {
    -webkit-box-shadow: 0px 0px 12px #969495;
    box-shadow: 0px 0px 12px #969495;
}

.card img {
    margin-bottom: 10px;
    width: 100%;
    height: 138px;
}

.card .more {
    position: absolute;
    bottom: -20px;
    left: 0px;
    display: block;
    display: block;
    padding: 10px 0px 10px 10px;
    width: 208px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 11px;
    transition: 0.5s cubic-bezier(.5, 1.3, .3, 1);
}

.card a.more {
    color: #990000;
}

a.more:after {
    padding-left: 4px;
    content: "\279C";
    font-size: 12px;
}

.card:hover a.more {
    height: 35px;
    background-color: rgba(0, 0, 0, 0.1);
}

.card .cardHeader {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.card a {
    color: #606060;
    text-decoration: none;
}

.card a:hover {
    color: #000;
}

.highlight {
    color: #990000;
    text-transform: uppercase;
    font-weight: bold;
}
