.artist-main-section    {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100vw;

}

.artist-section {
    width: 100%;
}

.artist-section>div:nth-child(2) {
    width: 100%;
    height: 300px;

}

.artist-section>div:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divider {
    background-color: var(--grey-clr);
    width: 100vw;
    height: 5px;
}

.artist-info {
    display: flex;
    width: 100vw;
}

.artist-info>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.artist-info>div:nth-child(2) {
    border-left: 1px solid var(--grey-clr);
    padding: 1rem 2rem 1rem 1rem ;
    width: 60%;
}

.artist-info>div:nth-child(2) h1   {
    font-weight: 100;
    font-size: 2.5rem;
    margin-bottom: .8rem;
}

.artist-info>div:nth-child(2) p {
    font-family: var(--font-family-secondary);
    font-size: .9rem;
    margin-bottom: .8rem;
}


.label {
    width: 100px;
    object-fit: cover;
}

@media (max-width: 1000px) {
    /* .artist-main-section {
        width: 95vw;
    } */
    .artist-info>div:nth-child(1) {
        display: none;
    }

    .artist-info>div:nth-child(2) {
        width: 100%;
    }
}