/* header */
.header {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 30px;
    margin-left: -5vw;
    padding-top: 3em;
    padding-bottom: 3em;
    
    font-size: var(--fs_head);
}
.logo {
    margin-left: 5vw;
    
    text-decoration: none;
    color: black;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
} 



/* desktop */
.entry_wrapper {
    display: flex;
    min-height: 732px;
    margin-bottom: 3em;
}
.entry_text {
    position: sticky;
    display: grid;
    justify-content: space-between;
    top: calc(9em + 32px);
    width: 20%;
    min-width: 320px;
    max-height: 50vh;
    padding-right: 3em;
}
.entry_text_1 {
}
.entry_text_1_head {
    font-weight: 400;
    font-size: var(--fs_head);
    line-height: var(--lh_head);
    font-family: 'Atkinson Hyperlegible', sans-serif;
}
.entry_text_1_showcase {
    margin-top: 0.5em;
    
    font-family: 'Roboto Mono', sans-serif;
}
.entry_text_1_showcase > a { 
    padding-right: 1em;
    
    
    color: #aaa;
    text-decoration: none;
}
.entry_text_1_hero {
    margin-top: 1em;
    margin-bottom: 0.5em;
    
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: var(--fs_hero);
    font-weight: 200;
}
.entry_text_1_body {
    max-width: 500px;
    margin-top: 2em;
    
    line-height: var(--lh_body);
}



.gallery {
    width: 80%;
    margin: 0 auto;
}
.entry_image {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 0.25em;
}
.entry_image > div > img {
    /*max-height: calc(100vh - 8em);*/

    max-width: 100%;
    margin: 0 auto;
    vertical-align: bottom;
}
.span2 {grid-column: span 2;}
.span3 {grid-column: span 3;}
.span6 {grid-column: span 6;}



/* phone */
@media (max-width: 1200px) {
    .body {
        width: 100%;
    }
    .header {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
        
        background: white;
    }
    
    
    
    .entry_wrapper {
        display: block;
        margin-bottom: 50px;        
    }
    .entry_text {
        position: inherit;
        width: 100%;        
        padding-right: 0em;
        padding-bottom: 3em;
    }
    .entry_text_1_body {
        max-width: none;
    }
    
    
    
    .gallery {
        width: 100vw;
        margin-left: -5vw;
    }
    .entry_image {
        display: block;
    }
    .entry_image > div > img  {
        max-height: none;
        padding-bottom: 0.25em;
    }  
}