/* Minification failed. Returning unminified contents.
(50,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
 */
/* Main CV review page */
/*#review {
    margin: 0 .5rem;
}*/

#review { text-align: left; }

/* Article tag inside the review section */
#review > article {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

/* image inside the artcle (the main one) */
#review > article > img {
    width: 100%;
    /*  height could be changed to auto so maintains ratio */
    height: 100%;
}

/* Top h1 tag */
#review > article h2 {
    flex-basis: 100%;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
    font-size: 2em;
}

/* h2 tag on cv review page */
    #review > article h3 {
        margin: 1rem 0;
    }

/* Top margin only applied on p tags in the article */
#review > article p {
    margin: 0.5rem 0;
}

/* Review button placement - could be amended so this is equal maybe? - repositioned? */
#review .button {
    margin: 1rem auto .5rem;
    width:  fit-content;
    padding: 0.4rem 1rem;
}

#review p > a {
    color: var(--brand-purple);
    font-weight: 500;
}
@media only screen and (min-width: 20rem) {

    /* Main article section*/
    #review > article {
        justify-content: start;
    }

    /* All text elements within in the article */
    #review > article > * {
        flex-basis: 100%;
    }

    /* Link button for the review the CV */
    #review > article > .button {
        flex-basis: unset;
        margin: .5rem 0;
    }
}



/*@media only screen and (min-width: 62rem) {

    #review {
        max-width: 60rem;
        margin: auto;
    }
}*/

