.white-box {
    background-color: #fff;
}

.banner {
    background: url('https://d34za4dk7fsfj6.cloudfront.net/a0b9035d-f39c-436a-b5c0-60f404f1008d/images/bg-filter-section.jpg');
    background-size: cover;
    padding: 30px;
    margin: 15px 0;
    position: relative;
}

.banner label {
    color: var(--color-white);
}

.banner h1 {
    font-family: "Gilroy-Bold";
    margin: 0 0 20px 0;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
}

.banner h2 {
    margin: 0 0 20px 0;
    color: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
}

.banner a {
    color: var(--color-white);
    font-weight: 600;
    display: block;
}

/* FAVIOURITE ARTISTS */
.favorite-artists-box .fa-box {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
}

.favorite-artists-box .fa-box img {
    border-radius: 100%;
    object-fit: cover;
    width: 80%;
    height: 80%;
    min-width: 156px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 10px auto;
}

.favorite-artists-box .fa-box h2 {
    font-family: "Montserrat-Normal", sans-serif;
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px 0;
    display: block;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em;
    /* Optional: helps avoid layout shift */
    line-height: 1.3em;
}

@media only screen and (max-width:800px) {
    .favorite-artists-box .fa-box h2 {
        min-height: auto;
        overflow: auto;
    }
}

.favorite-artists-box .fa-box h2 a {
    color: var(--color-blue);
}

.favorite-artists-box .fa-box h2 a:hover {
    color: var(--color-orange);
}

.favorite-artists-box .fa-box .btn-upcoming {
    font-family: "Montserrat-Normal", sans-serif;
    font-size: 11px;
    text-align: center;
    margin: 0;
    padding: 10px;
    border-radius: 6px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--color-orange);
    margin-top: auto;
}

.favorite-artists-box .fa-box .btn-upcoming:hover {
    background-color: var(--color-blue);
}

.favorite-artists-blur-layer {
    text-align: center;
    padding: 100px;
    border-radius: 10px;
    border: 4px solid #dfb9a5;
    background: url('../images/favorite-artists-blur-layer-bkg.png') top center no-repeat;
    background-size: cover;
}

.favorite-artists-blur-layer h2 {
    font-family: "Montserrat-Normal", sans-serif;
    font-size: 32px;
    text-align: center;
    color: #242477;
    margin: 0 auto 20px auto;
    max-width: 50%;
}

.favorite-artists-blur-layer p {
    font-family: "Montserrat-Normal", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #3C3C3C;
    margin: 0 auto 30px auto;
    max-width: 50%;
}

.favorite-artists-blur-layer img {
    max-width: 110px;
    margin: 0px auto;
}

.favorite-artists-blur-layer .btn-login {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    background-image: linear-gradient(to right, #ff904d, #b34300);
    background-size: 300% 100%;
    border-radius: 4px;
    transition: all .4s ease-in-out;
}

.favorite-artists-blur-layer .btn-login:hover {
    background-position: 100% 0;
}

.fav-artist-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fav-artist-box .fav-artist-col {
    border: 1px solid #ddd;
    flex: 0 0 calc((100% - 50px) / 6);
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #ccc;
}

@media only screen and (max-width:800px) {
    .fav-artist-box .fav-artist-col {
        flex: 0 0 calc((100% - 10px) / 2);
    }
}

.btn-box {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-view-all {
    font-family: "Montserrat-Normal", sans-serif;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--color-white) !important;
    margin: 25px auto;
    width: auto;
    border: 1px solid var(--color-blue) !important;
    background-color: var(--color-blue);
    border-radius: 6px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    display: inline-block;
    text-transform: uppercase;
}

.btn-view-all:hover {
    color: #fff;
    background-color: #FC5F00;
    border: 1px solid #FC5F00 !important;
}

.favorite-artists-box .load-more-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #333;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    vertical-align: middle;
}