/* Mower Videos reels section ([mower_videos]) */
.bl-reels { position: relative; padding: 0 10px; }
.bl-reel { cursor: pointer; }
.bl-reel-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	background-size: cover;
	background-position: center;
	background-color: #e9edf3;
	border-radius: 10px;
	overflow: hidden;
}
.bl-reel-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.12);
	transition: background .2s;
	z-index: 1;
}
.bl-reel:hover .bl-reel-thumb::after { background: rgba(0,0,0,.28); }

.bl-reel-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
	z-index: 0;
}
.bl-reel.is-hovering .bl-reel-video { opacity: 1; }

.bl-reel-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	line-height: 0;
	filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
	transition: opacity .2s, transform .2s;
}
.bl-reel:hover .bl-reel-play { transform: translate(-50%, -50%) scale(1.12); }
.bl-reel.is-hovering .bl-reel-play { opacity: 0; }

.bl-reel-title {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #222;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bl-reels .swiper-button-next,
.bl-reels .swiper-button-prev { color: #2ea836; }

/* Video popup */
body.bl-lb-lock { overflow: hidden; }
.bl-reel-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0,0,0,.9);
	align-items: center;
	justify-content: center;
}
.bl-reel-modal.is-open { display: flex; }
.bl-reel-modal__inner { position: relative; max-width: 92vw; }
.bl-reel-modal video {
	max-width: 92vw;
	max-height: 86vh;
	width: auto;
	height: auto;
	border-radius: 10px;
	background: #000;
	display: block;
}
.bl-reel-close {
	position: absolute;
	top: -46px;
	right: 0;
	width: 40px;
	height: 40px;
	font-size: 26px;
	line-height: 40px;
	color: #fff;
	background: rgba(255,255,255,.15);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}
.bl-reel-close:hover { background: #2ea836; }
