/**
 * Danesh Land course-page fixes.
 *
 * Scoped to single course pages so the parent theme and every other frontend
 * surface remain unchanged.
 */

body.single-course .td-accordion-item > .td-accordion-content {
	--danesh-land-accordion-height: 0px;
	box-sizing: border-box;
	display: block;
	max-height: 0 !important;
	overflow: hidden !important;
	visibility: hidden;
	transition: none !important;
}

body.single-course .td-accordion-item.active > .td-accordion-content {
	max-height: var(--danesh-land-accordion-height) !important;
	overflow: hidden !important;
	visibility: visible;
	transition: none !important;
}

body.single-course .td-accordion-item.danesh-land-empty-chapter {
	display: none !important;
}

body.single-course .td-accordion-header[role="button"] {
	cursor: pointer;
}

body.single-course .td-accordion-header[role="button"]:focus-visible {
	border-radius: 10px;
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	body.single-course .td-accordion-item > .td-accordion-content,
	body.single-course .td-accordion-item.active > .td-accordion-content {
		transition: none;
	}
}
