<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Glendale Designs Custom Programming
 * Video and Text
 *
 * Glendale Designs -- GDMZ
 *
 * Copyright Glendale Designs - Our optimizations are not freeware.
 * Do not use, copy or distribute without written permission.
 * Ask us, we're nice! support@glendaledesigns.com
 */
.gd-video-and-text {
	container: video_text / inline-size;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: calc(var(--margin-bottom, unset) * 1px);
	margin-left: auto;
	margin-right: auto;
	padding-top: calc(var(--padding-top, unset) * 1px);
}

.gd-video-and-text__wrapper {
	align-items: center;
	display: grid;
	position: relative;
}

.gd-video-and-text__wrapper::before {
	background: var(--background-image, none) no-repeat;
	background-color: var(--background-color, transparent);
	background-position: center;
	background-size: cover;
	bottom: 0;
	content: '';
	left: 0;
	opacity: var(--opacity, 1);
	position: absolute;
	right: 0;
	top: 0;
}

.gd-video-and-text__video {
	aspect-ratio: 16 / 9;
	border: unset;
	height: 100%;
	margin: auto;
	max-width: 50rem;
	order: var(--order, 0);
	position: relative;
	width: 100%;
}

@container video_text (inline-size &gt; 1120px) {
	.gd-video-and-text__wrapper {
		grid-template-columns: 55% 45%;
	}

	.gd-video-and-text__wrapper--reverse {
		grid-template-columns: 45% 55%;
	}

	.gd-video-and-text__video {
		margin: unset;
	}
}


.gd-video-and-text__video-content {
	padding: clamp(1.5rem, 1.214rem + 1.429vw, 2.5rem);
	position: relative;
}

.gd-video-and-text__main-content {
	padding: 0 1rem;
}

:is(.gd-video-and-text__video-content, .gd-video-and-text__main-content) *:last-child {
	margin-bottom: 0;
}


/* This styles our custom flex components debug section.
    =========================================== */
.gd-mmx-debug {
	background-color: #21252b;
	box-shadow: 0 0 8px 4px #21252b;
	color: #abb2bf;
	margin: 1rem;
	outline: 4px dotted #ff9800;
	overflow: auto;
	padding: 0 1rem;
	white-space: break-spaces;
}
</pre></body></html>