﻿#wg-gallery{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));

    gap:15px;

    max-width:1400px;

    margin:40px auto;

}

.wg-photo{

    overflow:hidden;

    border-radius:12px;

    background:#eee;

    aspect-ratio:1;

}

.wg-photo img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.35s;

    cursor:pointer;

}

.wg-photo:hover img{

    transform:scale(1.08);

}