.album-card * {
    transition: all 300ms;
}

.album-card {
    width: 350px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
}

.album-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: all 300ms;
}

.album-card:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.album-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.album-card .content {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    padding: 50px 20px 20px 20px;
    height: auto;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    z-index: 5;
}

.album-card .date,
.album-card .title {
    margin: 0;
}

.album-card .date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.album-card .title {
    font-size: 17px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
