        .video-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .video-card {
            flex: 1 1 300px; /* Grow to fit, min 600px */
            max-width: 400px; /* Cap at 700px (within 600-800px range) */
			width: 100%; 
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.4);
            padding: 15px;
            text-align: center;
        }
        .video-card h3 {
            font-size: 1.5em;
            margin: 0 0 10px;
            color: #2c3e50;
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            margin-bottom: 10px;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 4px;
        }
        .video-card p {
            font-size: 1em;
            line-height: 1.5;
            color: #555;
            margin: 0;
        }
        @media (max-width: 768px) {
            .video-card {
                flex: 1 1 100%; /* Full width on small screens */
                max-width: 100%;
            }
        }