/**
 * صفحه عمومی مدرسه نومو — shadcn-inspired SaaS UI
 */

.bh-nomo-page {
	--nomo-background: #f8fafc;
	--nomo-foreground: #0f172a;
	--nomo-muted: #64748b;
	--nomo-muted-bg: #f1f5f9;
	--nomo-border: #e2e8f0;
	--nomo-card: #ffffff;
	--nomo-card-foreground: #0f172a;
	--nomo-primary: #d64d5a;
	--nomo-primary-dark: #a02040;
	--nomo-primary-foreground: #ffffff;
	--nomo-success: #059669;
	--nomo-success-bg: #ecfdf5;
	--nomo-success-border: #a7f3d0;
	--nomo-destructive: #dc2626;
	--nomo-destructive-bg: #fef2f2;
	--nomo-destructive-border: #fecaca;
	--nomo-radius: 0.75rem;
	--nomo-radius-lg: 1rem;
	--nomo-radius-xl: 1.25rem;
	--nomo-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
	--nomo-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	--nomo-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
	--nomo-ring: 0 0 0 3px rgba(214, 77, 90, 0.15);

	direction: rtl;
	font-family: 'Vazirmatn', Tahoma, sans-serif;
	font-feature-settings: 'ss01';
	font-variant-numeric: normal;
	color: var(--nomo-foreground);
	background: var(--nomo-background);
	line-height: 1.7;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

.bh-nomo-page *,
.bh-nomo-page *::before,
.bh-nomo-page *::after {
	box-sizing: border-box;
}

.bh-nomo-page img {
	max-width: 100%;
	height: auto;
	display: block;
}

.bh-nomo-page a {
	text-decoration: none;
	color: inherit;
}

.bh-nomo-page .bh-container {
	width: min(1120px, calc(100% - 2rem));
	max-width: 100%;
	margin-inline: auto;
	padding-inline: 0;
	box-sizing: border-box;
}

/* ── Hero ── */
.bh-nomo-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(48px, 8vw, 80px) 0 clamp(56px, 9vw, 96px);
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%, rgba(214, 77, 90, 0.18) 0%, transparent 55%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(15, 118, 110, 0.1) 0%, transparent 50%),
		linear-gradient(180deg, #ffffff 0%, var(--nomo-background) 100%);
	border-bottom: 1px solid var(--nomo-border);
}

.bh-nomo-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(28px, 5vw, 48px);
	align-items: center;
	min-width: 0;
}

.bh-nomo-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid rgba(214, 77, 90, 0.25);
	background: rgba(214, 77, 90, 0.08);
	color: var(--nomo-primary-dark);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-bottom: 16px;
}

.bh-nomo-hero__badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--nomo-primary);
	box-shadow: 0 0 0 3px rgba(214, 77, 90, 0.2);
}

.bh-nomo-hero__title {
	margin: 0 0 14px;
	font-size: clamp(1.75rem, 4.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--nomo-foreground);
}

.bh-nomo-hero__title span {
	background: linear-gradient(135deg, var(--nomo-primary-dark), var(--nomo-primary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.bh-nomo-hero__desc {
	margin: 0 0 28px;
	max-width: 520px;
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	color: var(--nomo-muted);
	line-height: 1.85;
}

.bh-nomo-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.bh-nomo-hero__stat {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: var(--nomo-radius);
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	box-shadow: var(--nomo-shadow-sm);
}

.bh-nomo-hero__stat-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	font-size: 1rem;
	flex-shrink: 0;
}

.bh-nomo-hero__stat-icon--teachers {
	background: #ede9fe;
}

.bh-nomo-hero__stat-icon--courses {
	background: #dbeafe;
}

.bh-nomo-hero__stat-body {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.bh-nomo-hero__stat-body strong {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--nomo-foreground);
	line-height: 1.2;
}

.bh-nomo-hero__stat-body span {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--nomo-muted);
}

.bh-nomo-hero__visual {
	position: relative;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.bh-nomo-hero__cover {
	position: relative;
	border-radius: var(--nomo-radius-xl);
	overflow: hidden;
	border: 1px solid var(--nomo-border);
	box-shadow: var(--nomo-shadow-lg);
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #fce7ea, #f0fdfa);
}

.bh-nomo-hero__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bh-nomo-hero__cover-glow {
	position: absolute;
	inset: 8% 0;
	background: radial-gradient(circle, rgba(214, 77, 90, 0.15) 0%, transparent 70%);
	pointer-events: none;
	z-index: -1;
}

.bh-nomo-hero__placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	font-size: 4rem;
	opacity: 0.35;
}

/* ── Alerts (shadcn Alert) ── */
.bh-nomo-page__alerts {
	padding: 20px 0 0;
}

.bh-nomo-alert {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: var(--nomo-radius);
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid;
}

.bh-nomo-alert__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
}

