/**
 * BFT Theme — Tours Carousel Styles
 */

/* ==========================================================================
   1. MAIN CONTAINER
   ========================================================================== */
.ku-tours-carousel {
	display: flex;
	flex-direction: column;
	width: 100%;
}

@media (min-width: 1024px) {
	.ku-tours-carousel {
		flex-direction: row;
	}
}

/* ==========================================================================
   2. LEFT COLUMN (TEXT CONTENT)
   ========================================================================== */
.ku-tours-carousel__left {
	display: flex;
	flex-direction: column;
	justify-content: start;
}

/* Custom Typography Overrides to bypass global h2 !important */
.ku-tours-carousel__subtitle {
	font-family: var(--font-sriracha, "Sriracha", cursive) !important;
}

.ku-tours-carousel__title {
	font-family: var(--font-sriracha, "Sriracha", cursive) !important;
}

/* ==========================================================================
   3. RIGHT COLUMN (SLIDER CONTAINER)
   ========================================================================== */
.ku-tours-carousel__right {
	position: relative;
	width: 100%;
}

.ku-tours-carousel__swiper {
	width: 100%;
	height: 100%;
}

/* Swiper Navigation Button Positioning */
.ku-tours-carousel__next {
	position: absolute !important;
	top: 50% !important;
	right: 12px !important;
	transform: translateY(-50%) !important;
	z-index: 10 !important;
	margin-top: 0 !important;
}

.ku-tours-carousel__next::after {
	display: none !important; /* Hide native Swiper font icon */
}

.ku-tours-carousel__next:hover {
	background-color: #f9fafb;
	color: #000000;
}

@media (max-width: 1024px) {
	.ku-tours-carousel__next {
		right: 10px !important;
	}
}

/* ==========================================================================
   4. STATES & EMPTY HANDLING
   ========================================================================== */
.ku-tours-carousel-empty {
	text-align: center;
	padding: 40px;
	background: #f9fafb;
	border: 1px dashed #e5e7eb;
	border-radius: 12px;
	color: #6b7280;
	font-style: italic;
}
