/*!
 * Fix the size of the publication covers in the album to the
 * given number of pixels.
 */
.card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/*!
 * Fix the size of the card for the publications albums: titles
 * will be limited to the number of lines below.
 */
.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
