/* TBT Video — hero premium v3.2 (fara benzi overlay) */

.tbt-video-hero{
	--tbt-vid-height: 400px;
	--tbt-zoom: 1.05;
	position: relative;
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	background: #0c3a7f;
	box-shadow: 0 24px 60px -20px rgba(12,58,127,.35), 0 8px 20px -10px rgba(12,58,127,.18);
	transition: box-shadow .25s ease;
	isolation: isolate;
}

.tbt-video-hero:hover{
	box-shadow: 0 28px 70px -18px rgba(12,58,127,.42), 0 10px 24px -8px rgba(12,58,127,.22);
}

.tbt-video-frame{
	position: relative;
	width: 100%;
	height: var(--tbt-vid-height, 400px);
	overflow: hidden;
	border-radius: inherit;
}

.tbt-video-embed{
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: var(--tbt-iframe-w, 100%) !important;
	height: var(--tbt-iframe-h, 100%) !important;
	max-width: none !important;
	max-height: none !important;
	min-width: 0 !important;
	min-height: 0 !important;
	transform: translate(-50%, -50%) !important;
	border: 0 !important;
	display: block !important;
	pointer-events: none !important;
	aspect-ratio: auto !important;
	z-index: 1;
}

/* Guard: intercepteaza tap-uri, previne YT sa afiseze controls */
.tbt-video-guard{
	position: absolute;
	inset: 0;
	z-index: 999;
	background: transparent;
	cursor: default;
	pointer-events: auto;
	touch-action: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

/* CHROME mode — video standard embed cu controls YT vizibile */
.tbt-video-hero--chrome{
	--tbt-zoom: 1;
	background: #000;
}
.tbt-video-hero--chrome .tbt-video-embed{
	pointer-events: auto !important;
}

/* Mobile */
@media (max-width: 768px){
	.tbt-video-hero{
		--tbt-vid-height: 240px;
		--tbt-zoom: 1.15;
		margin-left: 14px;
		margin-right: 14px;
		width: calc(100% - 28px);
		max-width: none;
	}
	.tbt-video-hero--chrome{
		--tbt-zoom: 1;
	}
}