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

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    /*transition: transform 0.3s ease;*/
    content-visibility: auto;
}

/*.gallery img:hover {*/
/*    transform: scale(1.05);*/
/*}*/
