.soundbirds {
    width: 265px;
}
.soundbirds_inner {
    position: relative;
    min-height: 240px;
    background-size: cover;
}

.soundbirds_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 240px;
    background-size: 100% 100%;
}
.soundbirds_name {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    width: calc(100% - 20px);
    font-size: 14px;
    background: rgba(0,0,0,.7);
    color: #fff;
}
.soundbirds:hover .soundbirds_name {
    display: block;
}
.soundbirds_song {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.soundbirds_audio {
    display: block;
    width: 100%;
    height: 30px;
}