:root {
	--nas-academy-card-bg: #0f172a;
	--nas-academy-title-color: #ffffff;
	--nas-academy-accent: #f3cc7a;
	--nas-academy-btn-color: #22c55e;
	--nas-academy-text-color: #cbd5e1;
	--nas-academy-font: inherit;
}


/* ==========================================================================
   ACADEMY COURSE GRID & CARD ARCHITECTURE (Obsidian & Gold)
   ========================================================================== */
.nas-events-list-grid,
.nas-course-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.nas-events-list-grid,
	.nas-course-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

.nas-event-card,
.nas-course-card {
	background: var(--nas-academy-card-bg, #0f172a);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	position: relative;
	box-sizing: border-box;
}

.nas-event-card:hover,
.nas-course-card:hover {
	transform: translateY(-4px);
	border-color: rgba(243, 204, 122, 0.35);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(216, 158, 52, 0.1);
}

.nas-event-image-wrap,
.nas-event-img-wrap,
.nas-course-image-wrap {
	position: relative;
	width: 100%;
	height: 190px;
	background: #1e293b;
	overflow: hidden;
	box-sizing: border-box;
}

.nas-event-image-wrap img,
.nas-event-img-wrap img,
.nas-course-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.nas-event-card:hover .nas-event-image-wrap img,
.nas-event-card:hover .nas-event-img-wrap img,
.nas-course-card:hover .nas-course-image-wrap img {
	transform: scale(1.05);
}

.nas-event-body,
.nas-course-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	box-sizing: border-box;
}

.nas-event-title,
.nas-course-title-card,
h3.nas-event-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--nas-academy-title-color, #ffffff) !important;
	margin: 0 0 10px;
	line-height: 1.35;
}

.nas-event-title a,
.nas-course-title-card a,
h3.nas-event-title a {
	color: var(--nas-academy-title-color, #ffffff) !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.nas-event-title a:hover,
.nas-course-title-card a:hover,
h3.nas-event-title a:hover {
	color: var(--nas-academy-accent, #f3cc7a) !important;
}

.nas-btn-cal-add,
.nas-course-action-btn {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #cbd5e1 !important;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 12.5px;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	box-sizing: border-box;
}

.nas-btn-cal-add:hover,
.nas-course-action-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(243, 204, 122, 0.4);
	color: #f3cc7a !important;
}


/* ==========================================================================
   NOVA ACADEMY (COURSES & LESSONS LMS) STYLES
   ========================================================================== */
.nas-academy-container {
	max-width: 1240px;
	margin: 32px auto;
	padding: 0 16px;
	font-family: inherit;
	box-sizing: border-box;
}

.nas-academy-container * {
	box-sizing: border-box;
}

/* Course Hero Banner */
.nas-course-hero {
	position: relative;
	min-height: 360px;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 40px;
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(243, 204, 122, 0.25);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	margin-bottom: 36px;
}

.nas-course-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.98) 100%);
	z-index: 1;
}

.nas-course-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.nas-course-badge {
	display: inline-block;
	background: rgba(243, 204, 122, 0.15);
	color: #f3cc7a;
	border: 1px solid rgba(243, 204, 122, 0.35);
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.nas-course-title {
	font-size: 38px !important;
	font-weight: 800 !important;
	color: #f8fafc !important;
	line-height: 1.25 !important;
	margin: 0 0 14px 0 !important;
	letter-spacing: -0.5px !important;
}

.nas-course-excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: #cbd5e1;
	margin: 0;
}

/* 2-Column Grid Layout */
.nas-course-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 32px;
	align-items: start;
}

@media screen and (max-width: 980px) {
	.nas-course-grid {
		grid-template-columns: 1fr;
	}
	.nas-course-title {
		font-size: 28px !important;
	}
	.nas-course-hero {
		padding: 24px;
		min-height: 300px;
	}
}

/* Course Curriculum Card */
.nas-curriculum-card {
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.nas-curriculum-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 18px;
	margin-bottom: 24px;
}

.nas-curriculum-title {
	font-size: 22px !important;
	font-weight: 800 !important;
	color: #f8fafc !important;
	margin: 0 !important;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Lesson Items */
.nas-lesson-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nas-lesson-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 16px 20px;
	text-decoration: none !important;
	color: inherit !important;
	transition: all 0.2s ease;
	cursor: pointer;
}

.nas-lesson-item:hover {
	background: #1e293b;
	border-color: rgba(243, 204, 122, 0.4);
	transform: translateX(4px);
}

