.video-slide-item {
    padding: 0;
    position: relative;
    z-index: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

.video-slide-item:hover {
    cursor: pointer;
}

.video-slider {
    overflow: hidden;
    position: relative;
}

.video-thumbnail-wrapper {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem;
}

.video-thumbnail-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.video-thumbnail-wrapper:hover > img {
    transform: scale(1.03);
}

.video-thumbnail-wrapper:hover > .video-thumbnail-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.video-slider .swiper-slide {
    user-select: none;
    -webkit-user-drag: none;
}

.video-popup-title {
    margin: 0;
}

.video-slide-item .video-title {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0;
}

.video-popup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    justify-content: center;
}

.video-thumbnail-wrapper svg {
    width: 2rem;
    height: 2rem;
    position: absolute;
    z-index: 10;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    color: #fff;
    z-index: 20;
}

.video-slider .swiper-pagination {
    display: block;
    position: relative;
}

.video-slider {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-slider .swiper-notification {
    display: none;
}

.video-slider .swiper-pagination-bullet-active {
    background-color: #222;
}

.video-thumbnail-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 10;
    display: block;
    top: 0;
    left: 0;
    transition: background-color 0.4s ease;
}

.video-popup-content h2 {
    margin: 0;
}

.swiper-button {
    color: #222;
}

.swiper-button::after {
    display: none;
}

.swiper-button {
    color: #222;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.2;
    transition: all 0.2s ease;
    top: calc(50% - 1rem);
}

.swiper-button:hover {
    opacity: 1;
}

.swiper-button-next.swiper-button { right: -2rem; }
.swiper-button-prev.swiper-button { left: -2rem; }

@media screen and (max-width: 800px) {
    .swiper-button {
        width: 1.1rem;
        height: 1.1rem;
    }
    .swiper-button-next.swiper-button { right: -1.5rem; }
    .swiper-button-prev.swiper-button { left: -1.5rem; }
}