.person-content{
    background: #fff;
    color: #000;
    border-top-left-radius: 40px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.person-content .person{
    max-width: 1032px;
    width: 100%;
    text-align: left;
}

.person-content header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 37px;
    align-items: flex-end;
}

.person-content .entry-title a{
    color: #000;
    font-family: Flaviotte;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.person-content .post-edit-link{
    color: #000;
    font-family: Gotham;
    font-size: 12px;
    font-style: normal;
    font-weight: 325;
    line-height: normal;
}

.person-content-row{
    display: flex;
    gap: 100px;
    padding-bottom: 72px;
}

.person-content-row .col-left{
    width: 600px;
    flex-grow: 0;
    flex-shrink: 0;
}

.person-content .last-modified-date{
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 19px; /* 135.714% */
}

.person-content .person-body{
    margin-top: 1rem;
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 18.8px;
}

.person-content .person-quote{
    border-left: 2px solid #C8C8C8;
    padding-left: 16px;
    color: var(--Darker-Gray, #3E3739);
    font-family: Gotham;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18.8px; /* 156.667% */
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 34px;
}

.person-content .person-quote-quotee{
    display: flex;
    gap: 10px;
}

.person-content .person-quote-quotee:before{
    content: '—';
}

.person-content .person-image-wrapper{
    height: 254px;
    width: 254px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 25px;
}

.person-content .person-image{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.person-external-links{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.person-external-links a{
    color: #000;
    font-family: Gotham;
    font-size: 12px;
    font-style: normal;
    font-weight: 325;
    line-height: normal;
    display: inline-block;
    padding: 9px 18px;
    border-radius: 20px;
    border: 1px solid #000;
    text-decoration: none;
    display: flex;
    gap: 9px;
    align-items: center;
}

.person-external-links a:after{
    display: inline-block;
    width: 9px;
    height: 9px;
    content: '';
    background: url(/wp-content/themes/wpadc_archive/images/arrow-diag-black.svg);
}

.by-this-artist{
    width: 100%;
}

.by-this-artist .wpadc-carousel-header{
    margin: 72px 0 0;
    border-top: 1px solid;
    padding-top: 72px;
}

.by-this-artist .wpadc-carousel{
    margin-top: 38px;
}

.by-this-artist .featured-card{
    text-align: left;
    color: #000;
}

.by-this-artist .featured-card h3, .by-this-artist .featured-card h4{
    color: #000;
}

.person-content .card-grid{
    border-top: 1px solid #000;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .person-content header{
        padding-left: 20px;
        padding-right: 20px;
    }

    .person-content .post-edit-link{
        display: none;
    }

    .person-content-row{
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .person-content-row .col-left{
        width: 100%;
    }
}