.bh-nomo-alert--success {
	background: var(--nomo-success-bg);
	color: #065f46;
	border-color: var(--nomo-success-border);
}

.bh-nomo-alert--error {
	background: var(--nomo-destructive-bg);
	color: #991b1b;
	border-color: var(--nomo-destructive-border);
}

/* ── Body sections ── */
.bh-nomo-page__body {
	padding: clamp(16px, 2.5vw, 24px) 0 clamp(48px, 7vw, 80px);
	display: grid;
	gap: clamp(32px, 5vw, 48px);
	min-width: 0;
	max-width: 100%;
}

.bh-nomo-section {
	padding: clamp(20px, 4vw, 32px);
	border-radius: var(--nomo-radius-xl);
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	box-shadow: var(--nomo-shadow);
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.bh-nomo-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--nomo-border);
}

.bh-nomo-section__eyebrow {
	display: block;
	margin-bottom: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--nomo-primary);
}

.bh-nomo-section__head h2 {
	margin: 0;
	font-size: clamp(1.15rem, 2.5vw, 1.4rem);
	font-weight: 800;
	color: var(--nomo-foreground);
	letter-spacing: -0.01em;
}

.bh-nomo-section__head h2 em {
	font-style: normal;
	color: var(--nomo-primary);
}

.bh-nomo-section__meta {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--nomo-muted);
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--nomo-muted-bg);
	white-space: nowrap;
}

/* ── Empty state ── */
.bh-nomo-empty {
	margin: 0;
	padding: 40px 20px;
	text-align: center;
	border-radius: var(--nomo-radius-lg);
	border: 1px dashed var(--nomo-border);
	background: var(--nomo-muted-bg);
	color: var(--nomo-muted);
	font-size: 0.92rem;
}

.bh-nomo-empty__icon {
	display: block;
	font-size: 2rem;
	margin-bottom: 10px;
	opacity: 0.6;
}

/* ── Popular courses strip ── */
.bh-nomo-popular {
	min-width: 0;
	max-width: 100%;
	padding: 0 2px;
	/* فاصلهٔ خالی با هیرو و کادر اساتید را جمع‌وجور می‌کند */
	margin-top: -4px;
	margin-bottom: calc(10px - clamp(32px, 5vw, 48px));
}

