/* Galerie Grid */
.ce-gallery.owl-carousel {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 10px !important;           /* Abstand zwischen Bildern */
    justify-content: center !important; /* zentriert die Grid-Reihen */
    padding: 0 !important;     /* Abstand links/rechts */
    margin: 0 10% !important;     /* Abstand links/rechts */
    max-width: 80% !important;   /* optional, maximale Breite */
    box-sizing: border-box;
}

/* Wrapper neutralisieren */
.ce-gallery .owl-stage-outer,
.ce-gallery .owl-stage,
.ce-gallery .owl-item {
    display: contents !important;   /* Kinder direkt ins Grid */
    width: auto !important;
    margin: 0 !important;
}

/* Figure und Link */
.ce-gallery figure.image,
.ce-gallery figure.image a {
    display: block !important;
    width: 100% !important;
}

/* Bilder responsive */
.ce-gallery img.image-embed-item {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
}

figure.image a, #c95 a, #c96 a, #c98 a, #c118 a {
    pointer-events: none;
    cursor: default;
}

@media (max-width: 800px) {
.ce-gallery.owl-carousel {
    grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 640px) {
.ce-gallery.owl-carousel {
    grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 480px) {
.ce-gallery.owl-carousel {
    grid-template-columns: repeat(2, 1fr) !important;
    }
}