
        h2 { 
            text-align: center; 
            color: #222; 
            margin-bottom: 5px; count
        }
        .video-count { 
            text-align: center; 
            color: #666; 
            margin-bottom: 30px; 
            font-size: 14px; 
            font-weight: 500;
        }
        
        /* Responsive Grid for Desktop / Tablets */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Video Card Design */
        .video-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease;
        }
        .video-card:hover {
            transform: translateY(-4px);
        }

        /* Maintaining 16:9 Aspect Ratio for Embeds */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; 
            height: 0;
            background: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%;
            border: 0;
        }

        /* Video Title Styling */
        .video-title {
            padding: 15px;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;  
            overflow: hidden;
            height: 38px;
        }

        /* 📱 VERTICAL MOBILE LAYOUT (Screens smaller than 600px) */
        @media (max-width: 600px) {
            body {
                padding: 15px 10px; /* Reduce outer padding on small screens */
            }
            .video-grid {
                grid-template-columns: 1fr; /* Forces a single vertical column */
                gap: 20px; /* Margins between vertical cards */
            }
            .video-title {
                font-size: 13px; /* Slightly smaller text for mobile */
                padding: 12px;
            }
        }