.bh-nomo-popular__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.bh-nomo-popular__title {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-popular__title::before {
	content: '';
	width: 4px;
	height: 1.15em;
	border-radius: 999px;
	background: var(--nomo-primary);
	flex: 0 0 auto;
}

.bh-nomo-popular__actions,
.bh-nomo-popular__tools {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bh-nomo-popular__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid var(--nomo-border);
	border-radius: 999px;
	background: var(--nomo-card);
	color: var(--nomo-muted);
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.bh-nomo-popular__nav svg {
	width: 16px;
	height: 16px;
}

.bh-nomo-popular__nav:hover {
	color: var(--nomo-primary);
	border-color: rgba(214, 77, 90, 0.35);
	background: #fff5f6;
}

.bh-nomo-popular__all {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	color: var(--nomo-foreground);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.bh-nomo-popular__all:hover {
	color: var(--nomo-primary);
	border-color: rgba(214, 77, 90, 0.35);
	background: #fff5f6;
}

.bh-nomo-popular__strip-wrap,
.bh-nomo-popular__track-wrap {
	min-width: 0;
	max-width: 100%;
}

.bh-nomo-popular__strip,
.bh-nomo-popular__track {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 2px 2px 6px;
	scroll-behavior: smooth;
}

.bh-nomo-popular__strip::-webkit-scrollbar,
.bh-nomo-popular__track::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.bh-nomo-popular__chip {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	max-width: min(280px, 78vw);
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	color: var(--nomo-foreground);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: var(--nomo-shadow-sm);
	transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.bh-nomo-popular__chip:hover {
	color: var(--nomo-primary);
	border-color: rgba(214, 77, 90, 0.35);
	box-shadow: var(--nomo-shadow);
	transform: translateY(-1px);
}

/* ── Learning path banner ── */
.bh-nomo-learning-path {
	min-width: 0;
	max-width: 100%;
}

.bh-nomo-learning-path__head {
	margin-bottom: 12px;
}

.bh-nomo-learning-path__title {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-learning-path__title::before {
	content: '';
	width: 4px;
	height: 1.15em;
	border-radius: 999px;
	background: var(--nomo-primary);
	flex: 0 0 auto;
}

.bh-nomo-learning-path__banner {
	position: relative;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	border-radius: clamp(16px, 4vw, 32px);
	aspect-ratio: 1200 / 91;
	min-height: 45px;
	max-height: 104px;
	background:
		radial-gradient(ellipse 70% 120% at 15% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
		linear-gradient(135deg, #e85a66 0%, #d64d5a 45%, #b8334a 100%);
	box-shadow: var(--nomo-shadow);
}

.bh-nomo-learning-path__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.bh-nomo-learning-path__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* ── Voices / testimonials ── */
.bh-nomo-voices {
	min-width: 0;
	max-width: 100%;
}

.bh-nomo-voices__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.bh-nomo-voices__title {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-voices__title::before {
	content: '';
	width: 4px;
	height: 1.15em;
	border-radius: 999px;
	background: var(--nomo-primary);
	flex: 0 0 auto;
}

.bh-nomo-voices__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(214, 77, 90, 0.35);
	background: var(--nomo-primary);
	color: #fff;
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease, transform 0.15s ease;
}

.bh-nomo-voices__submit:hover {
	background: var(--nomo-primary-dark);
	transform: translateY(-1px);
}

.bh-nomo-voices__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	min-width: 0;
}

.bh-nomo-voices__grid--all {
	display: flex;
	flex-direction: column;
	grid-template-columns: none;
	gap: 12px;
	width: 100%;
}

.bh-nomo-voices__grid--all .bh-nomo-voice-card {
	width: 100%;
	max-width: none;
}

.bh-nomo-voice-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	box-shadow: var(--nomo-shadow-sm);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.bh-nomo-voice-card--preview {
	cursor: default;
}

a.bh-nomo-voice-card--preview.is-truncated {
	cursor: pointer;
}

a.bh-nomo-voice-card--preview.is-truncated:hover {
	border-color: rgba(214, 77, 90, 0.35);
	box-shadow: var(--nomo-shadow);
	transform: translateY(-1px);
}

.bh-nomo-voice-card--full:target,
.bh-nomo-voice-card--full.is-target {
	border-color: rgba(214, 77, 90, 0.45);
	box-shadow: 0 0 0 3px rgba(214, 77, 90, 0.15), var(--nomo-shadow);
}

.bh-nomo-voice-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.bh-nomo-voice-card__avatar {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--nomo-border);
	background: var(--nomo-muted-bg);
}

.bh-nomo-voice-card__avatar img,
.bh-nomo-voice-card__avatar .begard-ul-avatar-wrap {
	width: 100% !important;
	height: 100% !important;
	display: block;
	border-radius: 50%;
	object-fit: cover;
}

.bh-nomo-voice-card__avatar-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.1rem;
}

.bh-nomo-voice-card__meta {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--nomo-foreground);
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bh-nomo-voice-card__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.7;
	color: #334155;
}

.bh-nomo-voice-card--preview .bh-nomo-voice-card__text {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bh-nomo-voice-card--full .bh-nomo-voice-card__text {
	display: block;
	overflow: visible;
	-webkit-line-clamp: unset;
}

.bh-nomo-voice-card__more {
	margin-top: -4px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--nomo-primary);
}

.bh-nomo-voices__empty,
.bh-nomo-voices__more {
	margin: 14px 0 0;
	text-align: center;
	font-size: 0.9rem;
	color: var(--nomo-muted);
}

.bh-nomo-voices__more a {
	color: var(--nomo-primary);
	font-weight: 700;
	text-decoration: none;
}

.bh-nomo-voices__more a:hover {
	text-decoration: underline;
}

.bh-nomo-comments-back {
	margin: 12px 0 0;
}

.bh-nomo-comments-back a {
	color: var(--nomo-primary);
	font-weight: 700;
	text-decoration: none;
}

.bh-nomo-hero--compact {
	padding: clamp(28px, 5vw, 48px) 0;
}

.bh-nomo-voice-modal[hidden] {
	display: none !important;
}

.bh-nomo-voice-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.bh-nomo-voice-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
}

.bh-nomo-voice-modal__dialog {
	position: relative;
	width: min(100%, 460px);
	max-height: min(90vh, 640px);
	overflow: auto;
	padding: 20px;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--nomo-shadow-lg);
	direction: rtl;
}

.bh-nomo-voice-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.bh-nomo-voice-modal__head h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
}

