/* header */
.header {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 30px;
    margin-left: -5vw;
    padding-top: 3em;
    padding-bottom: 3em;
    
    z-index: 1;

    background: white;
    font-size: var(--fs_head);
}
.logo {
    float: left;
    margin-left: 5vw;
    
    text-decoration: none;
    color: black;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 400;
} 
/*.category {
    float: right;
    vertical-align: middle;
    
    margin-right: 5vw;
    margin-left: -2vw;
    
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 300;
    font-size: var(--fs_body);
} */



/* desktop */
.gallery_wrapper {
    margin-bottom: 3em;
}
.gallery {
    display: grid;
    column-count: 3;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(calc(10em + 8vw), 1fr));
	grid-gap: 0.2em;
}

.thumb img {
	display: block;
    object-fit: cover;
    width: 100%;
    
}
.thumb figcaption {
	position: absolute;
	width: 100%;
    height: 100%;
    
    background-color: rgba(0,0,0,0.8);
	opacity: 0;
}
.thumb section {
	position: absolute;
    padding: calc(2em);
    bottom: 0;
    
	text-decoration: none;
	color: white;
    font-weight: 700;
}
.thumb div {
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 300;
    line-height: var(--lh_head);
}
.thumb a {
    display: block;
    position: relative;
}
.thumb figcaption:hover {
    opacity: 1;
	-webkit-transition: 0.15s ease-in-out;
	-moz-transition: 0.15s ease-in-out;
	-o-transition: 0.15s ease-in-out;
	transition: 0.15s ease-in-out;
}



/* span */
.wide {
    grid-column : span 1;
    height: auto;
}

.high {
    grid-column: span 1;
    height: auto;
}


@media (max-width: 1200px) {
    .header {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
        background: #fff;
    }
    .gallery {
                width: 100vw;
        margin-left: -5vw;
    }
}