/* ==========================================================
   SADECE GÖRSEL GALERİSİ İÇİN İZOLE CSS
   Site menüsü, fontlar, başlıklar ve genel yerleşime müdahale etmez.
   ========================================================== */

.res-gallery {
    width: min(1170px, calc(100% - 30px));
    margin: 32px auto;
}

.res-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.res-gallery-item {
    min-width: 0;
}

.res-gallery-link {
    display: block;
    overflow: hidden;
    border: 2px solid #cccccc;
    background: #ffffff;
}

.res-gallery-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .30s ease, filter .30s ease;
}

.res-gallery-link:hover .res-gallery-image {
    transform: translateY(-6px);
    filter: brightness(1.03);
}

@media (max-width: 900px) {
    .res-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .res-gallery {
        width: min(100% - 24px, 1170px);
        margin: 24px auto;
    }

    .res-gallery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}
