@layer master {
    .templateContent {
        .container {
            .inner {
                @media (min-width: 56em) {
                    grid-column: 3 / span 8;
                }
                @media (--min-fablet) {
                    grid-column: 3 / span 8;
                }
                .embedCode {
                    iframe {
                        width: 100%;
                        height: 100%;
                        aspect-ratio: 16 / 9;
                    }
                }
            }
        }

        &.split,
        &.columns {
            .inner {
                grid-column: span 6;
            }
        }
    }
}