.bh-nomo-voice-modal__close {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: var(--nomo-muted-bg);
	color: var(--nomo-foreground);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.bh-nomo-voice-modal__form {
	display: grid;
	gap: 12px;
}

.bh-nomo-voice-modal__field {
	display: grid;
	gap: 6px;
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--nomo-foreground);
}

.bh-nomo-voice-modal__field input,
.bh-nomo-voice-modal__field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--nomo-border);
	border-radius: 12px;
	font: inherit;
	font-weight: 500;
	color: var(--nomo-foreground);
	background: #fff;
	resize: vertical;
}

.bh-nomo-voice-modal__hint,
.bh-nomo-voice-modal__note {
	margin: 0;
	font-size: 0.84rem;
	color: var(--nomo-muted);
	font-weight: 500;
	line-height: 1.6;
}

/* ── Teachers carousel ── */
.bh-nomo-teachers {
	position: relative;
	min-width: 0;
	max-width: 100%;
}

.bh-nomo-teachers__track-wrap {
	overflow: hidden;
	max-width: 100%;
	scrollbar-width: none;
	-ms-overflow-style: none;
	mask-image: linear-gradient(to left, transparent, #000 6%, #000 94%, transparent);
	-webkit-mask-image: linear-gradient(to left, transparent, #000 6%, #000 94%, transparent);
}

.bh-nomo-teachers__track-wrap::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.bh-nomo-teachers__track {
	display: flex;
	gap: 20px;
	width: max-content;
	max-width: none;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.bh-nomo-teacher-card {
	flex: 0 0 auto;
	width: 130px;
	text-align: center;
	transition: transform 0.2s ease;
}

.bh-nomo-teacher-card:hover {
	transform: translateY(-4px);
}

.bh-nomo-teacher-card__avatar {
	display: block;
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: visible;
	border: 3px solid var(--nomo-card);
	box-shadow: var(--nomo-shadow), 0 0 0 1px var(--nomo-border);
	transition: box-shadow 0.2s ease;
}

.bh-nomo-teacher-card:hover .bh-nomo-teacher-card__avatar {
	box-shadow: var(--nomo-shadow-lg), 0 0 0 2px rgba(214, 77, 90, 0.3);
}

.bh-nomo-teacher-card__avatar img,
.bh-nomo-teacher-card__avatar .begard-ul-avatar-wrap {
	display: block;
	width: 100% !important;
	height: 100% !important;
	border-radius: 50%;
	overflow: hidden;
}

.bh-nomo-teacher-card__avatar img {
	object-fit: cover;
}

.bh-nomo-teacher-card__avatar .begard-ul-avatar-badges {
	position: absolute;
	z-index: 5;
	pointer-events: none;
}

.bh-nomo-teacher-card__avatar .begard-ul-avatar-badges--top {
	top: calc(var(--begard-circle-edge-inset, 14.645%) - var(--begard-badge-size, 24px) / 2);
	right: calc(var(--begard-circle-edge-inset, 14.645%) - var(--begard-badge-size, 24px) / 2);
}

.bh-nomo-teacher-card__avatar .begard-ul-avatar-badges--bottom {
	bottom: calc(var(--begard-circle-edge-inset, 14.645%) - var(--begard-badge-size, 24px) / 2);
	right: calc(var(--begard-circle-edge-inset, 14.645%) - var(--begard-badge-size, 24px) / 2);
}

.bh-nomo-teacher-card__name {
	margin: 12px 0 0;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--nomo-foreground);
	line-height: 1.4;
	max-width: 130px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bh-nomo-teacher-card__name a:hover {
	color: var(--nomo-primary);
}

/* وقتی همه اساتید در عرض جا می‌شوند */
.bh-nomo-teachers--static .bh-nomo-teachers__track-wrap {
	mask-image: none;
	-webkit-mask-image: none;
	overflow: visible;
}

.bh-nomo-teachers--static .bh-nomo-teachers__track {
	width: auto;
	max-width: 100%;
	flex-wrap: wrap;
	justify-content: center;
	transform: none !important;
	will-change: auto;
}

/* ── Course cards grid ── */
.bh-nomo-courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: 20px;
	min-width: 0;
	max-width: 100%;
}

.bh-nomo-course-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	max-width: 100%;
	border-radius: var(--nomo-radius-lg);
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.bh-nomo-course-card:hover {
	box-shadow: var(--nomo-shadow-lg);
	transform: translateY(-2px);
	border-color: rgba(214, 77, 90, 0.2);
}

.bh-nomo-course-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #fce7ea 0%, #f0fdfa 100%);
	overflow: hidden;
}

.bh-nomo-course-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.bh-nomo-course-card:hover .bh-nomo-course-card__media img {
	transform: scale(1.04);
}

.bh-nomo-course-card__media-placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	font-size: 2.5rem;
	opacity: 0.4;
}

