@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 400;
    src:  local('Caveat Regular'), local('Caveat-Regular'),
        url('../../../fonts/caveat/caveat-v7-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../../../fonts/caveat/caveat-v7-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* */
#biography{
    display: grid;
    grid-template-areas: 
        "figure"
        "header"
        "content";
}
#biography > header{
    grid-area: header;
    margin: 0 auto;
    max-width: var(--site-content-max-width);
    padding : 1.6rem;
}
#biography > header > cite{
  font-family: "caveat";
  font-size: 4rem;
  line-height: 140%;
  padding: 3.2rem 0;
}
#biography > header > h1{
    font-size: 4rem;
    font-weight: 100;
    text-transform: uppercase;
}
#biography > header > h2{
    font-size: 2.4rem;
    font-weight: 100;
    text-transform: uppercase;
}
#biography > .content{
    grid-area: content;
    margin: 0 auto;
    max-width: var(--site-content-max-width);
    padding : 1.6rem;
}
#biography > .content p{
    color: #484848;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 200%;
    text-indent: 3.2rem;
}
#biography > .content p + *{
    margin-bottom: 1.6rem;
}
#biography > figure{
    display: flex;
    grid-area: figure;
    height: 50vmax;
    max-height: 50vh;
    overflow: hidden;
}
#biography > figure > img{
    object-fit: cover;
    object-position: center top;
    max-width: 100%;
}
@media (max-width: 735px){
    #biography > header > cite{
        font-size: 2.4rem;
    }
}