<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 Grid
 *
 * 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-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: calc(var(--margin-bottom, unset) * 1px);
	margin-left: auto;
	margin-right: auto;
	padding-top: calc(var(--padding-top, unset) * 1px);
}

.gd-video-grid__header {
	align-self: var(--align-self, unset);
	display: flex;
	flex-direction: var(--flex-direction, unset);
	gap: 0.875rem;
	text-align: center;
}

.gd-video-grid__header-icon {
	aspect-ratio: 3 / 2;
	background-color: var(--background-color, unset);
	display: block;
	margin: auto;
	mask: var(--mask-image, unset) no-repeat;
	mask-size: cover;
	width: 6rem;
}

.gd-video-grid__header-picture {}

.gd-video-grid__header-image {
	height: clamp(2rem, 1.429rem + 2.857vw, 4rem);
}

.gd-video-grid__heading {
	align-self: center;
	font-family: "Fontin Sans", sans-serif;
	font-size: clamp(1.375rem, 1.063rem + 1.563vw, 2rem);
	letter-spacing: .015em;
	line-height: 1.25;
}

.gd-video-grid__content {
	margin: auto;
	max-width: 60rem;
	text-align: var(--text-align, unset);
}

.gd-video-grid__videos {
	display: grid;
	gap: 1rem;
}

@media screen and (min-width: 60em) {
	.gd-video-grid__videos {
		grid-template-columns: repeat(var(--columns, auto-fill), 1fr);
	}
}

.gd-video-grid__video-wrapper {}

.gd-video-grid__video {
	margin-bottom: 4px;
}

.gd-video-grid__video iframe {
	aspect-ratio: 16 / 9;
	border: unset;
	height: auto;
	width: 100%;
}

.gd-video-grid__video-title {
	font-weight: 700;
	margin-bottom: 0;
}
.gd-video-grid__video-views-date {
	color: #666666;
	display: flex;
	gap: 0.5ch;
	font-size: 0.875rem;
}

.gd-video-grid__video-views {
}

.gd-video-grid__video-date {
}


/* 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>