/* Carousel container */
.ccp-carousel {
    width: 100%;
}

/* All slides have same height */
.ccp-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; /* fixed height; adjust as needed */
    overflow: hidden;
}

/* Video & image styling */
.ccp-carousel .swiper-slide video, .ccp-carousel .swiper-slide img.ccp-poster {
    object-fit: cover;
    display: block;
    height: 100%;
    width: 100%;
}

.lg-item {
    height: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

span.ccp-play-icon {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.ccp-play-icon img{
    width: 45px;
    height: 45px;
}
.swiper-button-next, .swiper-button-prev {
    width: 30px;
    height: 30px;
    overflow: hidden;
    background: rgb(1 49 28);
    padding: 7px;
    border-radius: 50px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
}

#lg-next-1 {
    right: 0;
    position: absolute !important;
}