.photo-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin:1.5rem 0}.photo-gallery.small{grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:.75rem}.photo-gallery.large{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}.gallery-item{position:relative;overflow:hidden;border-radius:8px;cursor:pointer;transition:transform .3s ease,box-shadow .3s ease;aspect-ratio:4/3}.gallery-item:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,0,0,.15)}.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.gallery-item:hover img{transform:scale(1.05)}.gallery-item .overlay{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.7));color:#fff;padding:1rem;transform:translateY(100%);transition:transform .3s ease}.gallery-item:hover .overlay{transform:translateY(0)}.gallery-item .overlay h4{font-size:.9rem;font-weight:600;margin-bottom:.25rem}.gallery-item .overlay p{font-size:.8rem;opacity:.9;margin:0}.lightbox{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.9);z-index:1000;display:flex;align-items:center;justify-content:center;padding:2rem;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}.lightbox.active{opacity:1;visibility:visible}.lightbox-content{position:relative;max-width:90vw;max-height:90vh;display:flex;flex-direction:column}.lightbox img{max-width:100%;max-height:80vh;object-fit:contain;border-radius:8px}.lightbox-info{background:#fff;padding:1rem;border-radius:0 0 8px 8px;text-align:center}.lightbox-info h3{margin:0 0 .5rem;font-size:1.1rem;color:#2563eb}.lightbox-info p{margin:0;color:#6b7280;font-size:.9rem}.lightbox-close,.lightbox-nav{position:absolute;background:rgba(255,255,255,.2);border:0;color:#fff;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .3s ease}.lightbox-close{top:-3rem;right:0;width:2.5rem;height:2.5rem}.lightbox-close:hover,.lightbox-nav:hover{background:rgba(255,255,255,.3)}.lightbox-nav{top:50%;transform:translateY(-50%);width:3rem;height:3rem}.lightbox-prev{left:-4rem}.lightbox-next{right:-4rem}.lightbox-counter{position:absolute;bottom:-3rem;left:50%;transform:translateX(-50%);color:#fff;font-size:.9rem;background:rgba(0,0,0,.5);padding:.5rem 1rem;border-radius:1rem}@media (max-width:768px){.photo-gallery{grid-template-columns:repeat(2,1fr)}.lightbox{padding:1rem}.lightbox-nav{display:none}.lightbox-close{position:fixed;top:1rem;right:1rem}}.article-gallery{margin:2rem 0;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden}.article-gallery-header{background:#f9fafb;padding:1rem 1.5rem;border-bottom:1px solid #e5e7eb}.article-gallery-header h3{margin:0;font-size:1.1rem;color:#374151;display:flex;align-items:center}.article-gallery-header .icon{width:1.25rem;height:1.25rem;margin-right:.5rem;color:#fd7e29}.article-gallery-body{padding:1.5rem}