/* 484 Media YouTube Embed — Frontend */

.yte-embed-wrapper {
	margin-bottom: 1.5em;
}

.yte-embed-responsive {
	overflow: hidden;
	border-radius: 4px;
	background: #000;
}

.yte-embed-title {
	text-align: center;
	font-size: 0.9em;
	color: #555;
	margin: 6px 0 0;
}

/* Gallery grid */
.yte-gallery {
	display: grid;
	gap: 24px;
	margin-bottom: 1.5em;
}

.yte-gallery .yte-embed-wrapper {
	margin-bottom: 0;
}

.yte-gallery-cols-1 { grid-template-columns: 1fr; }
.yte-gallery-cols-2 { grid-template-columns: repeat(2, 1fr); }
.yte-gallery-cols-3 { grid-template-columns: repeat(3, 1fr); }
.yte-gallery-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
	.yte-gallery-cols-3,
	.yte-gallery-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.yte-gallery-cols-2,
	.yte-gallery-cols-3,
	.yte-gallery-cols-4 {
		grid-template-columns: 1fr;
	}
}
