/* HAN Video Showcase — single-slide, scroll-snap carousel (no dependencies) */
.han-videos { position: relative; margin: 0 auto; max-width: 100%; }
.han-videos__viewport { overflow: hidden; }
.han-videos__track {
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	gap: 0;
}
.han-videos__track::-webkit-scrollbar { display: none; }
.han-videos__slide { flex: 0 0 100%; scroll-snap-align: start; box-sizing: border-box; padding: 0 4px; }
.han-videos__player { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: 4px; overflow: hidden; }
.han-videos__player iframe,
.han-videos__player video,
.han-videos__player embed,
.han-videos__player object { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.han-videos__caption { margin: 12px 0 0; font-size: 15px; text-align: center; }
.han-videos__caption a { color: inherit; text-decoration: none; }
.han-videos__caption a:hover { text-decoration: underline; }

/* Fallback card (posts with no playable URL) */
.han-videos__card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border: 1px solid #e5e7eb; border-radius: 4px; overflow: hidden; background: #fff; height: 100%; }
.han-videos__thumb { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.han-videos__thumb--placeholder { background: linear-gradient(135deg, #336f90, #1f4a61); }
.han-videos__card-body { display: flex; flex-direction: column; gap: 8px; padding: 20px 24px 24px; }
.han-videos__card-title { font-size: 20px; font-weight: 600; line-height: 1.3; }
.han-videos__card-excerpt { font-size: 15px; line-height: 1.5; color: #4b5563; }
.han-videos__card-cta { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: #336f90; font-weight: 600; margin-top: 4px; }

/* Arrows + dots (match the site's existing carousels) */
.han-videos__arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px; border-radius: 50%; border: 0;
	background: rgba(255,255,255,.92); color: #333; font-size: 28px; line-height: 44px; text-align: center;
	cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.25); z-index: 2; padding: 0;
}
.han-videos__arrow--prev { left: 12px; }
.han-videos__arrow--next { right: 12px; }
.han-videos__arrow[disabled] { opacity: .35; cursor: default; }
.han-videos--single .han-videos__arrow,
.han-videos--single .han-videos__dots { display: none; }
.han-videos__dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.han-videos__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: #cfd4d9; cursor: pointer; }
.han-videos__dot[aria-selected="true"] { background: #336f90; }

@media (max-width: 600px) {
	.han-videos__arrow { width: 36px; height: 36px; line-height: 36px; font-size: 22px; }
	.han-videos__caption { padding: 0 48px; }
}
