#technical > article > .content{
    margin:0 auto;
    max-width: var(--site-content-max-width);
    padding: 1.6rem;
}
#technical > article > .content cite{
    color: #646464;
    display: block;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 2rem;
}
#technical > article > .content p{
    color: #646464;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%;
    text-indent: 2em;
    margin-bottom: 1em;
}
#technical > article > .content h2{
    color: #646464;
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 140%;
    margin: 0;
    text-transform: uppercase;
}
#technical > article > .content ul > li{
    color: #646464;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 140%;
}
#technical > article > header{
    display: grid;
    grid-template-areas: "main";
    height: 40vmax;
    max-height: 40vh;
    overflow: hidden;
}
#technical > article > header .image{
    display: flex;
    grid-area: main;
    overflow: hidden;
}
#technical > article > header .image img{
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}
#technical > article > header h1{
    align-self: center;
    color: rgba(255,255,255,.8);
    font-size: 6.4rem;
    justify-content: center;
    grid-area: main;
    text-align: center;
    z-index: 2;
}
/* gallery imported */
#gallery{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: .8em;
    margin: .8rem;
    margin:12.8rem auto;
    max-width: 96rem;
}
.item{
    position: relative;
    max-height: 20rem;
    overflow: hidden;
}
.itemImage{
    background:#FFCC00;
    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;
}
.item:hover .itemTitle {
  opacity: 1;
}

.item:hover .itemImage img {
  filter: blur(2px);
  transform: scale(1);
}