.bh-nomo-course-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 10px;
}

.bh-nomo-course-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--nomo-card-foreground);
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.bh-nomo-course-card__desc {
	margin: 0;
	flex: 1;
	font-size: 0.88rem;
	color: var(--nomo-muted);
	line-height: 1.75;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bh-nomo-course-card__details {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.bh-nomo-course-card__meta {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
}

.bh-nomo-course-card__meta li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 6px 8px;
	font-size: 0.8rem;
	line-height: 1.6;
	color: var(--nomo-muted);
}

.bh-nomo-course-card__meta strong {
	font-weight: 800;
	color: var(--nomo-card-foreground);
	white-space: nowrap;
}

.bh-nomo-course-card__meta span {
	min-height: 1.2em;
	color: var(--nomo-foreground);
}

.bh-nomo-course-card__meta span.is-empty {
	color: transparent;
	user-select: none;
}

.bh-nomo-course-card__footer {
	padding: 0 20px 20px;
}

.bh-nomo-course-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	align-items: stretch;
}

.bh-nomo-course-card__actions form {
	margin: 0;
	min-width: 0;
}

.bh-nomo-course-card__actions .bh-nomo-btn {
	width: 100%;
	min-height: 42px;
	padding-inline: 12px;
}

.bh-nomo-course-card__actions--registered {
	grid-template-columns: 1fr 1fr;
}

.bh-nomo-badge--inline {
	width: auto;
	min-height: 42px;
	padding-inline: 12px;
	font-size: 0.82rem;
}

.bh-nomo-course-card__footer form {
	margin: 0;
}

/* ── Buttons & badges (shadcn) ── */
.bh-nomo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 20px;
	border-radius: var(--nomo-radius);
	border: none;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.18s ease;
	width: 100%;
}

.bh-nomo-btn--primary {
	background: linear-gradient(135deg, var(--nomo-primary-dark), var(--nomo-primary));
	color: var(--nomo-primary-foreground) !important;
	box-shadow: 0 4px 14px rgba(214, 77, 90, 0.3);
}

.bh-nomo-btn--primary:hover {
	filter: brightness(1.05);
	box-shadow: 0 6px 20px rgba(214, 77, 90, 0.38);
	transform: translateY(-1px);
}

.bh-nomo-btn--primary:active {
	transform: translateY(0);
}

.bh-nomo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-height: 42px;
	padding: 0 16px;
	border-radius: var(--nomo-radius);
	background: var(--nomo-success-bg);
	color: #065f46;
	border: 1px solid var(--nomo-success-border);
	font-size: 0.88rem;
	font-weight: 700;
}

.bh-nomo-badge::before {
	content: '✓';
	font-size: 0.8rem;
}

.bh-nomo-badge--compact {
	width: auto;
	min-width: 160px;
}

.bh-nomo-btn--ghost {
	margin-top: 0;
	background: transparent;
	color: var(--nomo-muted) !important;
	border: 1px solid var(--nomo-border);
	box-shadow: none;
}

