.artist-spotify-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

.artist-spotify-cards iframe {
    width: 30%;
    height: 380px;
    border: 0;
    overflow: hidden;
}

/* media query for card on mobile */
@media screen and (max-width: 750px) {
    .artist-spotify-cards iframe {
        width: 100%;
        height: 380px;
        border: 0;
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {
    .hidden-on-small {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hidden-on-large {
        display: none !important;
    }
}