.nas-lesson-item-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nas-lesson-number {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #0f172a;
	color: #f3cc7a;
	font-weight: 800;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(243, 204, 122, 0.3);
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.nas-lesson-item:hover .nas-lesson-number {
	background: #f3cc7a;
	color: #0b0e14;
	transform: scale(1.08);
}

.nas-lesson-item-title {
	font-size: 15.5px;
	font-weight: 700;
	color: #f8fafc;
	margin: 0 0 3px 0;
	transition: color 0.15s ease;
}

.nas-lesson-item:hover .nas-lesson-item-title {
	color: #f3cc7a;
}

.nas-lesson-item-sub {
	font-size: 12.5px;
	color: #94a3b8;
	margin: 0;
}

.nas-lesson-item-right {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12.5px;
	color: #94a3b8;
}

.nas-lesson-preview-badge {
	padding: 3px 8px;
	border-radius: 6px;
	background: rgba(16, 185, 129, 0.15);
	color: #10b981;
	border: 1px solid rgba(16, 185, 129, 0.3);
	font-weight: 700;
	font-size: 11.5px;
}

/* Sidebar Enrollment Card */
.nas-enroll-card {
	background: #0f172a;
	border: 1px solid rgba(243, 204, 122, 0.35);
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	position: sticky;
	top: 30px;
}

.nas-btn-start-course {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
	color: #0f172a !important;
	font-weight: 800;
	font-size: 15px;
	text-align: center;
	text-decoration: none !important;
	margin: 20px 0;
	box-shadow: 0 10px 25px rgba(132, 204, 22, 0.3);
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}
.nas-btn-start-course:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(132, 204, 22, 0.4);
}

.nas-instructor-card {
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 16px;
	padding: 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

.nas-instructor-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #f3cc7a;
}

/* ==========================================================================
   SINGLE LESSON STYLES (VIDEO TOP, CONTENT BOTTOM)
   ========================================================================== */
.nas-lesson-container {
	max-width: 1240px;
	margin: 24px auto;
	padding: 0 16px;
	box-sizing: border-box;
}

.nas-lesson-navbar {
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 16px;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.nas-lesson-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: #94a3b8;
}
.nas-lesson-breadcrumbs a {
	color: #f3cc7a;
	text-decoration: none;
	font-weight: 600;
}
.nas-lesson-breadcrumbs a:hover {
	text-decoration: underline;
}

/* 16:9 Video Player Box */
.nas-video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 20px;
	background: #000;
	border: 1px solid rgba(148, 163, 184, 0.25);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	margin-bottom: 32px;
}

.nas-video-wrapper iframe,
.nas-video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.nas-lesson-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 32px;
	align-items: start;
}

@media screen and (max-width: 980px) {
	.nas-lesson-grid {
		grid-template-columns: 1fr;
	}
}

.nas-lesson-content-card {
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.nas-lesson-complete-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 10px;
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: #10b981;
	font-weight: 700;
	font-size: 13.5px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.nas-lesson-complete-btn:hover {
	background: rgba(16, 185, 129, 0.25);
	transform: translateY(-1px);
}
.nas-lesson-complete-btn.completed {
	background: #10b981;
	color: #0b0e14;
}

/* Download Resource Box */
.nas-resource-card {
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 14px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
}

/* Course Playlist Sidebar */
.nas-playlist-card {
	background: #0f172a;
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	position: sticky;
	top: 30px;
}

.nas-playlist-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 14px;
	margin-bottom: 16px;
}

.nas-playlist-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13px;
	text-decoration: none !important;
	color: #cbd5e1 !important;
	margin-bottom: 6px;
	transition: all 0.15s ease;
}
.nas-playlist-item:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #fff !important;
}
.nas-playlist-item.active {
	background: rgba(243, 204, 122, 0.12);
	border: 1px solid rgba(243, 204, 122, 0.3);
	color: #f3cc7a !important;
	font-weight: 700;
}


