.custom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    justify-items: center;
}

.custom-gallery-card {
    overflow: hidden; 
}
.custom-gallery-card:hover {
    transform: none;
    box-shadow: none;
}

.custom-gallery-card img {
     max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}


.custom-gallery-card:hover img {
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .custom-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@supports (-webkit-touch-callout: none) {
  .custom-gallery-card img {
    height: auto !important;
    max-height: 100%;
    object-fit: cover;
    -webkit-transform: translateZ(0); /* retina ekran render hatasını düzeltir */
  }
}