.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:10px}.gallery img{cursor:pointer;transition:transform .2s,opacity .3s ease-in-out;object-fit:cover;aspect-ratio:16/9;width:100%;height:auto;opacity:0}.gallery img.loaded{opacity:1}.gallery img:hover{transform:scale(1.05)}.fullscreen{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.9);display:flex;justify-content:center;align-items:center;z-index:1000}.fullscreen img{max-width:90%;max-height:90%}.gallery-header{display:flex;align-items:center;gap:20px;padding:10px;flex-direction:column}.gallery-header-top{display:flex;align-items:center;gap:20px}.gallery-header a{text-decoration:none;font-size:18px;color:var(--color-black)}.gallery-header .home-link{font-size:24px;color:#000}.gallery-header h1{margin:0;font-size:24px;text-transform:lowercase}.gallery-header p{font-size:12px;font-style:italic;color:gray;margin:0}html[data-theme=dark] .gallery-header .home-link,html[data-theme=dark] .gallery-header a{color:#d4d0c8}html[data-theme=dark] .gallery-header p{color:#888}