:root {
    --cvdarkgreen: #002E0F;
    --cvlightgreen: #00B140;
    --notblack: #363844; 
    --grey: #8C9088;
}

.authorlist h2 {
    font-size: 34px;
    font-family: futura-pt, sans-serif !important;
    font-weight: 500;
    color: black;
}
.cvauthor {
    font-family: futura-pt, sans-serif !important;
    text-align: left;
    display: grid;
    grid-template-columns: 75px auto;
    column-gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
    .cvauthor .authorportrait { 
        position: relative; 
        width: 75px; 
        height: 75px; 
        overflow: hidden; 
        border-radius: 50%; 
    } 
    .cvauthor .authorportrait img { 
        width: 100%;
        /*width: 150%;
        height: auto;
        margin-left: -25%;
        margin-top: -25%; */
        height: auto; 
    }
    body.communityvoice .cvauthor h3 {
        font-family: futura-pt, sans-serif !important;
        padding: 0;
        margin: 0;
        font-size: 20px;
        line-height: 26px;
        color: black;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: -10px;
    }
    .cvauthor .project {
        color: var(--notblack);
        font-size: 19px;
        line-height: 22px;
        display: block;
    }
    .cvauthor .projectlocation {
        color: var(--grey);
        font-size: 17px;
        line-height: 22px;
        display: block;
    }

@media screen and (max-width: 960px) {
    .authorlist h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 500px) {
    body.communityvoice .authorlist {
        border-top: 2px solid var(--cvlightgreen);
        margin-top: 27px;
    }
    body.communityvoice .authorlist h2 {
        text-align: center;
        margin-top: -28px;
        margin-bottom: 35px;
    }
    body.communityvoice .authorlist h2 span {
        background-color: white;
        padding-left: 20px;
        padding-right: 20px;
    }
}