.photogallery-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.photogallery-item {
    flex: 0 0 calc(33.3333% - 20px);
    position: relative;
}
.photogallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}
.photogallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: none;
}
.photogallery-item a.photogallery-item__download-link {
    position: absolute;
    inset: auto 15px 15px auto;
    display: inline-block;
    padding: 3px 7px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-radius: 4px;
    width: auto;
    height: auto;
    text-decoration: none;
    transition: 0.3s;
}
.photogallery-item:hover .photogallery-item__download-link {
    background-color: #B28E7B;
    color: #fff;
}
@media (max-width: 1400px) {
    .photogallery-item img {
        object-fit: cover;
    }
}
@media (max-width: 1023px) {
    .photogallery-items {
        gap: 20px;
    }
    .photogallery-item {
        flex: 0 0 calc(33.3333% - 13.3333px);
    }
}
@media (max-width: 767px) {
    .photogallery-items {
        gap: 10px;
    }
    .photogallery-item {
        /* flex: 0 0 calc(33.3333% - 6.66667px); */
        flex: 0 0 calc(50% - 5px);
    }
}