#exhibition{
    display: grid;
    margin: 0 auto;
    padding: 1.6rem;
}
#exhibitionDescription{
    grid-area: description;
}
#exhibitionDescription p{
    color: #646464;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 1em;
    text-indent: 2em;
}
#exhibitionGallery{
    grid-area: gallery;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: .8em;
    margin: .8rem;
    margin:12.8rem auto;
    
}
#exhibitionGallery a{
    display:flex;
    height: 100%;
    line-height: 0;
    max-height: 20rem;
    overflow: hidden;
}
.itemImage{
    background-color: #F2F2F2;
    display: flex;
    
    overflow: hidden;
}
#exhibitionGallery a img {
    object-fit: cover;
    object-position: center center;
    width:100%;
}
#exhibitionHeader{
    display: grid;
    grid-area: header;
    grid-template-areas: 
        "date"
        "title";

}
#exhibitionHeader h1{
    grid-area: title;
    font-size: 5.6rem;
    font-weight: 300;
    line-height: 140%;
    margin: 0;
    text-transform: uppercase;
}
#exhibitionHeader h2{
    grid-area: date;
}
#exhibitionInformation{
    grid-area: information;
}
#exhibitionInformation figure{
    display: flex;
    margin-bottom: 1.6rem;
    overflow: hidden !important;
    max-height: 40vh;
    max-width:100% !important;
}
#exhibitionInformation figure img{
    object-fit: contain;
    object-position: center center;
    width: 100%;
}
#exhibitionInformation h4{
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%;
    text-transform: uppercase;
}

#exhibitionInformation table td,
#exhibitionInformation table th{
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 140%;
    text-align: left;
    vertical-align: top;
}
#exhibitionInformation table th{
    padding: .8rem 0;
}
#exhibitionInformation table td{
    padding: .8rem 0;
}
#exhibitionInformation table td span{
    display: block;
}
@media (max-width: 735px){
    #exhibition{
        grid-template-areas: 
        "header"
        "description"
        "information"
        "gallery";
        grid-template-columns: 1fr;
    }
}
@media (min-width: 736px){
    #exhibition{
        grid-column-gap: 3.2rem;
        grid-template-areas: 
            "... header"
            "information description"
            "information gallery";
        grid-template-columns: 1fr 3fr;
    }
}
#gallery{
    
}
.item{
    display:grid;
    grid-template-areas: 
        "image"
        "description";
    grid-template-rows: 1fr 4.8rem;
    position: relative;
    max-height: 20rem;
    overflow: hidden;
}
.itemDescription{
    background-color: #F2F2F2;
    font-size: 1.2rem;
    line-height: 140%;
    padding: .8rem 1.6rem;
}
.itemImage{
    background-color: #F2F2F2;
    display: flex;
    height: 100%;
    line-height: 0;
    overflow: hidden;
}
.itemImage img {
    filter: blur(0px);
    object-fit: contain;
    object-position: center center;
    transform: scale(2);
    transition: all 0.3s ease-in;
    width:100%;
}
.itemTitle{
    align-items: center;
    background: rgba(0,0,0,0.4);
    display: flex;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    text-decoration: none;
    transition: opacity .5s;
    top: 0;
    width: 100%;
    z-index: 1;
    display:none;
}
.item:hover .itemTitle {
  opacity: 1;
}

.item:hover .itemImage img {
  transform: scale(1);
}
@media only screen and (min-width: 736px){
    #exhibition{
        margin: 0 auto;
        max-width: var(--site-content-max-width);
    }
    #exhibitionGallery{
        max-width: 96rem;
    }
}