body {
    margin: 0;
    font-family: sans-serif;
}

.gallery {
    width: 1128px;
    margin: 24px auto 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-item {
    width: calc((1128px - 48px) / 3);
}

.gallery-link {
    display: block;
}

.gallery-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;

    transition: transform 250ms ease;
}

.basicLightbox__placeholder img {
    width: 1112px;
    height: 640px;
    object-fit: cover;
}



