/* EDU TRADE - Product Videos Grid */
.edu-video-san-pham {
	width: 100%;
	box-sizing: border-box;
}

.edu-video-san-pham h1,
.edu-video-san-pham h2,
.edu-video-san-pham h3,
.edu-video-san-pham h4,
.edu-video-san-pham h5,
.edu-video-san-pham h6 {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

.edu-video-san-pham__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.edu-video-san-pham__card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.edu-video-san-pham__title {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	margin: 0;
	padding-left: 14px;
	text-transform: uppercase;
	color: var(--edu-heading);
}

.edu-video-san-pham__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 30px;
	background-color: var(--edu-primary);
	border-radius: 99px;
}

.edu-video-san-pham__title a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}

.edu-video-san-pham__title a:hover {
	color: var(--theme-palette-color-3);
}

.edu-video-san-pham__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	box-sizing: border-box;
}

.edu-video-san-pham__playlist-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--edu-primary);
	cursor: pointer;
	border-radius: 50%;
	box-sizing: border-box;
}

.edu-video-san-pham__playlist-toggle:hover {
	color: var(--edu-accent);
	background: transparent;
	transform: none;
}

.edu-video-san-pham__playlist-svg {
	display: block;
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.edu-video-san-pham__video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
}

.edu-video-san-pham__video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Override YouTube Engine fallback green background to dark gray */
.edu-video-san-pham .edu-yt-lazy-player__fallback-bg {
	background: linear-gradient(135deg, #1f2022 0%, #111213 100%);
}

/* Responsive */
@media (max-width: 767px) {
	.edu-video-san-pham__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.edu-video-san-pham__card {
		gap: 12px;
	}

	.edu-video-san-pham__title {
		margin: 0;
		padding: 0 0 0 14px;
	}

	.edu-video-san-pham__title::before {
		left: 0;
		width: 3px;
		height: 30px;
	}

	.edu-video-san-pham__video {
		margin-top: 0;
	}

	.edu-video-san-pham__playlist-toggle {
		width: 40px;
		height: 40px;
		display: inline-flex;
		align-self: flex-start;
	}
}