.video-embed {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    overflow: hidden;
}

.video-responsive {
	aspect-ratio: 1.7777777778;
	box-shadow: 0 2px 50px 20px rgba(20, 28, 54, 0.25);
}

.bg-pattern-stripes {
	position: relative;
	background-color: #f0f0f0;
	background-image: repeating-linear-gradient(
		135deg,
		#e0e0e0,
		#e0e0e0 5px,
		#f0f0f0 5px,
		#f0f0f0 10px
	);
}

@media screen and (min-width: 1200px) {
	.video-embed {
		min-width: 768px;
	}
	.video-embed > .video-responsive {
		min-width: 768px;
	}
}


@media screen and (min-width: 768px) and (max-width: 1199.98px) {
	.video-embed {
		min-width: 600px;
	}
	.video-embed > .video-responsive {
		min-width: 600px;
	}
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
	.video-embed {
		min-width: 480px;
	}
	.video-embed > .video-responsive {
		min-width: 480px;
	}
}

@media screen and (max-width: 575.98px) {
	.video-embed {
		min-width: 100%;
	}
	.video-embed > .video-responsive {
		min-width: 100%;
	}
}

/* Post Meta Icon Labels (Mobile) */
.icon-with-label {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	margin-left: 0.5rem;
}

.icon-label {
	font-size: 0.75rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

/* Hide labels on desktop (lg breakpoint and up) */
@media (min-width: 992px) {
	.icon-label {
		display: none;
	}
}