.object__gallery {
    position: relative;
    margin-bottom: 64px;
}

.object__gallery-title {
    margin: 0 16px 48px;
}

.object__gallery-list {
    display: flex;
    padding: 0;
    margin: 0 0 0 16px;
    list-style: none;
    column-gap: 16px;
}

.object__gallery-item {
    position: relative;
    display: block;
    min-width: 198px;
    min-height: 198px;
    border-radius: 16px;
    background: var(--background-block);
}

.object__gallery-item figure {
    overflow: hidden;
    width: 198px;
    height: 198px;
    padding: 0;
    margin: 0;
    border-radius: 16px;
}

.object__gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 960px) {
.object__gallery-item {
    min-width: 298px;
    min-height: 298px;
}

.object__gallery-item figure {
    width: 298px;
    height: 298px;
}
}