/* MBC YouTube feed grid — matches site tokens: #111 dark, #c9a84c gold, Outfit/Lato */

.mbc-yt-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 32px 0;
}

@media (max-width: 900px) {
	.mbc-yt-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.mbc-yt-grid {
		grid-template-columns: 1fr;
	}
}

.mbc-yt-card {
	display: block;
	background: #111;
	border: 1px solid #2a2a2a;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.mbc-yt-card:hover {
	transform: translateY(-4px);
	border-color: #c9a84c;
}

.mbc-yt-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.mbc-yt-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mbc-yt-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	background: rgba(201, 168, 76, 0.9);
	color: #111;
	border-radius: 50%;
	font-size: 18px;
}

.mbc-yt-meta {
	padding: 14px 16px;
}

.mbc-yt-meta h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	line-height: 1.4;
	color: #f5f5f5;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mbc-yt-meta time {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: #c9a84c;
}
