/*
 * When the *page* document has Elementor "Hide title", the kit outputs
 * `:root { --page-title-display: none }`. Theme Post Title widgets use
 * `.elementor-page-title { display: var(--page-title-display) }` (see Elementor frontend.css),
 * so titles loaded into the off-canvas were invisible even though the HTML was correct.
 */
#elementor-loop-detail {
	--page-title-display: block;
}

/* Whole slide opens off-canvas (script listens on .swiper-slide). */
.elementor-widget-loop-carousel .swiper-slide {
	cursor: pointer;
}

.elementor-widget-loop-carousel .elementor-swiper-button,
.elementor-widget-loop-carousel .swiper-pagination {
	cursor: pointer;
}