.bh-nomo-course-card__footer .bh-nomo-btn--ghost {
	margin-top: 0;
}

.bh-nomo-btn--ghost:hover {
	color: var(--nomo-primary-dark) !important;
	border-color: rgba(214, 77, 90, 0.35);
	background: #fff7f8;
	transform: none;
}

.bh-nomo-course-single__cta .bh-nomo-btn--ghost {
	margin-top: 10px;
}

.bh-nomo-course-card__link {
	display: block;
	color: inherit;
}

.bh-nomo-course-card__link:hover .bh-nomo-course-card__title {
	color: var(--nomo-primary);
}

/* ── Single course page ── */
.bh-nomo-page--course {
	padding-bottom: 88px;
}

.bh-nomo-course-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 20px 0 8px;
	font-size: 0.85rem;
	color: var(--nomo-muted);
}

.bh-nomo-course-breadcrumb a {
	color: var(--nomo-primary-dark);
	font-weight: 700;
}

.bh-nomo-course-breadcrumb a:hover {
	color: var(--nomo-primary);
}

.bh-nomo-course-single {
	padding: 8px 0 48px;
}

.bh-nomo-course-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	align-items: start;
}

.bh-nomo-course-single__main {
	display: grid;
	gap: 24px;
	padding: clamp(24px, 4vw, 32px);
	border-radius: var(--nomo-radius-xl);
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	box-shadow: var(--nomo-shadow);
}

.bh-nomo-course-single__head {
	display: grid;
	gap: 12px;
}

.bh-nomo-course-single__title {
	margin: 0;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--nomo-foreground);
}

.bh-nomo-course-single__media {
	border-radius: var(--nomo-radius-lg);
	overflow: hidden;
	border: 1px solid var(--nomo-border);
	background: linear-gradient(135deg, #fce7ea 0%, #f0fdfa 100%);
	aspect-ratio: 16 / 9;
}

.bh-nomo-course-single__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bh-nomo-course-single__media-placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	font-size: 3rem;
	opacity: 0.4;
}

.bh-nomo-course-single__section {
	padding-top: 8px;
	border-top: 1px solid var(--nomo-border);
}

.bh-nomo-course-single__section-title {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-course-single__desc {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.9;
	color: var(--nomo-muted);
}

.bh-nomo-course-learn-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	counter-reset: none;
}

.bh-nomo-course-learn-block {
	border-top: 0;
	padding-top: 0;
}

.bh-nomo-course-learn-block__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.72fr);
	gap: 16px;
	align-items: stretch;
}

.bh-nomo-course-learn-card {
	padding: 18px 18px 16px;
	border-radius: var(--nomo-radius-xl);
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	box-shadow: var(--nomo-shadow-sm);
}

.bh-nomo-course-learn-card__title {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-course-learn-side {
	display: grid;
	gap: 12px;
	align-content: start;
}

.bh-nomo-course-lock-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 150px;
	padding: 22px 16px;
	border-radius: var(--nomo-radius-xl);
	border: 1px solid #f0d5d9;
	background:
		radial-gradient(circle at 30% 20%, rgba(214, 77, 90, 0.08), transparent 48%),
		linear-gradient(180deg, #fff8f9 0%, #ffffff 100%);
	box-shadow: var(--nomo-shadow-sm);
	text-decoration: none !important;
	text-align: center;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.bh-nomo-course-lock-card:hover {
	border-color: #e7b4bb;
	box-shadow: 0 12px 28px rgba(192, 57, 74, 0.12);
	transform: translateY(-2px);
}

.bh-nomo-course-lock-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: transparent;
	color: var(--nomo-primary);
	filter: drop-shadow(0 8px 14px rgba(192, 57, 74, 0.18));
	transition: transform 0.25s ease, filter 0.25s ease;
}

.bh-nomo-course-lock-card:hover .bh-nomo-course-lock-card__icon {
	transform: scale(1.06) rotate(-3deg);
	filter: drop-shadow(0 10px 18px rgba(192, 57, 74, 0.24));
}

.bh-nomo-course-lock-card__svg {
	width: 72px;
	height: 72px;
	display: block;
}

.bh-nomo-course-lock-card__text {
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.6;
	color: #7a2d38;
}

.bh-nomo-course-eitaa-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 16px 14px 14px;
	border-radius: var(--nomo-radius-xl);
	border: 1px solid #dbeafe;
	background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
	box-shadow: var(--nomo-shadow-sm);
	text-decoration: none !important;
	text-align: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bh-nomo-course-eitaa-card:hover {
	border-color: #93c5fd;
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
	transform: translateY(-1px);
}

.bh-nomo-course-eitaa-card__qr {
	display: block;
	width: 100%;
	max-width: 168px;
	aspect-ratio: 1;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #bfdbfe;
	background: #fff;
	padding: 8px;
}

.bh-nomo-course-eitaa-card__qr img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bh-nomo-course-eitaa-card__text {
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.65;
	color: #1e3a8a;
}

@media (max-width: 900px) {
	.bh-nomo-course-learn-block__grid {
		grid-template-columns: 1fr;
	}

	.bh-nomo-course-learn-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.bh-nomo-course-learn-side {
		grid-template-columns: 1fr;
	}
}

.bh-nomo-course-learn-list__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #eef2f7;
}

