/**
 * Tutor LMS Footer & Navigation
 *
 * Footer bar positioning, prev/next/submit buttons, and responsive adjustments.
 */

/* ── Main footer ─────────────────────────────────────────────────── */

.tutor-course-topic-single-footer {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative !important;
	z-index: 999 !important;
	background-color: #5C0000 !important;
	padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 32px) !important;
	margin-top: clamp(16px, 2.5vw, 24px) !important;
	justify-content: flex-end !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
	width: 100% !important;
	box-sizing: border-box !important;
	min-height: 56px !important;
	gap: clamp(12px, 1.5vw, 20px) !important;
}

/* ── Footer button items ─────────────────────────────────────────── */

.tutor-course-topic-single-footer .tutor-single-course-content-prev,
.tutor-course-topic-single-footer .tutor-single-course-content-next,
.tutor-course-topic-single-footer .tutor-single-course-content-submit {
	display: inline-block !important;
	margin: 0 !important;
	flex-shrink: 0 !important;
	white-space: nowrap !important;
}

.tutor-course-topic-single-footer .tutor-single-course-content-prev {
	margin-right: clamp(12px, 1.5vw, 20px) !important;
}

.tutor-course-topic-single-footer .tutor-single-course-content-submit {
	margin-right: clamp(12px, 1.5vw, 20px) !important;
}

.tutor-course-topic-single-footer .tutor-single-course-content-next {
	margin-right: 0 !important;
}

/* ── Quiz footer ─────────────────────────────────────────────────── */

.tutor-quiz-single-entry-wrap .tutor-course-topic-single-footer {
	margin-top: auto !important;
	background-color: #5C0000 !important;
	padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 32px) !important;
	min-height: 56px !important;
	box-sizing: border-box !important;
}

/* ── Content drip footer ─────────────────────────────────────────── */

.content-drip-message-wrap + .tutor-course-topic-single-footer,
.tutor-lesson-content-drip-wrap + .tutor-course-topic-single-footer {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	background-color: #5C0000 !important;
	padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 32px) !important;
	margin-top: clamp(16px, 2.5vw, 24px) !important;
	justify-content: center !important;
	align-items: center !important;
	gap: clamp(12px, 1.5vw, 20px) !important;
	min-height: 56px !important;
}

.tutor-lesson-content-drip-wrap .tutor-course-topic-single-footer {
	flex-shrink: 0 !important;
	margin-top: auto !important;
	background-color: #5C0000 !important;
	padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 32px) !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: clamp(12px, 1.5vw, 20px) !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	min-height: 56px !important;
	box-sizing: border-box !important;
}

/* ── Responsive: mobile ──────────────────────────────────────────── */

@media (max-width: 767px) {
	.tutor-course-topic-single-footer {
		padding: 12px 16px !important;
		margin-top: 16px !important;
		gap: 12px !important;
		min-height: 52px !important;
		flex-wrap: wrap !important;
	}

	.tutor-course-topic-single-footer .tutor-single-course-content-prev,
	.tutor-course-topic-single-footer .tutor-single-course-content-submit {
		margin-right: 12px !important;
	}

	.content-drip-message-wrap + .tutor-course-topic-single-footer,
	.tutor-lesson-content-drip-wrap + .tutor-course-topic-single-footer,
	.tutor-lesson-content-drip-wrap .tutor-course-topic-single-footer {
		padding: 12px 16px !important;
		gap: 12px !important;
		min-height: 52px !important;
	}
}

/* ── Responsive: tablet ──────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 1024px) {
	.tutor-course-topic-single-footer {
		padding: 16px 24px !important;
		margin-top: 20px !important;
		gap: 16px !important;
		min-height: 54px !important;
	}

	.tutor-course-topic-single-footer .tutor-single-course-content-prev,
	.tutor-course-topic-single-footer .tutor-single-course-content-submit {
		margin-right: 16px !important;
	}

	.content-drip-message-wrap + .tutor-course-topic-single-footer,
	.tutor-lesson-content-drip-wrap + .tutor-course-topic-single-footer,
	.tutor-lesson-content-drip-wrap .tutor-course-topic-single-footer {
		padding: 16px 24px !important;
		gap: 16px !important;
		min-height: 54px !important;
	}
}

/* ── Responsive: desktop ─────────────────────────────────────────── */

@media (min-width: 1025px) {
	.tutor-course-topic-single-footer {
		padding: 20px 32px !important;
		margin-top: 24px !important;
		gap: 20px !important;
		min-height: 56px !important;
	}

	.tutor-course-topic-single-footer .tutor-single-course-content-prev,
	.tutor-course-topic-single-footer .tutor-single-course-content-submit {
		margin-right: 20px !important;
	}

	.content-drip-message-wrap + .tutor-course-topic-single-footer,
	.tutor-lesson-content-drip-wrap + .tutor-course-topic-single-footer,
	.tutor-lesson-content-drip-wrap .tutor-course-topic-single-footer {
		padding: 20px 32px !important;
		gap: 20px !important;
		min-height: 56px !important;
	}
}
