/* Блок Show Reel */
.show-reel {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    border-radius: 20px;
    padding: 55px 25px 170px;
    margin: 20px;
    overflow: hidden;
}

.show-reel__heading {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.show-reel__title {
    line-height: 0.7;
    font-family: 'Jost', sans-serif;
    font-size: 150px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.show-reel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.show-reel__navigation {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.show-reel__button {
    background: none;
    border: none;
    cursor: pointer;
}

.show-reel__swiper {
    flex: 1;
    width: 100%;
    height: 100%;
}

.show-reel__swiper-wrapper {
    height: 100%;
    align-items: stretch;
}

.show-reel__slide {
    width: auto;
    flex-shrink: 0;
    height: auto;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
    transform: scale(0.88);
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.show-reel__slide--wide {
    aspect-ratio: 16 / 9;
}

.show-reel__slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.show-reel__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.show-reel__slide-content {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.show-reel__image,
.show-reel__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;

    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.show-reel__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.show-reel__slide:hover .show-reel__link::after {
    opacity: 1;
}

.show-reel__pagination {
    display: none;
    justify-content: center;
    gap: 4px;
    margin-top: 200px;
}

.show-reel__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 0;
    margin: 0 !important;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.show-reel__pagination .swiper-pagination-bullet-active {
    width: 40px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .show-reel {
        border-radius: 30px;
        padding: 70px 0 30px;
        margin: 0;
    }

    .show-reel__heading {
        margin-bottom: 30px;
    }

    .show-reel__title {
        line-height: 40px;
        font-size: 60px;
    }

    .show-reel__navigation {
        display: flex;
    }

    .show-reel__swiper {
        padding: 0 15px;
    }

    .show-reel__slide {
        min-height: 0;
    }

    .show-reel__pagination {
        display: flex;
        margin-top: 40px;
    }
}
.show-reel__slide {
    height: 22.9vw;
    min-height: 0;
    max-height: 500px;
}
@media (max-width: 1024px) {
    .show-reel__slide { height: 34vw; }
}
@media (max-width: 768px) {
    .show-reel__slide { height: 38vw; }
}
@media (max-width: 600px) {
    .show-reel__slide { height: 42vw; }
}

.show-reel__slide-content {
    height: 100%;
    width: 100%;
    display: block;
}