/* Block "Video Reels" — OCHI, 2026-09-16 */
.video-reels .head { margin-bottom: 2.5rem; }

.video-reels__track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: .75rem;
	scrollbar-width: thin;
}
/* мало роликів — по центру, а не притиснуті ліворуч */
.video-reels__track { justify-content: safe center; }

.video-reels__item {
	position: relative;
	flex: 0 0 auto;
	width: 17.5rem;
	aspect-ratio: 9 / 16;
	margin: 0;
	border-radius: .63rem;
	overflow: hidden;
	background: #08232a;
	scroll-snap-align: center;
}

.video-reels__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-reels__caption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 2.5rem 1rem 1rem;
	font-size: 1rem;
	line-height: 1.35;
	color: #fff;
	text-align: center;
	background: linear-gradient(to top, rgba(3, 5, 22, .75), rgba(3, 5, 22, 0));
	pointer-events: none;
}

.video-reels__btn { margin-top: 2.25rem; text-align: center; }

@media screen and (max-width: 1023.98px) {
	.video-reels__item { width: 14rem; }
}

@media screen and (max-width: 767.98px) {
	.video-reels__track {
		gap: .75rem;
		margin: 0 -1.031rem;          /* до країв екрана, як single-slider */
		padding: 0 1.031rem .75rem;
		justify-content: flex-start;
	}
	.video-reels__item { width: 68vw; max-width: 17.5rem; }
}
