#album-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    padding: .75em 1em;
    background: white;

}

#album-group .album {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    width: 100%;
    padding: .75em 0 1.25em 1em;
    box-shadow: inset 0 0 20px -15px #777777;
    position:relative;
    z-index: 0;
}

#album-group .album >.info {

    background: linear-gradient(90deg, white 30%, #f6f6f6 98%,white,#f6f6f6);
    position: relative;
    height: 100%;
    width: 102%;
    padding-right: .5em;
    border-radius: 5px 0 5px 5px;
    border-right:1px solid #e2e3e5;
}

#album-group .album >.info::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, white 35%, lightgray);
    border-radius: 5px;
    border-top-right-radius: 0;
}

#album-group .album >.info>.singer{
    display: block;
    margin-bottom: .25em;
    font-weight: bold;
    text-decoration: none;
}

#album-group .album >.info>.singer:hover{
    color: var(--text-warm-orange);
    text-decoration:underline;
}


#album-group .cover {
    width: 7.67em;
    margin-right: .75em;
}
#album-group .bubble,
#album-group .bubble:after{
    position: absolute;
}
#album-group .bubble{
    --path: 0% 0%, 100% 70%, 95% 100%,0% 100%, 25% 48%;
    background: lightgray;
    width: calc(2% + 1px);
    height: 0.5em;
    top: .25em;
    clip-path: polygon(var(--path));
    left: calc( 100% - 1px);
}

#album-group .bubble:before {
    background: #f7f7f7;
    content: '';
    position: absolute;
    width: 75%;
    height: 90%;
    left: 50%;
    top: 19%;
    clip-path: polygon(var(--path));
    transform: translateX(-50%);
}


