.gallery-grid{background:var(--white);padding:4rem 0}.gallery-grid__filters{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center;margin-bottom:3rem}.gallery-grid__filter{background:var(--bg-linen);border:none;border-radius:var(--radius);color:var(--foreground);cursor:pointer;font-size:.875rem;font-weight:500;padding:.625rem 1.25rem;transition:all .2s}.gallery-grid__filter:hover{background:var(--bg-surface)}.gallery-grid__filter--active{background:var(--dark);color:var(--white)}.gallery-grid__items{display:grid;gap:1.5rem;grid-template-columns:repeat(2,1fr)}@media (min-width:1024px){.gallery-grid__items{grid-template-columns:repeat(3,1fr)}}.gallery-grid__card{transition:opacity .3s}.gallery-grid__image-wrap{border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden;position:relative}.gallery-grid__img{aspect-ratio:1/1;object-fit:cover;transition:transform .3s;width:100%}.gallery-grid__card:hover .gallery-grid__img{transform:scale(1.05)}.gallery-grid__tags{display:flex;gap:.375rem;left:.75rem;position:absolute;top:.75rem}.gallery-grid__tag{background:hsla(0,0%,100%,.9);border-radius:var(--radius);color:var(--dark);font-size:.75rem;font-weight:500;padding:.125rem .5rem}.gallery-grid__title{color:var(--foreground);font-size:.875rem;font-weight:600;margin-bottom:.25rem}.gallery-grid__desc{color:var(--muted);font-size:.75rem;line-height:1.5}