.bh-nomo-course-learn-list__num {
	flex: 0 0 auto;
	min-width: 1.6em;
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--nomo-primary);
	line-height: 1.6;
}

.bh-nomo-course-learn-list__text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.7;
	color: #334155;
}

.bh-nomo-course-single__details {
	margin: 0;
	display: grid;
	gap: 12px;
}

.bh-nomo-course-single__info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.bh-nomo-course-single__info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border-radius: var(--nomo-radius-lg);
	border: 1px solid var(--nomo-border);
	background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.bh-nomo-course-single__info-item:has(.bh-nomo-course-single__day-chips) {
	grid-column: 1 / -1;
}

.bh-nomo-course-single__info-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: #fff;
	border: 1px solid var(--nomo-border);
	font-size: 1.1rem;
}

.bh-nomo-course-single__info-body {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.bh-nomo-course-single__info-label {
	font-size: 0.76rem;
	font-weight: 800;
	color: var(--nomo-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bh-nomo-course-single__info-value {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--nomo-foreground);
	line-height: 1.7;
}

.bh-nomo-course-single__info-value--link:hover {
	color: var(--nomo-primary);
}

.bh-nomo-course-single__info-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 12px;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
	font-size: 0.85rem;
	font-weight: 700;
}

.bh-nomo-course-single__day-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bh-nomo-course-single__day-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
	font-size: 0.82rem;
	font-weight: 700;
}

.bh-nomo-course-single__aside-summary {
	display: grid;
	gap: 12px;
	padding: 18px;
	margin-bottom: 14px;
	border-radius: var(--nomo-radius-xl);
	border: 1px solid var(--nomo-border);
	background: #f8fafc;
}

.bh-nomo-course-includes {
	padding: 18px 16px;
	margin-bottom: 14px;
	border-radius: 18px;
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	box-shadow: var(--nomo-shadow-sm);
}

.bh-nomo-course-includes__title {
	margin: 0 0 14px;
	font-size: 0.98rem;
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-course-includes__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0;
}

.bh-nomo-course-includes__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #eef2f7;
}

.bh-nomo-course-includes__item:last-child {
	border-bottom: 0;
	padding-bottom: 2px;
}

.bh-nomo-course-includes__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f1f5f9;
	color: #64748b;
}

.bh-nomo-course-includes__icon svg {
	width: 16px;
	height: 16px;
}

.bh-nomo-course-includes__text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.55;
	color: #334155;
}

.bh-nomo-course-single__aside-summary h3 {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-course-single__aside-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.bh-nomo-course-single__aside-list li {
	display: grid;
	gap: 2px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--nomo-border);
}

.bh-nomo-course-single__aside-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.bh-nomo-course-single__aside-list span {
	font-size: 0.76rem;
	font-weight: 700;
	color: var(--nomo-muted);
}

.bh-nomo-course-single__aside-list strong {
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--nomo-foreground);
	line-height: 1.6;
}

.bh-nomo-course-single__detail {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border-radius: var(--nomo-radius);
	border: 1px solid var(--nomo-border);
	background: #f8fafc;
}

