.card {
  max-width: 180px;
  width: 100%;
  background: white;
  border-radius: 2px;
  box-sizing: border-box;
box-shadow: 1px 1px 12px #555;
    overflow: hidden;
display:inline-block;
margin-left:12px;
margin-bottom:12px;
padding:4px;
vertical-align:top;
max-height:200px;
}
.card .photo {
  width: 100%;
height:60px;
  display: block;
  margin-bottom: .75rem;
overflow:hidden;
}
.card .photo img {
    position: absolute;
        clip: rect(0px,170px,60px,0px);
}
.card .title {
  font-size: 1rem;
  margin: 0;
  color: #333;
  margin-top: .5rem;
  font-weight: b700;
}
.card .description {
  font-size: 0.7rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  color: #555;
height:70px;
}
.card .description p {
  line-height: 1.51;
  margin-top: 0;
}