.custom_gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery_item {
    margin: 0;
    overflow: hidden;
    /*border-radius: 14px;*/
    background: #eef2f4;
    aspect-ratio: 695 / 445;
}
.gallery_image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery_item:hover .gallery_image {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .custom_gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 560px) {
    .custom_gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}