.bh-nomo-course-single__detail dt {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--nomo-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bh-nomo-course-single__detail dd {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--nomo-foreground);
	line-height: 1.7;
}

.bh-nomo-course-single__teacher {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border-radius: var(--nomo-radius-lg);
	border: 1px solid var(--nomo-border);
	background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.bh-nomo-course-single__teacher-avatar {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--nomo-card);
	box-shadow: var(--nomo-shadow-sm), 0 0 0 1px var(--nomo-border);
}

.bh-nomo-course-single__teacher-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bh-nomo-course-single__teacher-body {
	min-width: 0;
}

.bh-nomo-course-single__teacher-name {
	display: inline-block;
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-course-single__teacher-name:hover {
	color: var(--nomo-primary);
}

.bh-nomo-course-single__teacher-body p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--nomo-muted);
}

.bh-nomo-course-single__aside {
	position: sticky;
	top: calc(var(--bh-shell-header-height, 64px) + 16px);
}

.bh-nomo-course-single__cta {
	display: grid;
	gap: 14px;
	padding: 22px;
	border-radius: var(--nomo-radius-xl);
	border: 1px solid var(--nomo-border);
	background: var(--nomo-card);
	box-shadow: var(--nomo-shadow-lg);
}

.bh-nomo-course-single__cta-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--nomo-foreground);
}

.bh-nomo-course-single__cta-desc {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.75;
	color: var(--nomo-muted);
}

.bh-nomo-course-single__mobile-cta {
	display: none;
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 40;
	padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--nomo-border);
	backdrop-filter: blur(10px);
	box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
}

.bh-nomo-course-single__mobile-cta-inner form {
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.bh-nomo-page {
		overflow-x: hidden;
	}

	.bh-nomo-page .bh-container {
		width: calc(100% - 1.25rem);
	}

	.bh-nomo-hero {
		padding: 28px 0 36px;
	}

	.bh-nomo-hero__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.bh-nomo-hero__visual {
		order: -1;
		max-width: 100%;
		margin-inline: auto;
		width: 100%;
	}

	.bh-nomo-hero__desc {
		max-width: none;
	}

	.bh-nomo-hero__title {
		font-size: clamp(1.45rem, 7vw, 2rem);
		word-break: break-word;
	}

	.bh-nomo-course-card__actions,
	.bh-nomo-course-card__actions--registered {
		grid-template-columns: 1fr;
	}

	.bh-nomo-course-card__meta {
		word-break: break-word;
	}

	.bh-nomo-voices__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bh-nomo-course-single__layout {
		grid-template-columns: 1fr;
		min-width: 0;
	}

	.bh-nomo-course-single__aside {
		display: none;
	}

	.bh-nomo-course-single__mobile-cta {
		display: block;
	}

	.bh-nomo-page--course {
		padding-bottom: 96px;
	}

	.bh-nomo-course-single__info-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bh-nomo-page .bh-container {
		width: calc(100% - 1rem);
	}

	.bh-nomo-section {
		padding: 16px;
		border-radius: 14px;
	}

	.bh-nomo-section__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 16px;
		padding-bottom: 14px;
	}

	.bh-nomo-section__head h2 {
		font-size: 1.2rem;
		line-height: 1.4;
	}

	.bh-nomo-hero__stats {
		flex-direction: column;
	}

	.bh-nomo-hero__stat {
		width: 100%;
	}

	.bh-nomo-courses-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.bh-nomo-teacher-card {
		width: 112px;
	}

	.bh-nomo-learning-path__banner {
		border-radius: 16px;
		min-height: 36px;
		max-height: 65px;
	}

	.bh-nomo-voices__grid {
		grid-template-columns: 1fr;
	}

	.bh-nomo-teacher-card__avatar {
		width: 84px;
		height: 84px;
	}

	.bh-nomo-teacher-card__name {
		max-width: 112px;
		font-size: 0.8rem;
	}

	.bh-nomo-btn {
		min-width: 0;
		width: 100%;
	}

	.bh-nomo-course-card__footer .bh-nomo-btn--ghost,
	.bh-nomo-course-card__actions .bh-nomo-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bh-nomo-teachers__track {
		transform: none !important;
	}

	.bh-nomo-course-card:hover,
	.bh-nomo-teacher-card:hover,
	.bh-nomo-btn--primary:hover {
		transform: none;
	}
}
