/* START OF AUTHOR CONTENT */

#author_wrapper section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

#author_wrapper .reverse-mobile {
    flex-direction: column-reverse;
}

#author_wrapper section figure {
    width: 100%;
    margin: 25px auto;
}

#author_wrapper section article {
    flex: 1;
}

#author_wrapper .content-left {
    margin-right: 0;
}

#author_wrapper .content-right {
    margin-left: 0;
}

#artist-statement {
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    padding: 0 10%;
    margin-bottom: 10%;
    column-count: 1;
    position: relative;
}

#artist-statement .block-quotes {
    font-size: 8em;
    font-weight: bold;
    position: absolute;
    opacity: .15;
    line-height: .65;
}

#artist-statement .artist-credit {
    width: 100%;
    text-align: right;
}

@media screen and (min-width: 850px) {
    #author_wrapper section {
        flex-direction: row;
        margin-bottom: 100px;
    }

    #author_wrapper .reverse-mobile {
        flex-direction: row;
    }

    #author_wrapper section figure {
        width: 40%;
        margin: 0;
    }

    #author_wrapper .content-left {
        margin-right: 8%;
    }
    
    #author_wrapper .content-right {
        margin-left: 8%;
    }

    #artist-statement {
        margin-bottom: 3%;
        column-count: 2;
    }
    
  }