:root{--gallery-columns:4;--gallery-gap:10px}.custom-gallery{display:grid;grid-template-columns:repeat(var(--gallery-columns),1fr);gap:var(--gallery-gap);width:100%;max-width:1200px;margin:0 auto;padding:10px;box-sizing:border-box}.gallery-item{width:100%;background-color:#ffffff;border-radius:4px;overflow:hidden;display:flex;flex-direction:column}.image-wrapper{width:100%;aspect-ratio:1 / 1;overflow:hidden}.image-wrapper img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.3s ease-in-out}.image-wrapper:hover img{transform:scale(1.05)}.image-title{padding-top:5px;text-align:center;font-size:13px;font-weight:600;color:#333333}@media (max-width:768px){.custom-gallery{--gallery-columns:2}}@media (max-width:480px){.custom-gallery{--gallery-columns:1}}