main {
    overflow: clip;
    margin-bottom: 15rem;
    margin-top: 40px;
    /* padding: 20px; */
}

main svg {
    transform: translate(12%);
    width: 115%;
    margin-bottom: var(--gapS);
    max-height: 350px;
}

main h1 {
    font-size: 1rem;
}

main svg image {
    x: 0;
}

a:has(img) {
    text-decoration: none;
}


.artist_header_container {
    padding-left: 22.5%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.artist_header_container .artist_header {
    width: clamp(55%, 60%, 66%);
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


.location {
    font-style: italic;
}

.location span {
    font-weight: bold;
}

.artist_info_container {
    display: flex;
    flex-direction: column;
    gap: var(--gapXL);
    padding: 40px 20px;
}

.artist_info_container .about {
    white-space: pre-wrap;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gapM);
}

.links a {
    background-color: #323131;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.links a img {
    height: 25px;
    align-self: center;
}

@media (min-width: 200px) {
    .artist_header_container .artist_header {
        width: clamp(55%, 65%, 66%);
    }
}

@media (min-width: 850px) {

    main {
        margin-bottom: 60px;
    }

    main h1 {
        font-size: 1.5rem;
    }

    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    body header {
        width: 100%;
        padding: 0 60px;
    }

    body main {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 0 60px;
    }

    body main .arrow {
        margin: 0 0 var(--gapM) 0;
    }

    body main .artist_wrapper {
        margin: auto 0;
        /* centers vertically in remaining space */
        display: grid;
        grid-template-columns: 2fr 3fr;
        justify-content: space-between;
        gap: 120px;
        padding: 0 0px;
    }

    body main .artist_wrapper .artist_img {
        width: 100%;
        margin: auto 0;
    }

    body main .artist_wrapper .artist_img svg {
        transform: translate(0);
        max-height: none;
        width: 100%;
        min-height: 400px !important;
    }

    body main .artist_wrapper .artist_txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        max-width: 75ch;

        /* .about {
        width: 85%;
    } */
    }

    body main .artist_wrapper .artist_txt .artist_header_container {
        justify-content: flex-start;
        padding-left: 0%;
    }

    body main .artist_wrapper .artist_txt .artist_header_container .artist_header {
        display: flex;
        gap: 4px;
    }

    body main .artist_wrapper .artist_txt .artist_info_container {
        gap: 80px;
        padding: 0;
    }
}