.video_section {
    width: 100%;
    background: var(--white);

    & .text_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 0 3rem;
        
        & h4 {
            font-size: 2rem;
            font-family: "DM Sans", arial, sans-serif;
            margin: 0 0 2rem;
            font-weight: 400;
            color: var(--primary);

            @media (max-width: 991px) {
                font-size: 1.5rem;
                margin: 0 0 1rem;
            }
        }
        
        & h2 {
            font-size: 5rem;
            font-weight: 400;
            font-family: "Aboreto", arial, sans-serif;
            text-transform: uppercase;
            margin: 0;
            color: var(--primary);

            @media (max-width: 991px) {
                font-size: 3rem;
                margin: 0 0 3rem;
            }
        }
    }

    & .video_row {
        margin: 5rem auto 0;

        @media (max-width: 991px) {
            margin: 3rem auto 0;
        }
    }

    & .video_row--double {
        display: flex;
        gap: 2rem;
        align-items: flex-start;

        @media (max-width: 767px) {
            flex-direction: column;
        }

        & .video_wrapper {
            flex: 1;
            min-width: 0;
            padding-bottom: 0;
            height: auto;
            aspect-ratio: 16 / 9;
        }
    }

    & .video_wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;

        & iframe, & video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
    }

    & .bottom_text_area {
        width: 100%;
        text-align: center;
    }

    & .after_video_content {
        width: 100%;
        margin-top: 5rem;
        border-radius: 1rem;

        @media (max-width: 991px) {
            padding: 3rem 2rem;
            margin-top: 3rem;
        }

        & .after_video_header {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            letter-spacing: -2px;

            @media (max-width: 991px) {
                margin-bottom: 2rem;
            }

            & .after_video_subheading {
                font-family: "Aboreto", arial, sans-serif;
                font-size: 4rem;
                font-weight: 400;
                text-transform: uppercase;
                color: var(--primary);
                margin: 0;
                line-height: 1.2;

                @media (max-width: 991px) {
                    font-size: 2.5rem;
                }
            }

            & .after_video_badge {
                display: inline-block;
                padding: 0.5rem 1.5rem;
                font-family: "DM Sams", arial, sans-serif;
                font-size: 1.4rem;
                font-weight: 600;
                text-transform: uppercase;
                color: var(--primary);
                border: 1px solid #d4a574;
                background: #fef9f5;
                border-radius: 0.5rem;
                line-height: 1.2;
                letter-spacing: normal;

                @media (max-width: 991px) {
                    font-size: 1rem;
                    padding: 0.4rem 1.2rem;
                }
            }
        }

        & .after_video_points_wrapper {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;

            @media (max-width: 991px) {
                flex-direction: column;
                align-items: stretch;
            }

            & .after_video_points {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
                flex: 1;

                @media (max-width: 991px) {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                & .after_video_point {
                    display: flex;
                    flex-direction: column;
                    gap: 0.5rem;

                    & .point_label {
                        font-size: 1.6rem;
                        font-weight: 700;
                        color: var(--primary);
                        line-height: 1.3;

                        @media (max-width: 991px) {
                            font-size: 1.4rem;
                        }
                    }

                    & .point_content {
                        font-size: 1.4rem;
                        font-weight: 400;
                        color: var(--primary);
                        line-height: 1.4;

                        @media (max-width: 991px) {
                            font-size: 1.2rem;
                        }
                    }
                }
            }

            & .after_video_button {
                white-space: nowrap;
                padding: 1.5rem 3rem;
                font-size: 1.6rem;
                font-weight: 700;
                text-transform: uppercase;

                @media (max-width: 991px) {
                    width: 100%;
                    text-align: center;
                    padding: 1.2rem 2rem;
                    font-size: 1.4rem;
                }
            }
        }
    }
}