/* .video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
} */

/* .video-info {
    padding: 14px;
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 6px;
}

.video-date {
    font-size: 12px;
    color: #777;
} */

.video-card {
    background: rgb(44 43 81) !important;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: aliceblue;
    border: 1px solid rgb(49, 49, 49);
    margin-bottom: 40px;
    width: 100%;
    height: 400px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: right;
    line-height: 2;
    height: 90px;
}

.video-info {
    padding: 12px;
    height: 150px;
    text-align: right;

}

.video-date {
    font-size: 14px;
    font-weight: 700;
    color: #dddddd;
    line-height: 3;
}

.video-organizer {
    font-size: 14px;
    font-weight: 700;
    color: #dddddd;
}


.video-item {
    width: 100%;
    height: 180px;
}


@media (max-width: 700px) {
    .video-item {
        height: 150px !important;
    }

    swiper-slide {
        min-height: 270px !important;
        max-height: 700px !important;
    }

    .video-card {
        height: 400px !important;
    }
}