.artists {
    border-left: 1px solid var(--green-text);
    border-right: 1px solid var(--green-text);
    position: relative;
}
.artists .fp-overflow {
    display: flex;
    align-items: center;
    /* gap: var(--spacing-large); */
}
.artists.maxgridrow {
    padding-inline: 0 !important;
}
.artists::after {
    content: "";
    background: var(--green-text);
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.artists .left {
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    flex: 1;
    height: 85vh;
}
.artists .left .mobile_image {
    display: none;
}
.artist_image_archive {
    display: none;
}
.artist_image_archive.active {
    display: block;
    margin: auto;
    display: flex;
}


/* .artists .left a:first-of-type .artist_title {
    border-top: 1px solid var(--green-text);
} */
.artist_title {
    cursor: pointer;
    color: var(--green-text);
    font-size: var(--size-title);
    /* border-bottom: 1px solid var(--green-text); */
    padding: 15px 0;
    position: relative;
    padding-left: 30px;
}
.artist_title.active {
    font-weight: var(--font-bold);
}
.artist_title::after {
    content: "";
    background: var(--green-text);
    display: block;
    position: absolute;
    bottom: 0;
    left: -30px;
    height: 1px;
    width: calc(100% + 30px);
}

.artists .right {
    width: 100%;
    flex: 1;
    
}
.artists .right img {
    border-radius: 0;
    width: 80%;
    max-width: 750px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    padding: var(--spacing);
    margin: auto;
}  

@media (min-width: 769px) {
.artists .fp-overflow {
    margin-top: auto;
    margin-bottom: 0;
}
}

@media (max-width: 768px) {
.artists .right {
    display: none;
}
.artists::after{
    display: none;
}
.artists .left {
    height: 100%;
}
.artists .left .mobile_image {
    display: block;
    transition: .3s all ease-in-out;
}
.artists .left .mobile_image.show {
    border-bottom: 1px solid var(--green-text);
    transition: .3s all ease-in-out;
}
.artists .left .mobile_image img {
    width: 100%;
    height: 0;
    opacity: 0;
    max-width: 80vw;
    /* max-height: 45vh; */
    object-fit: cover;
    margin: auto;
    display: flex;
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.artists .left .mobile_image.show img {
    height: 100%;
    opacity: 1;
    padding: var(--spacing-text);
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
}  