/* Gallery Preview (Home - images inside 3D box) */
.gallery-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 2rem;
    background: var(--black-pure);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Gleiche Höhe wie Video-Karte → 16:9 */
.gallery-card .iframe-container {
    padding-bottom: 56.25%;
}
