/* Modern Gallery Image Style */
.gallery-img-modern {
    width: 100%;
    aspect-ratio: 1/1; /* Kare oran, isterseniz 4/3 veya 16/9 yapabilirsiniz */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}

.gallery-img-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
    border-radius: 16px;
}

.gallery-img-modern:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .gallery-img-modern {
        aspect-ratio: 4/3;
    }
}