/* Paywall / Locked Lesson Styles */
.nas-lesson-locked-hero {
	background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
	border: 1px solid rgba(243, 204, 122, 0.3);
	border-radius: 20px;
	padding: 60px 30px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	margin-bottom: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.nas-lock-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(243, 204, 122, 0.15);
	border: 2px solid rgba(243, 204, 122, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(243, 204, 122, 0.2);
}

.nas-locked-title {
	font-size: 26px !important;
	font-weight: 800 !important;
	color: #f8fafc !important;
	margin: 0 0 12px 0 !important;
}

.nas-locked-desc {
	font-size: 15px;
	color: #cbd5e1;
	max-width: 600px;
	line-height: 1.6;
	margin: 0 0 28px 0;
}

.nas-btn-buy-course {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 12px;
	background: linear-gradient(135deg, #f3cc7a 0%, #d4a745 100%);
	color: #0b0e14 !important;
	font-weight: 800;
	font-size: 15px;
	text-decoration: none !important;
	box-shadow: 0 10px 30px rgba(243, 204, 122, 0.3);
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}
.nas-btn-buy-course:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 14px 35px rgba(243, 204, 122, 0.45);
}

.nas-lesson-locked-teaser {
	background: rgba(15, 23, 42, 0.7);
	border: 1px dashed rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	color: #94a3b8;
	font-size: 14.5px;
	margin-top: 20px;
}


/* ==========================================================================
   EXECUTIVE ACADEMY DASHBOARD (STUDENT HUB & STATS)
   ========================================================================== */
.nas-dash-container {
	max-width: 1240px;
	margin: 36px auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.nas-dash-welcome {
	background: var(--nas-academy-card-bg, #0f172a);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 20px;
	padding: 26px 32px;
	margin-bottom: 32px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	position: relative;
	overflow: hidden;
}

.nas-dash-welcome::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--nas-academy-accent, #f3cc7a) 0%, transparent 80%);
}

.nas-dash-welcome h1 {
	font-size: 32px !important;
	font-weight: 800 !important;
	color: var(--nas-academy-title-color, #ffffff) !important;
	margin: 0 0 8px 0 !important;
	letter-spacing: -0.5px !important;
}

.nas-dash-welcome p {
	font-size: 15px;
	color: var(--nas-academy-text-color, #cbd5e1) !important;
	margin: 0;
}

/* Top Row: Continue Learning + Personal Stats */
.nas-dash-top-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 28px;
	margin-bottom: 40px;
}

@media screen and (max-width: 980px) {
	.nas-dash-top-grid {
		grid-template-columns: 1fr;
	}
	.nas-dash-welcome h1 {
		font-size: 26px !important;
	}
}

/* Continue Learning Card */
.nas-card-continue {
	background: var(--nas-academy-card-bg, #0f172a);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.nas-card-label {
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #a3e635;
	margin-bottom: 18px;
}

.nas-continue-body {
	display: flex;
	gap: 24px;
	align-items: center;
	text-decoration: none !important;
	color: inherit !important;
}

@media screen and (max-width: 680px) {
	.nas-continue-body {
		flex-direction: column;
		align-items: flex-start;
	}
}

.nas-continue-thumb-wrap {
	width: 220px;
	height: 125px;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	background: #1e293b;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nas-continue-thumb-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.nas-continue-thumb-wrap:hover img {
	transform: scale(1.05);
}

.nas-continue-play-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	transition: all 0.2s ease;
}

.nas-continue-play-overlay:hover {
	background: rgba(0, 0, 0, 0.5);
	color: #f3cc7a;
}

.nas-continue-info {
	flex: 1;
}

.nas-continue-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--nas-academy-title-color, #ffffff);
	margin: 0 0 6px 0;
}

.nas-continue-module {
	font-size: 13.5px;
	color: var(--nas-academy-text-color, #cbd5e1);
	margin: 0 0 16px 0;
}

.nas-progress-bar-wrap {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 8px;
}

.nas-progress-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #a3e635 0%, #84cc16 100%);
	border-radius: 999px;
	transition: width 0.4s ease;
}

.nas-progress-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--nas-academy-text-color, #cbd5e1);
	font-weight: 600;
}

/* Personal Stats Card */
.nas-card-stats {
	background: var(--nas-academy-card-bg, #0f172a);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 20px;
	padding: 26px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.nas-card-stats-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--nas-academy-title-color, #ffffff);
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nas-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.nas-stat-box {
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 14px;
	text-align: center;
}

.nas-stat-num {
	font-size: 24px;
	font-weight: 800;
	color: var(--nas-academy-accent, #f3cc7a);
	line-height: 1.2;
}

.nas-stat-lbl {
	font-size: 11px;
	font-weight: 600;
	color: var(--nas-academy-text-color, #cbd5e1);
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

/* Upcoming Masterclasses Section */
.nas-dash-section {
	margin-bottom: 40px;
}

.nas-dash-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.nas-dash-section-title {
	font-size: 20px !important;
	font-weight: 800 !important;
	color: var(--nas-academy-title-color, #ffffff) !important;
	margin: 0 !important;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--nas-academy-card-bg, #0f172a);
	padding: 8px 20px;
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.25);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nas-masterclass-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
}

.nas-masterclass-card {
	background: var(--nas-academy-card-bg, #0f172a);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 18px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 18px;
	transition: all 0.2s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.nas-masterclass-card:hover {
	border-color: rgba(243, 204, 122, 0.35);
	transform: translateY(-2px);
}

.nas-date-badge-box {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: #1e293b;
	border: 1px solid rgba(243, 204, 122, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nas-date-badge-month {
	font-size: 10.5px;
	font-weight: 800;
	color: var(--nas-academy-accent, #f3cc7a);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nas-date-badge-day {
	font-size: 19px;
	font-weight: 800;
	color: var(--nas-academy-title-color, #ffffff);
	line-height: 1;
}

.nas-masterclass-info {
	flex: 1;
}

.nas-masterclass-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--nas-academy-title-color, #ffffff);
	margin: 0 0 3px 0;
}

.nas-masterclass-speaker {
	font-size: 12.5px;
	color: var(--nas-academy-text-color, #cbd5e1);
	margin: 0 0 8px 0;
}

.nas-masterclass-link {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--nas-academy-accent, #f3cc7a);
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.nas-masterclass-link:hover {
	text-decoration: underline !important;
}
