/* ==========================================================================
   Blok 7 · Video na pozadí — maket 98:796 (1440 × 520)
   Fotka nebo smyčka přes celou šířku, přes ni ztmavení a text na střed.
   ========================================================================== */

.bx-video {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--bx-ink);
}

.bx-video__media { position: absolute; inset: 0; }

.bx-video__player,
.bx-video__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bx-video__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 14, 22, .85) 0%, rgba(9, 14, 22, .7) 60%, rgba(9, 14, 22, .85) 100%);
}

.bx-video__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 60px var(--bx-gutter);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bx-video__badge {
	background: var(--bx-yellow);
	color: var(--bx-ink);
	padding: 8px 16px;
}

.bx-video__title {
	margin-top: 26px;
	color: var(--bx-white);
	font-size: 52px;
	line-height: 58px;
	letter-spacing: -0.8px;
}
.bx-video__line { display: block; }

.bx-video__text {
	margin-top: 16px;
	color: rgba(255, 255, 255, .82);
	max-width: 600px;
}

.bx-video__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 30px;
}

.bx-video__actions .bx-btn { padding: 19px 30px; }

/* --- Adaptiv --------------------------------------------------------------- */
@media (max-width: 900px) {
	.bx-video { min-height: 420px; }
	.bx-video__title { font-size: 34px; line-height: 40px; }
}

@media (max-width: 600px) {
	.bx-video { min-height: 360px; }
	.bx-video__inner { padding-block: 44px; }
	.bx-video__title { font-size: 27px; line-height: 33px; }
	.bx-video__actions { width: 100%; flex-direction: column; }
	.bx-video__actions .bx-btn { width: 100%; }
}
