.artist-list-section {
    padding-top: calc(var(--space-100-30) + var(--space-24-16)) !important;
}

.artist-profile-card {
    position: relative;
    background: var(--color-light);
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    padding: var(--space-24-16);
}

.artist-profile-card .content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.artist-profile-card .image-wrapper {
    position: relative;
    margin-top: calc(0px - var(--space-48-24));
    width: 100%;
    /* max-width: 278px;
    height: 225px; */
    max-width: clamp(9.875rem, 1.327rem + 17.831vw, 17.375rem);
    height: clamp(9.375rem, 4.033rem + 11.144vw, 14.063rem);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -8px 8px 0 0 var(--color-primary);
    background-color: #fff;
}

.artist-profile-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-profile-card .btn-link {
    margin-top: auto;
}

/*******************************************
**********\ Media Queries \ ****************
*******************************************/
@media (max-width: 620px) {
    .artist-profile-card {
        flex-direction: column;
        flex-direction: column-reverse;
        align-items: center;
    }

    .artist-list-section .row>* {
        margin-top: 124px;
    }

    .artist-profile-card .image-wrapper {
        max-width: 250px;
        height: 200px;
        margin-top: -100px;
        margin-bottom: 20px;
    }

    .artist-profile-card .content {
        width: 100%;
        text-align: center;
    }

    .artist-profile-card .content .btn {
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}