@charset "UTF-8";
/***!  Style Declaration  !***/

.gallery-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;padding:20px;box-sizing:border-box}.gallery-item{background:#fff;border-radius:8px;box-shadow:0 2px 10px rgba(0,0,0,0.1);text-align:center;font-family:'Roboto',sans-serif;overflow:hidden;transition:transform 0.3s}.gallery-item:hover{transform:translateY(-5px)}.gallery-item img{width:100%;height:150px;object-fit:cover;display:block}.gallery-title{display:block;font-weight:500;font-size:0.95rem;margin-top:8px;color:#333}@media (max-width:1200px){.gallery-grid{grid-template-columns:repeat(4,1fr)}}@media (max-width:992px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}@media (max-width:768px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:480px){.gallery-grid{grid-template-columns:1fr}}
