/* 484 Media TikiLive Cam - Frontend */

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

.tlc-embed-frame {
	overflow: hidden;
	border-radius: 4px;
	background: #000;
	width: 100%;
}

.tlc-embed-frame iframe {
	display: block;
	width: 100%;
	border: none;
}

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

/* Gallery */
.tlc-gallery { display: grid; gap: 24px; margin-bottom: 1.5em; }
.tlc-gallery .tlc-embed-wrapper { margin-bottom: 0; }

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

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

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