#more {display: none;}

.hlink3 {
    text-decoration: underline;
    color: #e805f6;
    text-decoration-thickness: 4px;
}

.back_button {
    background-color: #e805f6;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.content_box {
    padding-top: 2rem;
    width:100%;
}

.artist_list, .news_list, .playlists {
    list-style-type: none;
    padding-top: 2.5rem;
    width: 90%;
    padding-left: 0;
    margin: 0 auto;
    margin-bottom: 10px;
}

.artist-content {
    font-family: Acrom;
    display: grid;
    grid-template-columns: auto minmax(100px, 770px) minmax(100px, 770px) auto;
    grid-template-rows: 48px auto auto;
    padding-bottom: 5vh;
}

.panel_title {
    position: absolute;
    padding-top: 0.5rem;
    font-size: larger;
}

.artist_page_bar {
    width: 100%;
    height: 2px;
    background-color: #e805f6;
    margin: 3px 0;
    grid-column: 2 / span 2;
    grid-row: 1;
}

.panel_bar {
    width: 100%;
    height: 2px;
    margin: 3px 0;
}

.playlists_bar { background-color: #03c842; }
.releases_bar { background-color: #0814f1; }
.merch_bar { background-color: #f40405; }
.listings_bar { background-color: black; }
.news_bar { background-color: #e805f6; }

.title {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: large;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bar {
    width: 550px;
    height: 2px;
    background-color: #e805f6;
}

.see_more {
    width: 250px;
    height: auto;
}

/* --------------------------------------------------------- HERO WRAPPER */

.artist-hero {
    grid-column: 2 / span 2;
    grid-row: 2;
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 1rem;
    align-items: start;
}

.back_to_artists {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1rem;
}

.artist-name {
    grid-column: 1;
    font-size: 2.2rem;
    margin: 0;
    padding-left: 1rem;
}

.artist-info {
    grid-column: 1;
    line-height: 1.7;
    color: #444;
    padding: 0 1rem;
}

.artist_pic_square {
    grid-column: 2;
    grid-row: 2 / span 3;
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
}

.artist_pic_static {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.artist-socials {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 1rem;
}

.social_icon {
    display: flex;
}

.social_icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f0f0f0;
    transition: background 0.2s, transform 0.2s;
}

.social_icon a:hover {
    background: #e805f6;
    transform: translateY(-2px);
}

.sicon1 {
    padding-left: 0px;
}

.sicon_pic {
    width: 18px;
}

.readmore_button {
    background-color: #e805f6;
    font-family: Acrom;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: white;
    border-radius: 5%;
    border: none;
    font-size: medium;
    cursor: pointer;
}

/* --------------------------------------------------------- PANELS */

.artist_panels {
    grid-column: 2 / span 2;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 2rem;
}

.playlists {
    /* padding-top: 2rem;
    display: flex;
    flex-flow: row wrap;
    width: 80%;
    gap: 10px;
    justify-content: space-evenly; */
}

.playlist {
    /* flex-basis: 40%; */
}

.see_more_playlist {
    border-radius: 12px;
    width: 100%;
    height: 352px !important;
    background-color: #03c842;
    display: flex;
}

.see_more_playlist_text {
    margin: 35%;
    font-size: x-large;
    color: white;
}

.playlists_title { color: #03c842; }

.release_list_item, .merch_list_item, .live_date_item, .news_list_item, .playlist_item {
    margin: 10px;
}

.releases_title { color: #0814f1; }

.latest_release_pic, .merch_pic, .livedate {
    height: auto;
    width: 100%;
}

.livedate, .latest_release_pic {
    border: 1px solid rgb(85, 85, 85);
}

.livedate {
    border-radius: 3%;
}

.livedate {
    padding: 1rem;
    color: black;
}

.see_more_live {
    padding: 1rem;
    color: white;
    background-color: grey;
    border-radius: 3%;
}

.merch_title { color: #f40405; }

.artist-news-item {
    /* padding-right: 2rem; */
}

.news_pic {
    width: 100%;
    height: auto;
}

.news_title { color: #e805f6; }

.social_feed {
    padding-top: 100px;
    grid-row: 12;
    grid-column: 2 / span 2;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* --------------------------------------------------------- RESPONSIVE */

@media screen and (max-width: 1100px) {

    .artist-content {
        grid-template-columns: auto 1fr 1fr auto;
        grid-template-rows: 48px auto auto;
    }

    .artist-hero {
        grid-template-columns: 1fr;
        row-gap: 0;
        text-align: center;
    }

    .back_to_artists {
        grid-row: 1;
        justify-content: center;
    }

    .artist-name {
        grid-row: 2;
        padding-top: 1rem;
        padding-left: 0;
    }

    .artist_pic_square {
        grid-row: 3;
        grid-column: auto;
        justify-content: center;
        padding: 1.5rem 0;
    }

    .artist-info {
        grid-row: 4;
        padding: 0 1rem;
    }

    .artist-socials {
        grid-row: 5;
        justify-content: center;
        padding: 0.5rem 0 1rem;
        padding-left: 0;
    }

    .artist_panels {
        grid-row: 3;
    }

    .social_feed {
        grid-row: 4;
    }
}

@media screen and (max-width: 600px) {

    .artist-content {
        grid-template-rows: 48px auto auto;
    }

    .artist-hero {
        row-gap: 0;
    }

    .back_to_artists {
        grid-row: 1;
        justify-content: center;
    }

    .artist-name {
        grid-row: 2;
        font-size: 1.8rem;
        padding: 1rem 1rem 0;
        padding-left: 0;
    }

    .artist_pic_square {
        grid-row: 3;
        grid-column: auto;
        justify-content: center;
        padding: 1.5rem 0;
    }

    .artist_pic_static {
        max-width: 280px;
        width: 100%;
        height: auto;
    }

    .artist-info {
        grid-row: 4;
        padding: 0 1rem 1rem;
    }

    .artist-socials {
        grid-row: 5;
        justify-content: center;
        padding: 0.5rem 0 1rem;
        padding-left: 0;
    }

    .social_icon a {
        width: 32px;
        height: 32px;
    }

    .sicon_pic {
        width: 16px;
    }

    .social_feed {
        grid-column: 1 / -1;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Ensure external social feed widgets fill available width */
[id*="curator-feed"], [class*="curator"], .crt-widget, .rssapp-wall {
    max-width: 100% !important;
    width: 100% !important;
}

@media screen and (max-width: 400px) {

    .sicon_pic {
        width: 16px;
    }

    .social_icon a {
        width: 30px;
        height: 30px;
    }
}
