﻿.video-wrapper {
    padding: 60px 20px;
    /*background: #f4f7f6;*/
    display: flex;
    justify-content: center;
}

.video-card {
    background: #fff;
    /*max-width: 1000px;*/
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: fadeUp 0.8s ease forwards;
}

.video-card-portrait {
    background: #fff;
    /*max-width: 1000px;*/
    width: 30%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: fadeUp 0.8s ease forwards;
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    padding: 25px 30px;
    text-align: center;
}

    .video-caption h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        color: #222;
    }

    .video-caption p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

/* Entry Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .video-caption {
        padding: 20px;
    }

        .video-caption h2 {
            font-size: 1.4rem;
        }

    .video-card-portrait {
        
       
        width: 90%;
       
    }
}
