
        :root {
            --primary-green: #28a745;
            --dark-blue: #0d2c4f;
            --text-color: #333;
            --meta-color: #6c757d;
            --link-color: #0056b3;
            --background-color: #f8f9fa;
            --card-background: #ffffff;
            --border-color: #dee2e6;
        }

        .gallery-section {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff13;
        }

        /* Photo Gallery Section */
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        .main-footer {
            text-align: center;
            padding: 2rem 1.5rem;
            margin-top: 4rem;
            background-color: var(--card-background);
            border-top: 1px solid var(--border-color);
            color: var(--meta-color);
        }

        @media (max-width: 768px) {

            .video-gallery,
            .photo-gallery {
                grid-template-columns: 1fr;
            }
        }

        .article-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .category-tag {
            display: inline-block;
            color: #fff;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        
    /* Video Gallery Section */

     .video-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .video-card {
        background: var(--card-background);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 177.78%;
        /* 9:16 Aspect Ratio = 16/9 * 100 */
        background-color: #000;
    }

    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* ensures video fills the portrait frame */

    }

    .video-caption {
        padding: 1rem;
        font-weight: 500;
        color: var(--dark-blue);
        text-align: center;
    }

    /* Photo Gallery Section */
    .photo-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .gallery-item img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Footer */
    .main-footer {
        text-align: center;
        padding: 2rem 1.5rem;
        margin-top: 4rem;
        background-color: var(--card-background);
        border-top: 1px solid var(--border-color);
        color: var(--meta-color);
    }

    @media (max-width: 768px) {

        .video-gallery,
        .photo-gallery {
            grid-template-columns: 1fr;
        }
    }