/* Mortex Gallery Grid Styles */

.mortex-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.mortex-gallery-grid__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.mortex-gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mortex-gallery-grid__item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Hover Effects */
.mortex-gallery-grid.hover-zoom .mortex-gallery-grid__item img:hover {
    transform: scale(1.05);
}

.mortex-gallery-grid.hover-opacity .mortex-gallery-grid__item img:hover {
    opacity: 0.8;
}

/* Tablet - 2 kolommen */
@media (max-width: 1024px) {
    .mortex-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 kolom */
@media (max-width: 640px) {
    .mortex-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}