
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --themeColor: #ff0a0e;
            --clr-primary: var(--themeColor);
            --clr-primary-darker: oklch(from var(--clr-primary) 35% c h);
            --clr-neutral-50: hsl(0, 5%, 100%);
            --clr-neutral-900: hsl(0, 5%, 5%);
            --size-2: 0.5rem;
            --size-3: 1rem;
            --size-4: 1.25rem;
            --size-6: 1.75rem;
            --size-8: 3rem;
            --size-9: 4rem;
            --heading-medium: 24px;
            --heading-medium-weight: 700;
            --container-padding-block: var(--size-8);
        }

        body {
            font-family: 'Atkinson Hyperlegible', sans-serif;
            line-height: 1.5;
            color: var(--clr-neutral-900);
            background-color: var(--clr-neutral-50);
            overflow-x: hidden;
        }

        html {
            overflow-x: hidden;
        }

        .content-grid {
            --padding-inline: 1rem;
            --content-max-width: 1200px;
            display: grid;
            grid-template-columns: 
                [full-width-start] minmax(var(--padding-inline), 1fr)
                [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width))
                [content-end] minmax(var(--padding-inline), 1fr)
                [full-width-end];
        }

        .content-grid > * {
            grid-column: content;
        }

        .video_section {
            padding-block: var(--container-padding-block);
            background-color: var(--clr-neutral-50);
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .video_section__header {
            margin-bottom: var(--size-8);
            text-align: center;
        }

        .video_section__header h2 {
            font-size: var(--heading-medium);
            font-weight: var(--heading-medium-weight);
            color: var(--clr-primary-darker);
            margin-bottom: var(--size-3);
        }

        .video_section__header p {
            max-width: 65ch;
            margin: 0 auto;
        }

        .video_grid {
            display: grid;
            gap: var(--size-6);
            grid-template-columns: 1fr;
            width: 100%;
            max-width: 100%;
        }

        .video_item {
            width: 100%;
            max-width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: var(--size-2);
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .video_item video {
            width: 100%;
            height: 100%;
            max-width: 100%;
            object-fit: cover;
            display: block;
        }

        .video_caption {
            margin-top: var(--size-3);
            text-align: center;
            font-size: 16px;
            color: var(--clr-neutral-900);
        }

        /* Tablet Portrait (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            :root {
                --container-padding-block: var(--size-8);
                --heading-medium: 28px;
            }

            .video_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--size-6);
            }

            .video_section__header {
                text-align: center;
                margin-bottom: var(--size-6);
            }

            .video_section__header h2 {
                font-size: 28px;
            }

            .video_section__header p {
                margin: 0 auto;
                max-width: 60ch;
            }

            .video_item {
                border-radius: var(--size-3);
            }

            .video_caption {
                font-size: 15px;
                margin-top: var(--size-2);
            }
        }

        /* Desktop (1024px+) */
        @media (min-width: 1024px) {
            :root {
                --container-padding-block: var(--size-9);
                --heading-medium: 32px;
            }

            .video_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--size-8);
            }

            .video_section__header {
                text-align: left;
                margin-bottom: var(--size-8);
            }

            .video_section__header h2 {
                font-size: 32px;
            }

            .video_section__header p {
                margin: 0;
            }

            .video_item {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                border-radius: var(--size-3);
            }

            .video_item:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
            }
        }

        /* Large Desktop (1440px+) */
        @media (min-width: 1440px) {
            :root {
                --container-padding-block: var(--size-10);
            }

            .video_section__header h2 {
                font-size: 36px;
            }

            .video_caption {
                font-size: 18px;
            }
        }
  