.shl-music-card {

    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #252834;

    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .3s ease;
}

.shl-music-card-OLD {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #252834;
    display: flex;
    flex-flow: column;
    flex-direction: column;
    align-items: stretch;
    transition: all .3s ease;
}

.shl-music-card:hover {
    transform: translateY(-5px);
}

.shl-music-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.shl-music-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shl-music-content-OLD {
    padding: 24px;
}

.shl-music-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shl-music-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shl-music-meta {
    font-size: 16px;
    color: #026666;
}

.shl-music-reading-time {
    font-size: 12px;
    color: #7bb8c4;
    font-weight: 400;
}
.shl-music-title {
    color: #026666;
    font-size: 22px;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shl-music-excerpt-OLD {
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.6;
    font-weight: 300;
    color: #252834;
}

.shl-music-excerpt {
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.6;
    font-weight: 300;
    color: #252834;
    flex-grow: 1;
}