.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.gallery-grid img {
    width: 100%;         /* Fill the grid cell */
    height: auto;       /* Consistent height */
    object-fit: cover;
    border-radius: 12px;
    display: block;      /* Removes inline gap */
}