/**
 * OGB Carousel
 */

/* ===== WRAPPER GŁÓWNY - PEŁNA SZEROKOŚĆ ===== */
.ogb-carousel-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    --ogb-carousel-height: 550px;
}

/* ===== KONTENER TŁA/SLAJDÓW ===== */
.ogb-carousel-slides-container {
    position: relative;
    width: 100%;
    min-height: var(--ogb-carousel-height, 550px);
    overflow: hidden; 
	margin: 80px 0;
	border-top: solid 15px #7A8FB2;
	border-bottom: solid 15px #25467E;
}

/* ===== SLAJDY ===== */
.ogb-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.ogb-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ===== TREŚĆ ===== */
.ogb-carousel-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    height: 100%;
    min-height: inherit;
    
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ===== GRAFIKA SLAJDU ===== */
.ogb-graphic {
    position: relative;
    z-index: 10;
    transform-origin: bottom center;
}

.ogb-graphic-img {
    display: block;
    max-height: calc(var(--ogb-carousel-height, 550px) - 80px);
    max-width: 90%;
    height: auto;
    width: auto;
    
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.35));
    border-radius: 6px;
    
    transition: transform 0.3s ease, filter 0.3s ease;
    
    animation: ogbGraphicBounce 2.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes ogbGraphicBounce {
    0% {
        transform: translateY(25px) scale(0.94);
        opacity: 0;
    }
    35% {
        transform: translateY(-10px) scale(1.03);
        opacity: 1;
    }
    65% {
        transform: translateY(4px) scale(0.99);
    }
    85% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.ogb-carousel-slide:not(.active) .ogb-graphic-img {
    animation: none !important;
    transform: none !important;
}

.ogb-slide-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.ogb-slide-link:hover .ogb-graphic-img {
    transform: scale(1.04) translateY(-6px) !important;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4)) !important;
}

.ogb-slide-link:focus {
    outline: 3px solid rgba(255,255,255,0.7);
    outline-offset: 12px;
    border-radius: 6px;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 1200px) {
    :root {
        --ogb-carousel-height: 480px !important;
    }
    
    .ogb-carousel-content {
        max-width: 960px;
        padding: 30px 15px;
    }
    
    .ogb-graphic-img {
        max-height: calc(var(--ogb-carousel-height, 480px) - 60px);
    }
}

@media (max-width: 768px) {
    :root {
        --ogb-carousel-height: 420px !important;
    }
    
    .ogb-carousel-content {
        justify-content: center;
        padding: 25px 15px;
    }
    
    .ogb-graphic-img {
        max-height: calc(var(--ogb-carousel-height, 420px) - 50px);
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    :root {
        --ogb-carousel-height: 350px !important;
    }
    
    .ogb-carousel-content {
        padding: 20px 12px;
    }
    
    .ogb-graphic-img {
        max-height: 260px;
        max-width: 92%;
    }
}

.ogb-carousel-wrapper[data-auto-height="true"] .ogb-carousel-slide,
.ogb-carousel-wrapper[data-auto-height="true"] .ogb-carousel-slides-container,
.ogb-carousel-wrapper[data-auto-height="true"] {
    min-height: unset !important;
    height: auto !important;
}
