/* ============================================================
   KARUZELA WYPRAWY — style
   ============================================================ */

/* ── Reset / base ────────────────────────────────────────── */
.karuzela-wyprawy *,
.karuzela-wyprawy *::before,
.karuzela-wyprawy *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Kontener główny ─────────────────────────────────────── */
.karuzela-wyprawy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas:
        "main thumbs"
        "progress progress";
    height: 580px;
    background: #111;
    overflow: hidden;
    font-family: inherit;
    position: relative;
}

/* ── Główny slajd (lewy panel) ───────────────────────────── */
.karuzela__main {
    grid-area: main;
    position: relative;
    overflow: hidden;
}

.karuzela__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.karuzela__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.karuzela__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(0, 0, 0, 0.0) 100%
    );
}

.karuzela__slide-content {
    position: absolute;
    bottom: 60px;
    left: 48px;
    right: 32px;
    z-index: 2;
    color: #fff;
}

.karuzela__numer {
    display: block;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -2px;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.karuzela__podtytul {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.karuzela__tytul {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.karuzela__tytul a {
    color: inherit;
    text-decoration: none;
}

.karuzela__excerpt {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 340px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.karuzela__cta {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.karuzela__cta:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* ── Miniaturki (prawy panel) ────────────────────────────── */
.karuzela__thumbs {
    grid-area: thumbs;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.karuzela__thumb {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.5s ease;
}

.karuzela__thumb:hover {
    flex: 1.3;
}

.karuzela__thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    transition: background 0.3s;
}

.karuzela__thumb:hover .karuzela__thumb-overlay,
.karuzela__thumb.is-active .karuzela__thumb-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.0) 100%
    );
}

/* Podświetlenie aktywnej miniaturki */
.karuzela__thumb.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
    z-index: 3;
}

.karuzela__thumb-content {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: #fff;
}

.karuzela__thumb-tytul {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin-bottom: 6px;
}

.karuzela__thumb-opis {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Link pokrywający całą miniaturkę */
.karuzela__thumb-link {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
}

/* ── Pasek postępu ───────────────────────────────────────── */
.karuzela__progress {
    grid-area: progress;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 48px 14px 48px;
    background: rgba(0, 0, 0, 0.5);
}

.karuzela__progress-track {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.karuzela__progress-bar {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.6s ease;
    width: 0%;
}

.karuzela__progress-licznik {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.karuzela__progress-current {
    color: #fff;
}

.karuzela__progress-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
}

/* ── Brak wypraw ─────────────────────────────────────────── */
.karuzela-brak {
    padding: 40px;
    text-align: center;
    color: #888;
}

/* ── Responsywność ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .karuzela-wyprawy {
        grid-template-columns: 1fr;
        grid-template-rows: 400px 160px auto;
        grid-template-areas:
            "main"
            "thumbs"
            "progress";
        height: auto;
    }

    .karuzela__thumbs {
        flex-direction: row;
        height: 160px;
    }

    .karuzela__thumb-opis {
        display: none;
    }
}

@media (max-width: 600px) {
    .karuzela-wyprawy {
        grid-template-rows: 320px 120px auto;
    }

    .karuzela__slide-content {
        left: 24px;
        bottom: 32px;
    }

    .karuzela__progress {
        padding: 12px 24px;
    }

    .karuzela__thumbs {
        height: 120px;
    }
}
