/* Artist Single */
.artist-single {
    background: #20F0FF26;
}

.artist-single .header {
    display: flex;
    padding-top: 2.125rem;
}

.artist-single .header .brand-name {
    margin: 0 auto;
    font-size: 6.45rem;
    padding-bottom: 14px;
    line-height: 85px;
    color: transparent;
    font-family: 'Baradig', sans-serif;
    font-weight: 700;
    -webkit-text-stroke: 1px #2E4ABC;
    text-align: center;
    opacity: 0.2;
}

.artist-single .socials {
    background: linear-gradient(270deg, #152256 17.4%, #2E4ABC 151.49%),
        linear-gradient(0deg, #152256, #152256);
    height: 106px;
    padding-top: 13px;
}

.artist-single .socials .socials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 23px 0px;
    position: relative;
}

.artist-single .socials .socials-container .artist-img {
    position: absolute;
    left: 0;
    top: -88px;
}

.artist-single .socials .socials-container .artist-img img {
    width: 13.5625rem;
}

.artist-single .socials .socials-container .artist-info .artist-name {
    font-family: Baradig;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.artist-single .socials .socials-container .artist-info .artist-socials {
    padding-top: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.artist-single .socials .socials-container .artist-info .artist-socials a {
    text-decoration: none;
}

.artist-single .socials .socials-container .artist-info .artist-socials .horizontal-line {
    width: clamp(5.5rem, 30vw, 18.5rem);
    height: 1px;
    background-color: #FC0146;
    margin-left: 0.5625rem;
}

.artist-single .artist-bio .artist-bio-container {
    max-width: 1440px;
    margin: 0 auto;
    gap: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 11px;
}

.artist-single .artist-bio .artist-bio-container .container-title {
    color: #FC0146;
    font-family: Baradig;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 46px);
    line-height: 100%;
    letter-spacing: 0%;
}

.artist-single .artist-bio .artist-bio-container .artist-biography {
    font-family: Mulish;
    font-weight: 400;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: justify;
    color: #1E1E1E;
}

.artist-single .artist-bio .artist-bio-container .artist-media-container .artist-user-profile {
    width: 320px;
    height: 320px;
    overflow: hidden;
}

.artist-single .artist-bio .artist-bio-container .artist-media-container .artist-user-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.artist-single .artist-bio .artist-bio-container .artist-media-container .artist-youtube-video {
    width: 100%;
    height: 100%;
    gap: 8px;
    padding-top: 8px;
}

.artist-single .artist-bio .artist-bio-container .artist-media-container .artist-youtube-video .artist-youtube-video-content iframe {
    width: 319.9009704589844px;
    height: 180px;
    border-radius: 6px;
}

.artist-single .related-artists {
    /* background: #20F0FF26; */
    padding-top: 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.artist-single .related-artists .horizontal-line {
    width: 100%;
    height: 1px;
    background-color: #FC0146;
}

.artist-single .related-artists .related-artists-container {
    padding-top: 40px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-items: center;
}


.artist-single .related-artists .related-artists-container .artist-bio-content {
    font-family: Mulish;
    font-weight: 400;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: justify;
    color: #1E1E1E;
}

.artist-single .related-artists .related-artists-container .artist-bio-content .artist-content {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    background: #20F0FF;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.artist-single .related-artists .related-artists-container .artist-bio-content .artist-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-single .related-artists .related-artists-container .artist-bio-content .artist-content-title {
    font-family: Baradig;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 30px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(270deg, #152256 17.4%, #2E4ABC 151.49%);
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: inherit;
    margin-bottom: 19px;
}

/**artist single mobile */

@media screen and (max-width: 480px) {
    .artist-single .header .brand-name {
        line-height: 1.2;
        font-family: Baradig;
        font-weight: 700;
        font-style: Bold;
        font-size: 38px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .artist-single .socials {
        height: 71px;
        padding: 10px 35px;
    }

    .artist-single .socials .socials-container .artist-info .artist-name {
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .artist-single .artist-bio .artist-bio-container {
        flex-direction: column;
        gap: 1rem;
        padding-top: 10px;
        padding-left: 35px;
        padding-right: 35px;
    }

    .artist-single .related-artists .related-artists-container {
        padding: 20px 35px;
    }

    .artist-single .artist-bio .artist-bio-container .artist-media-container .artist-user-profile {
        width: 100%;
        height: 100%;
        overflow: hidden;
        margin-bottom: 10px;
    }
    
    
}



/* End of Artist Single */



/* Artist Profile */

.artist-profile {
    background: #20F0FF26;
}

.artist-profile .header {
    display: flex;
    padding-top: 2.125rem;
}

.artist-profile .header .brand-name {
    margin: 0 auto;
    font-size: clamp(2.5rem, 5vw, 6.45rem);
    line-height: 85px;
    color: transparent;
    font-family: 'Baradig', sans-serif;
    font-weight: 700;
    -webkit-text-stroke: 1px #2E4ABC;
    text-align: center;
    opacity: 0.2;
}

/* Socials */
.artist-profile .socials {
    background: linear-gradient(270deg, #152256 17.4%, #2E4ABC 151.49%),
        linear-gradient(0deg, #152256, #152256);
    height: 106px;
    padding-top: 13px;
}

.artist-profile .socials .socials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 23px 0px;
    position: relative;
}

.artist-profile .socials .socials-container .artist-img {
    position: absolute;
    left: 0;
    top: -88px;
}

.artist-profile .socials .socials-container .artist-img img {
    width: 13.5625rem;
}

.artist-profile .socials .socials-container .artist-info {
    padding-left: calc(13.5625rem + 2rem);
}

.artist-profile .socials .socials-container .artist-info .artist-name {
    font-family: Baradig;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.artist-profile .socials .socials-container .artist-info .artist-socials {
    padding-top: 0.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.artist-profile .socials .socials-container .artist-info .artist-socials .social-icons {
    gap: 12px;
    display: flex;
}

.artist-profile .socials .socials-container .artist-info .artist-socials a {
    text-decoration: none;
}

.artist-profile .socials .socials-container .artist-info .artist-socials .horizontal-line {
    width: clamp(5.5rem, 30vw, 18.5rem);
    height: 1px;
    background-color: #FC0146;
    margin-left: 0.5625rem;
}

/* Artist Bio */
.artist-profile .artist-bio .artist-bio-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 21px 20px 0;
}

.artist-profile .artist-bio .artist-bio-container .container-title {
    color: #FC0146;
    font-family: Baradig;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 46px);
    line-height: 100%;
    letter-spacing: 0%;
}

.artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-content {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    background: #20F0FF;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-content-title {
    font-family: Baradig;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 30px);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(270deg, #152256 17.4%, #2E4ABC 151.49%);
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: inherit;
    margin-bottom: 19px;
}

.artist-profile .artist-bio .artist-bio-container .artist-bio-content {
    font-family: Mulish;
    font-weight: 400;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: justify;
    color: #1E1E1E;
}

.artist-profile .artist-bio .artist-bio-container .artist-bio-content.artist-bio-content-1 {
    padding-left: calc(13.5625rem + 2rem);
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

.mobile-text-content>div {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mobile-text-content>div>p {
    flex: 1;
    margin: 0;
}

.mobile-text-content>div>img.mobile-image {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media screen and (min-width: 769px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }

    .artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-bio-content-2 {
        padding-right: calc(17.75rem + 3rem);
        /* Increased for image gap */
        position: relative;
        margin-top: 2rem;
    }
}

.artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-bio-content-2 img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    width: calc(17.75rem + 2rem);
    border-radius: 6px;
    aspect-ratio: 16/9;
}

.artist-profile .artist-bio .artist-bio-container .pagination {
    padding: 3.125rem 0;
}

.explore-discography-btn {
    border-radius: 60px;
    border: 1.2px solid #152256;
    font-family: Mulish;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FC0146;
    padding: 16px 25.63px;
    margin-top: 2rem;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .artist-profile .header {
        padding-top: 1rem;
    }

    .artist-profile .artist-bio .artist-bio-container {
        padding: 1.5rem 1rem 0;
    }

    .artist-bio-grid {
        gap: 1rem;
        padding-bottom: 40px;
        justify-items: center;
    }

    .artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-content .artist-content-title {
        padding: 1rem 0;
        margin-bottom: 19px;
    }

    .artist-profile .artist-bio .artist-bio-container .artist-bio-content {
        font-family: Mulish;
        font-weight: 400;
        font-size: 15px;
        line-height: 125%;
        letter-spacing: 0%;
        text-align: justify;
    }

    .artist-profile .header .brand-name {
        font-family: Baradig;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .artist-profile .header {
        display: flex;
        padding-top: 0.5rem;
        padding-bottom: 1.1875rem;
    }

    .artist-profile .socials {
        height: 71px;
        padding-top: 13px;
    }

    .artist-profile .socials .socials-container {
        padding: 0 1.25rem;
    }

    .artist-profile .socials .socials-container .artist-info .artist-name {
        font-size: 20px;
    }

    .artist-profile .socials .socials-container .artist-img img {
        width: 7.5rem;
    }

    .artist-profile .socials .socials-container .artist-img {
        position: absolute;
        left: 0;
        top: -55px;
        padding-left: 1.25rem;
    }

    .artist-profile .socials .socials-container .artist-info .artist-socials .horizontal-line {
        width: 5.5rem;
    }

    .artist-profile .socials .socials-container .artist-info .artist-socials {
        padding-top: 0.625rem;
    }

    .artist-profile .socials .socials-container .artist-info {
        padding-left: calc(6.5rem + 2rem);
    }

    .artist-profile .artist-bio .artist-bio-container .artist-bio-content.artist-bio-content-1 {
        padding: 0rem 2rem;
    }

    .artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-bio-content-2 {
        padding-right: 2rem;
        padding-left: 2rem;
        position: relative;
        margin-top: 1rem;
    }

    .artist-profile .artist-bio .artist-bio-container .artist-bio-content .artist-bio-content-2 img {
        position: static;
        width: 50%;
        height: auto;
        margin: 1rem 0;
        border-radius: 6px;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
}

@media screen and (max-width: 480px) {
    .artist-profile .header .brand-name {
        line-height: 1.2;
    }

    .artist-bio-grid {
        grid-template-columns: 1fr;
    }

    .artist-bio-content {
        max-width: 100%;
    }
}

.artist-bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: start;
    margin-top: 2rem;
    padding-bottom: 77px;
}

.artist-bio-content {
    width: 100%;
    max-width: 380px;
}

.artist-content {
    width: 100%;
    aspect-ratio: 1/1;
    background: #20F0FF;
    display: flex;
    flex-direction: column-reverse;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.artist-content:hover {
    transform: translateY(-5px);
}

.artist-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-content:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .artist-bio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .artist-bio-grid {
        grid-template-columns: 1fr;
    }

    .artist-bio-content {
        max-width: 100%;
    }
}