.swiper {
    width: 100%;
    height: 600px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: auto;
}

.swiper-slide {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); */
    height: 100%;
}

.video-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 20px; */
}

.swiper-slide-active {
    transform: scale(1.1);
    transition: transform 0.4s ease;
    z-index: 2;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-title {
    position: absolute;
    bottom: 70px;
    left: 20px;
    color: #fff;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 6px;
    pointer-events: none;
    z-index: 10;
}


/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
    .swiper {
        height: 450px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .swiper {
        height: 350px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}