.artist_listing .item {
    text-align: center;
    padding-bottom: 2.5rem;
}
.artist_listing .item .item_inner {
    text-decoration: none;
}
.artist_listing .item .item_inner:hover {
    color: inherit;
}
.artist_listing .item .item_image .data_ratio {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.artist_listing .item .item_inner .data_ratio:after {
    content: ''; position: absolute; top: 0; 
    left: 0; right: 0; bottom: 0; 
    width: 100%; height: 100%;
    background-color: rgba(255,204,0,0);
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.artist_listing .item .item_inner:hover .data_ratio:after {
    background-color: rgba(255,204,0,0.8);
}
.artist_listing .item .content_title span {
    display: block;
}