.gallery{display:grid;grid-template-columns:repeat(auto-fill,12rem);gap:1rem;justify-content:center;margin:3rem 0}@media screen and (max-width:768px){.gallery{grid-template-columns:repeat(auto-fill,8rem)}}.gallery-item{width:12rem;height:12rem}@media screen and (max-width:768px){.gallery-item{width:8rem;height:8rem}}.gallery-item-image{width:100%;height:100%;object-fit:cover;cursor:pointer;transition:scale .2s}.gallery-item-image:hover{scale:1.02}.gallery-item-fullscreen{display:none}.gallery-item-fullscreen.gallery-item-fullscreen-active{display:flex;justify-content:center;align-items:center;position:fixed;top:0;left:0;width:100%;height:100%;background-color:var(--color-shadow);cursor:pointer;z-index:10}.gallery-item-fullscreen-image{width:60%;height:90%;object-fit:contain;cursor:default}