/* Compuhelp — IT Training Institute Theme */

:root {
	--ch-navy: #101218;
	--ch-navy-dark: #090a0b;
	--ch-blue: #1a2030;
	--ch-orange: #f3b14a;
	--ch-orange-dark: #d9973a;
	--ch-teal: #339989;
	--ch-bg: #0d0f14;
	--ch-white: #101218;
	--ch-text: #f7f7f7;
	--ch-muted: #787e86;
	--ch-border: #21242a;
	--ch-radius: 12px;
	--ch-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
	--ch-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
	--ch-font: 'Inter', system-ui, sans-serif;
	--ch-display: 'Sora', system-ui, sans-serif;
	--ch-max: 1280px;
}

/* Reset Astra page padding on front page */
.home .site-content .ast-container {
	max-width: 100%;
	padding: 0;
}

.home #primary {
	margin: 0;
	padding: 0;
}

.ch-home {
	font-family: var(--ch-font);
	color: var(--ch-text);
	line-height: 1.6;
}

.ch-home *,
.ch-home *::before,
.ch-home *::after {
	box-sizing: border-box;
}

.ch-container {
	max-width: var(--ch-max);
	margin: 0 auto;
	padding: 0 clamp(16px, 2vw, 32px);
}

.ch-container--fluid {
	max-width: none;
	width: 100%;
	padding-left: clamp(20px, 3vw, 48px);
	padding-right: clamp(20px, 3vw, 48px);
}

.ch-section {
	padding: 72px 0;
}

.ch-section--alt {
	background: var(--ch-bg);
}

.ch-section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 48px;
}

.ch-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ch-orange);
	margin-bottom: 10px;
}

.ch-section-title {
	font-family: var(--ch-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0 0 12px;
	line-height: 1.2;
}

.ch-section-desc {
	color: var(--ch-muted);
	font-size: 1.05rem;
	margin: 0;
}

.ch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.ch-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.ch-btn--primary {
	background: var(--ch-orange);
	color: var(--ch-white) !important;
	box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.ch-btn--primary:hover {
	background: var(--ch-orange-dark);
	color: var(--ch-white) !important;
}

.ch-btn--outline {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.85);
}

.ch-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff !important;
}

.ch-btn--navy {
	background: var(--ch-border);
	color: var(--ch-text) !important;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.ch-btn--navy:hover {
	background: #2a3038;
	color: #fff !important;
}

/* Hero */
.ch-hero {
	position: relative;
	background: linear-gradient(135deg, var(--ch-navy-dark) 0%, var(--ch-navy) 45%, var(--ch-blue) 100%);
	color: var(--ch-white);
	overflow: hidden;
	clear: both;
}

.ch-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.12) 0%, transparent 40%);
	pointer-events: none;
}

.ch-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr minmax(300px, 380px);
	gap: 36px;
	align-items: center;
	padding: 48px clamp(16px, 2vw, 32px) 56px;
	max-width: var(--ch-max);
	margin: 0 auto;
}

.ch-hero-slides {
	position: relative;
}

.ch-hero-slide {
	display: none;
	animation: chFadeIn 0.6s ease;
}

.ch-hero-slide.is-active {
	display: block;
}

@keyframes chFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.ch-hero-badge {
	display: inline-block;
	background: rgba(249, 115, 22, 0.2);
	color: #fdba74;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
	margin: 0 0 14px;
	border: 1px solid rgba(249, 115, 22, 0.3);
}

.ch-hero-title {
	font-family: var(--ch-display);
	font-size: clamp(1.85rem, 4.5vw, 2.65rem);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 14px;
	color: var(--ch-white);
}

.ch-hero-subtitle {
	font-size: 1.1rem;
	line-height: 1.5;
	opacity: 0.92;
	margin: 0 0 10px;
	max-width: 540px;
}

.ch-hero-modes {
	font-size: 14px;
	line-height: 1.5;
	opacity: 0.8;
	margin: 0 0 22px;
}

.ch-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ch-hero-dots {
	display: flex;
	gap: 8px;
	margin-top: 24px;
}

.ch-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, transform 0.2s;
}

.ch-hero-dot.is-active {
	background: var(--ch-orange);
	transform: scale(1.2);
}

/* Enquiry form */
.ch-enquiry {
	background: var(--ch-white);
	border-radius: var(--ch-radius);
	padding: 24px;
	box-shadow: var(--ch-shadow-lg);
	color: var(--ch-text);
}

.ch-enquiry-title {
	font-family: var(--ch-display);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0 0 6px;
}

.ch-enquiry-sub {
	font-size: 14px;
	color: var(--ch-muted);
	margin: 0 0 18px;
	line-height: 1.4;
}

.ch-form-group {
	margin-bottom: 12px;
}

.ch-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--ch-text);
}

.ch-form-group input,
.ch-form-group select,
.ch-form-group textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--ch-border);
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ch-form-group input:focus,
.ch-form-group select:focus,
.ch-form-group textarea:focus {
	outline: none;
	border-color: var(--ch-blue);
	box-shadow: 0 0 0 3px rgba(21, 101, 168, 0.12);
}

.ch-form-group textarea {
	min-height: 80px;
	resize: vertical;
}

.ch-enquiry .ch-btn {
	width: 100%;
	margin-top: 2px;
	padding: 13px 20px;
}

/* Course grids */
.ch-courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.ch-course-card {
	background: var(--ch-white);
	border-radius: var(--ch-radius);
	padding: 24px;
	border: 1px solid var(--ch-border);
	transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ch-course-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ch-shadow-lg);
	border-color: var(--ch-blue);
	text-decoration: none;
	color: inherit;
}

.ch-course-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
	color: var(--ch-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
}

.ch-course-category {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ch-orange);
}

.ch-course-title {
	font-family: var(--ch-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0;
	line-height: 1.3;
}

.ch-course-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-blue);
	margin-top: auto;
}

/* About director */
.ch-about-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	align-items: center;
}

.ch-about-photo {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--ch-navy), var(--ch-blue));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ch-display);
	font-size: 4rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.9);
	box-shadow: var(--ch-shadow-lg);
	margin: 0 auto;
}

.ch-about-name {
	font-family: var(--ch-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0 0 4px;
}

.ch-about-role {
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-orange);
	margin: 0 0 20px;
}

.ch-about-text {
	color: var(--ch-muted);
	margin: 0 0 20px;
}

.ch-about-prose {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.ch-about-prose .ch-section-header {
	text-align: left;
	margin-bottom: 24px;
}

.ch-about-prose .ch-btn {
	margin-top: 8px;
}

/* Benefits */
.ch-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.ch-benefit-card {
	background: var(--ch-white);
	border-radius: var(--ch-radius);
	padding: 28px;
	border: 1px solid var(--ch-border);
	text-align: center;
	transition: box-shadow 0.25s;
}

.ch-benefit-card:hover {
	box-shadow: var(--ch-shadow);
}

.ch-benefit-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 14px;
	background: rgba(21, 101, 168, 0.1);
	color: var(--ch-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.ch-benefit-title {
	font-family: var(--ch-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0 0 8px;
}

.ch-benefit-desc {
	font-size: 14px;
	color: var(--ch-muted);
	margin: 0;
}

/* Welcome split */
.ch-welcome-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.ch-welcome-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ch-welcome-img {
	aspect-ratio: 4/3;
	border-radius: var(--ch-radius);
	background: linear-gradient(135deg, var(--ch-navy) 0%, var(--ch-teal) 100%);
	opacity: 0.85;
}

.ch-welcome-img:nth-child(2) {
	margin-top: 24px;
	background: linear-gradient(135deg, var(--ch-orange) 0%, var(--ch-navy) 100%);
}

.ch-welcome-img:nth-child(3) {
	background: linear-gradient(135deg, var(--ch-blue) 0%, var(--ch-navy-dark) 100%);
}

.ch-welcome-img:nth-child(4) {
	margin-top: -24px;
	background: linear-gradient(135deg, var(--ch-teal) 0%, var(--ch-blue) 100%);
}

.ch-welcome-text p {
	color: var(--ch-muted);
	margin-bottom: 16px;
}

.ch-welcome-text strong {
	color: var(--ch-navy);
}

/* Stats */
.ch-stats {
	background: linear-gradient(135deg, var(--ch-navy-dark), var(--ch-navy));
	color: var(--ch-white);
	padding: 56px 0;
}

.ch-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.ch-stat-value {
	font-family: var(--ch-display);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: var(--ch-orange);
	line-height: 1;
	margin-bottom: 8px;
}

.ch-stat-label {
	font-size: 14px;
	opacity: 0.85;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Team */
.ch-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
}

.ch-team-card {
	text-align: center;
	background: var(--ch-white);
	border-radius: var(--ch-radius);
	padding: 32px 20px;
	border: 1px solid var(--ch-border);
	transition: box-shadow 0.25s;
}

.ch-team-card:hover {
	box-shadow: var(--ch-shadow);
}

.ch-team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
	color: var(--ch-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ch-display);
	font-size: 1.75rem;
	font-weight: 700;
}

.ch-team-name {
	font-family: var(--ch-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0 0 4px;
}

.ch-team-role {
	font-size: 13px;
	color: var(--ch-muted);
	margin: 0;
}

/* Testimonials */
.ch-testimonials-wrap {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.ch-testimonial {
	display: none;
	text-align: center;
	padding: 20px;
	animation: chFadeIn 0.5s ease;
}

.ch-testimonial.is-active {
	display: block;
}

.ch-testimonial-quote {
	font-size: 1.1rem;
	font-style: italic;
	color: var(--ch-text);
	line-height: 1.7;
	margin: 0 0 24px;
	position: relative;
}

.ch-testimonial-quote::before {
	content: '\201C';
	font-size: 3rem;
	color: var(--ch-orange);
	opacity: 0.4;
	line-height: 0;
	display: block;
	margin-bottom: 8px;
}

.ch-testimonial-author {
	font-family: var(--ch-display);
	font-weight: 700;
	color: var(--ch-navy);
	font-style: normal;
}

.ch-testimonial-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.ch-testimonial-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--ch-border);
	background: var(--ch-white);
	cursor: pointer;
	font-size: 18px;
	color: var(--ch-navy);
	transition: background 0.2s, color 0.2s;
}

.ch-testimonial-btn:hover {
	background: var(--ch-navy);
	color: var(--ch-white);
}

/* Features */
.ch-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.ch-feature-card {
	position: relative;
	border-radius: var(--ch-radius);
	overflow: hidden;
	min-height: 200px;
	background: linear-gradient(135deg, var(--ch-navy) 0%, var(--ch-blue) 100%);
	color: var(--ch-white);
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-decoration: none;
	transition: transform 0.25s;
}

.ch-feature-card:hover {
	transform: scale(1.02);
	color: var(--ch-white);
	text-decoration: none;
}

.ch-feature-tag {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.8;
	margin-bottom: 8px;
}

.ch-feature-title {
	font-family: var(--ch-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}

/* Video gallery placeholder */
.ch-video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.ch-video-placeholder {
	aspect-ratio: 16/9;
	border-radius: var(--ch-radius);
	background: var(--ch-navy-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-video-play {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ch-orange);
	color: var(--ch-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 8px;
}

/* CTA band */
.ch-cta-band {
	background: linear-gradient(90deg, var(--ch-orange), var(--ch-orange-dark));
	color: #fff;
	padding: 48px 0;
	text-align: center;
}

.ch-cta-band h2 {
	font-family: var(--ch-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 12px;
	color: #fff;
}

.ch-cta-band p {
	margin: 0 0 24px;
	opacity: 0.95;
}

.ch-cta-band .ch-btn {
	background: var(--ch-white);
	color: var(--ch-orange) !important;
}

.ch-cta-band .ch-btn:hover {
	background: var(--ch-bg);
	color: var(--ch-orange-dark) !important;
}

/* Responsive */
@media (max-width: 992px) {
	.ch-hero-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 36px 20px 44px;
	}

	.ch-about-grid,
	.ch-welcome-grid {
		grid-template-columns: 1fr;
	}

	.ch-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.ch-section {
		padding: 48px 0;
	}

	.ch-stats-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ch-welcome-images {
		grid-template-columns: 1fr;
	}

	.ch-welcome-img:nth-child(2),
	.ch-welcome-img:nth-child(4) {
		margin-top: 0;
	}
}

/* Top bar, WhatsApp, footer (from site customizations) */
.compuhelp-top-bar {
	background: var(--ch-navy);
	color: #fff;
	font-size: 14px;
}

.compuhelp-top-bar-inner {
	max-width: var(--ch-max);
	margin: 0 auto;
	padding: 8px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.compuhelp-top-contact {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.compuhelp-top-contact a,
.compuhelp-phone,
.compuhelp-phone:hover {
	color: #fff;
	text-decoration: none;
}

.compuhelp-top-contact a:hover {
	text-decoration: underline;
}

.compuhelp-top-sep {
	opacity: 0.5;
}

.compuhelp-top-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.compuhelp-top-tagline {
	font-size: 13px;
	opacity: 0.9;
}

.compuhelp-apply-btn {
	background: var(--ch-orange);
	color: #fff !important;
	padding: 6px 14px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
}

.compuhelp-whatsapp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 9999;
	background: #25d366;
	color: #fff !important;
	padding: 12px 16px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.compuhelp-footer-info {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 24px 20px 0;
	margin-top: 20px;
	color: inherit;
}

.compuhelp-footer-grid {
	max-width: var(--ch-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	font-size: 14px;
	line-height: 1.6;
}

.compuhelp-footer-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.compuhelp-footer-grid a {
	color: inherit;
}

@media (max-width: 992px) {
	.compuhelp-footer-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.compuhelp-top-bar-inner {
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.compuhelp-footer-grid--4 {
		grid-template-columns: 1fr;
	}
}

/* Astra fixes */
#secondary_menu-site-navigation {
	display: none !important;
}

/* Main header — split menu | logo | split menu | CTA */
#masthead {
	position: relative;
	z-index: 100;
}

#masthead .ast-primary-header-bar,
#masthead .ast-primary-header-bar .main-header-bar {
	position: relative !important;
	background: var(--ch-navy-dark) !important;
	border-bottom: 1px solid var(--ch-border);
}

#masthead .site-primary-header-wrap.ast-builder-grid-row-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

#masthead .ast-builder-grid-row {
	align-items: center;
	width: 100%;
}

.site-header-primary-section-left-center,
.site-header-primary-section-right-center {
	flex: 1 1 0;
	min-width: 0;
}

.site-header-primary-section-center {
	flex: 0 0 auto;
	padding: 0 16px;
}

.site-header-primary-section-right {
	flex: 0 0 auto;
	margin-left: 8px;
}

.site-header-primary-section-left .ast-header-social-wrap,
.site-header-primary-section-left [data-section="section-hb-social-icons-1"] {
	display: none !important;
}

.ast-builder-menu-1 .main-header-menu,
.ast-builder-menu-2 .main-header-menu {
	display: flex;
	flex-wrap: nowrap;
	margin: 0;
}

.ast-builder-menu-1 .main-header-menu {
	justify-content: flex-end;
}

.ast-builder-menu-2 .main-header-menu {
	justify-content: flex-start;
}

.ast-builder-menu-1 .main-header-menu > .menu-item,
.ast-builder-menu-2 .main-header-menu > .menu-item {
	margin: 0;
	flex-shrink: 0;
}

.ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link,
.ast-builder-menu-2 .main-header-menu > .menu-item > .menu-link {
	padding: 10px 11px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--ch-text) !important;
	white-space: nowrap;
}

.ast-builder-menu-1 .menu-item:hover > .menu-link,
.ast-builder-menu-2 .menu-item:hover > .menu-link,
.ast-builder-menu-1 .current-menu-item > .menu-link,
.ast-builder-menu-2 .current-menu-item > .menu-link,
.ast-builder-menu-1 .current-menu-ancestor > .menu-link,
.ast-builder-menu-2 .current-menu-ancestor > .menu-link {
	color: var(--ch-teal) !important;
}

#secondary_menu-site-navigation {
	display: none !important;
}

.ast-header-button-1 .ast-custom-button {
	background: var(--ch-orange) !important;
	border-color: var(--ch-orange) !important;
	border-radius: 6px !important;
	font-weight: 700 !important;
	padding: 10px 18px !important;
	white-space: nowrap;
}

.ast-header-button-1 .ast-custom-button:hover {
	background: var(--ch-orange-dark) !important;
	border-color: var(--ch-orange-dark) !important;
}

#masthead .site-logo-img img {
	max-height: 52px;
	width: auto;
}

@media (max-width: 1200px) {
	.ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link,
	.ast-builder-menu-2 .main-header-menu > .menu-item > .menu-link {
		padding: 8px 7px;
		font-size: 12px;
	}

	.site-header-primary-section-center {
		padding: 0 10px;
	}
}

@media (max-width: 921px) {
	.ast-builder-menu-1,
	.ast-builder-menu-2 {
		display: none;
	}
}

/* Mega menu — dropdown below parent, Compuhelp styling */
#masthead,
#masthead .ast-primary-header-bar,
#masthead .main-header-bar-navigation {
	overflow: visible !important;
}

.ast-primary-header-bar .main-header-menu > .compuhelp-mega-parent {
	position: relative;
}

.ast-primary-header-bar .compuhelp-mega-parent > .menu-link {
	border-radius: 8px;
	transition: background 0.2s, color 0.2s;
}

.ast-primary-header-bar .compuhelp-mega-parent:hover > .menu-link,
.ast-primary-header-bar .compuhelp-mega-parent.focus > .menu-link,
.ast-primary-header-bar .compuhelp-mega-parent.ast-submenu-expanded > .menu-link {
	background: var(--ch-orange) !important;
	color: #fff !important;
}

.ast-primary-header-bar .compuhelp-mega-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: auto;
	width: max-content;
	min-width: 520px;
	max-width: min(720px, calc(100vw - 40px));
	padding: 0;
	margin: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	transform: translateY(8px);
	z-index: 99999;
	list-style: none;
}

.ast-primary-header-bar .compuhelp-mega-parent:hover > .compuhelp-mega-panel,
.ast-primary-header-bar .compuhelp-mega-parent.focus > .compuhelp-mega-panel,
.ast-primary-header-bar .compuhelp-mega-parent.ast-submenu-expanded > .compuhelp-mega-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.compuhelp-mega-container {
	list-style: none;
	margin: 0;
	padding: 0;
}

.compuhelp-mega-box {
	background: linear-gradient(145deg, var(--ch-navy-dark) 0%, var(--ch-navy) 55%, #0f4a75 100%);
	border-radius: 14px;
	padding: 22px 24px 18px;
	box-shadow: 0 16px 40px rgba(11, 61, 92, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.compuhelp-mega-eyebrow {
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.compuhelp-mega-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(160px, 1fr));
	gap: 20px 24px;
}

.compuhelp-mega-column {
	min-width: 0;
}

.compuhelp-mega-col-title {
	margin: 0 0 10px;
	font-family: var(--ch-display);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

.compuhelp-mega-col-list,
.compuhelp-mega-grid {
	list-style: none;
	margin: 0;
	padding: 0;
}

.compuhelp-mega-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(140px, 1fr));
	gap: 2px 16px;
}

.compuhelp-mega-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.compuhelp-mega-item > .menu-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0 !important;
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	background: transparent !important;
	border: none !important;
	text-decoration: none;
	transition: color 0.15s;
	white-space: normal;
}

.compuhelp-mega-item > .menu-link:hover {
	color: #fff !important;
}

.compuhelp-mega-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.compuhelp-mega-label {
	flex: 1;
	min-width: 0;
}

.compuhelp-mega-footer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ch-orange) !important;
	text-decoration: none;
}

.compuhelp-mega-footer:hover {
	color: #fdba74 !important;
}

.compuhelp-mega-footer-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(249, 115, 22, 0.2);
	font-size: 12px;
}

.compuhelp-mega-panel .ast-menu-toggle,
.compuhelp-mega-panel .dropdown-menu-toggle,
.compuhelp-mega-panel .ast-icon.icon-arrow {
	display: none !important;
}

/* Courses mega — wider 3-column panel */
.ast-builder-menu-1 .compuhelp-mega-parent > .compuhelp-mega-panel {
	min-width: 640px;
	max-width: min(820px, calc(100vw - 48px));
}

/* Students' Corner — align panel to right edge of parent */
.ast-builder-menu-2 .compuhelp-mega-parent > .compuhelp-mega-panel {
	left: auto;
	right: 0;
	min-width: 640px;
	max-width: min(820px, calc(100vw - 48px));
}

@media (max-width: 1100px) {
	.compuhelp-mega-columns {
		grid-template-columns: repeat(2, minmax(140px, 1fr));
	}

	.ast-builder-menu-1 .compuhelp-mega-parent > .compuhelp-mega-panel {
		min-width: 480px;
	}

	.ast-builder-menu-2 .compuhelp-mega-parent > .compuhelp-mega-panel {
		min-width: 480px;
	}
}

@media (max-width: 921px) {
	.compuhelp-mega-panel {
		position: static;
		min-width: 0 !important;
		max-width: 100% !important;
		width: 100% !important;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.compuhelp-mega-box {
		margin-top: 8px;
	}

	.compuhelp-mega-columns,
	.compuhelp-mega-grid {
		grid-template-columns: 1fr;
	}
}

.site-above-footer-wrap[data-section="section-above-footer-builder"] {
	display: none !important;
}

body.compuhelp-full-width .site-content,
body.compuhelp-full-width.page .site-content {
	width: 100%;
	max-width: 100%;
}

body.compuhelp-full-width .site-content > .ast-container,
body.compuhelp-full-width.page .site-content > .ast-container,
.home .site-content .ast-container,
.blog .site-content .ast-container,
.category .site-content .ast-container,
.single-post .site-content .ast-container {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.compuhelp-full-width .site-content > .ast-container,
body.compuhelp-full-width.page .site-content > .ast-container,
.blog .site-content .ast-container,
.category .site-content .ast-container,
.single-post .site-content .ast-container {
	display: block !important;
}

.blog #primary,
.category #primary,
.single-post #primary,
.ast-no-sidebar #secondary {
	display: none !important;
}

body.compuhelp-full-width #primary.ch-page,
.blog .site-content .ast-container > .ch-page,
.category .site-content .ast-container > .ch-page,
.single-post .site-content .ast-container > .ch-page,
main.ch-page.ch-blog,
main.ch-page.ch-blog-single {
	width: 100% !important;
	max-width: 100% !important;
	flex: 1 1 100%;
}

#primary.ch-page,
.home #primary {
	margin: 0;
	padding: 0;
}

/* Inner pages */
.ch-page {
	font-family: var(--ch-font);
	color: var(--ch-text);
	line-height: 1.6;
}

.ch-page-hero {
	background: linear-gradient(135deg, var(--ch-navy-dark), var(--ch-navy) 55%, var(--ch-blue));
	color: #fff;
	padding: 56px 0 48px;
	text-align: center;
}

.ch-page-title {
	font-family: var(--ch-display);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	margin: 0 0 12px;
	color: #fff;
}

.ch-page-lead {
	max-width: 640px;
	margin: 0 auto;
	opacity: 0.92;
	font-size: 1.05rem;
}

.ch-prose {
	max-width: 800px;
}

.ch-prose h2 {
	font-family: var(--ch-display);
	color: var(--ch-text);
	margin-top: 0;
}

.ch-prose a {
	color: #8fd9c9;
}

.ch-blog-single .ch-prose {
	color: var(--ch-muted);
}

.ch-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.ch-contact-card {
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 28px;
}

.ch-contact-card h3 {
	font-family: var(--ch-display);
	color: var(--ch-navy);
	margin: 0 0 12px;
}

.ch-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.ch-gallery-item {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-navy);
}

.ch-gallery-thumb {
	height: 160px;
	border-radius: var(--ch-radius);
	background: linear-gradient(145deg, var(--ch-navy), var(--ch-blue));
	margin-bottom: 10px;
	opacity: 0.85;
}

.ch-tutorials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

.ch-tutorial-card {
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 24px;
}

.ch-tutorial-card h3 {
	font-family: var(--ch-display);
	font-size: 1rem;
	color: var(--ch-navy);
	margin: 0 0 8px;
}

.ch-tutorial-card p {
	font-size: 14px;
	color: var(--ch-muted);
	margin: 0 0 12px;
}

.ch-tutorial-card a {
	font-weight: 600;
	color: var(--ch-blue);
	text-decoration: none;
}

.ch-tutor-wrap .tutor-course-list {
	max-width: 100%;
	padding: 0;
}

.ch-tutor-wrap .tutor-course-card {
	border-radius: var(--ch-radius);
	border: 1px solid var(--ch-border);
}

/* Blog */
.ch-blog-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--ch-navy-dark) 0%, var(--ch-navy) 50%, #0f4a75 100%);
	color: #fff;
	padding: 64px 0 56px;
}

.ch-blog-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.18), transparent 42%),
		radial-gradient(circle at 10% 80%, rgba(21, 101, 168, 0.35), transparent 45%);
	pointer-events: none;
}

.ch-blog-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: end;
}

.ch-blog-hero-title {
	font-family: var(--ch-display);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 14px;
	color: #fff;
}

.ch-blog-hero-lead {
	max-width: 560px;
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.65;
	opacity: 0.92;
}

.ch-blog-hero-stats {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.ch-blog-stat {
	min-width: 96px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(6px);
	text-align: center;
}

.ch-blog-stat strong {
	display: block;
	font-family: var(--ch-display);
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}

.ch-blog-stat span {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.75;
}

.ch-blog-featured {
	margin: 0;
}

.ch-blog-featured-link {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 0;
	background: rgba(16, 18, 24, 0.85);
	border: 1px solid var(--ch-border);
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	color: var(--ch-text);
	box-shadow: var(--ch-shadow-lg);
	transition: transform 0.25s, box-shadow 0.25s;
}

.ch-blog-featured-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 48px rgba(11, 61, 92, 0.16);
	color: inherit;
}

.ch-blog-featured-visual {
	position: relative;
	min-height: 280px;
	background: linear-gradient(145deg, var(--ch-navy-dark), var(--ch-blue));
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ch-blog-featured-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.6;
}

.ch-blog-featured-letter {
	position: relative;
	z-index: 1;
	width: 96px;
	height: 96px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.12);
	border: 2px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ch-display);
	font-size: 2.75rem;
	font-weight: 800;
	color: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ch-blog-featured-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--ch-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ch-blog-featured-body {
	padding: 36px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ch-blog-featured-title {
	font-family: var(--ch-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--ch-text);
	margin: 10px 0 14px;
	line-height: 1.25;
}

.ch-blog-featured-excerpt {
	font-size: 1rem;
	color: var(--ch-muted);
	line-height: 1.7;
	margin: 0 0 24px;
}

.ch-blog-featured-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.ch-blog-topics {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: -24px 0 32px;
}

.ch-blog-topics-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--ch-muted);
	margin-right: 4px;
}

.ch-blog-topic {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid var(--ch-border);
	background: rgba(16, 18, 24, 0.72);
	color: var(--ch-text);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ch-blog-topic:hover,
.ch-blog-topic.is-active {
	background: var(--ch-teal);
	border-color: var(--ch-teal);
	color: #fff;
}

.ch-blog-grid {
	display: grid;
	gap: 24px;
}

.ch-blog-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ch-blog-card {
	margin: 0;
	height: 100%;
	border: none;
	background: transparent;
	box-shadow: none;
}

.ch-blog-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: rgba(16, 18, 24, 0.85);
	border: 1px solid var(--ch-border);
	border-radius: 16px;
	padding: 0;
	text-decoration: none;
	color: var(--ch-text);
	box-shadow: var(--ch-shadow);
	transition: transform 0.22s, box-shadow 0.22s, border-color 0.2s;
	overflow: hidden;
}

.ch-blog-card-link::before {
	content: '';
	display: block;
	height: 4px;
	background: linear-gradient(90deg, var(--ch-orange), var(--ch-blue));
}

.ch-blog-card-link:hover {
	transform: translateY(-5px);
	box-shadow: var(--ch-shadow-lg);
	border-color: rgba(21, 101, 168, 0.28);
}

.ch-blog-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 22px 0;
}

.ch-blog-card-icon {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ch-blog-card-cat {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ch-orange);
}

.ch-blog-card-title {
	font-family: var(--ch-display);
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--ch-text);
	margin: 14px 22px 10px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ch-blog .ch-blog-card-title,
.ch-blog .ch-blog-featured-title {
	color: var(--ch-text);
}

.ch-blog-card-excerpt {
	font-size: 14px;
	color: var(--ch-muted);
	margin: 0 22px 18px;
	flex: 1;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ch-blog-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 22px 18px;
	margin-top: auto;
	border-top: 1px solid var(--ch-border);
	background: rgba(9, 10, 11, 0.55);
}

.ch-blog-card-meta {
	font-size: 12px;
	font-weight: 600;
	color: var(--ch-muted);
}

.ch-blog-card-arrow {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--ch-border);
	color: var(--ch-teal);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ch-blog-card-link:hover .ch-blog-card-arrow {
	background: var(--ch-orange);
	border-color: var(--ch-orange);
	color: #fff;
}

.ch-btn--sm {
	padding: 10px 18px;
	font-size: 14px;
}

.ch-btn--outline-light {
	background: transparent !important;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.85) !important;
	box-shadow: none !important;
}

.ch-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
}

.ch-cta-band .ch-btn.ch-btn--outline-light {
	background: transparent !important;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.85) !important;
	box-shadow: none !important;
}

.ch-cta-band .ch-btn.ch-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	color: #fff !important;
}

.ch-blog-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	text-align: left;
}

.ch-blog-cta h2 {
	margin-bottom: 8px;
}

.ch-blog-cta p {
	margin: 0;
}

.ch-blog-cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.ch-blog-pagination {
	margin-top: 48px;
	text-align: center;
}

.ch-blog-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.ch-blog-pagination a,
.ch-blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid var(--ch-border);
	background: rgba(16, 18, 24, 0.72);
	text-decoration: none;
	color: var(--ch-text);
	font-weight: 600;
}

.ch-blog-pagination .current {
	background: var(--ch-navy);
	border-color: var(--ch-navy);
	color: #fff;
}

.ch-blog-empty {
	text-align: center;
	color: var(--ch-muted);
	padding: 48px 0;
}

.ch-page-hero--compact {
	padding: 44px 0 36px;
}

.ch-blog-meta {
	font-size: 0.95rem;
	opacity: 0.85;
}

.ch-blog-meta-sep {
	margin: 0 6px;
	opacity: 0.6;
}

.ch-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 40px;
	align-items: start;
}

.ch-blog-article {
	background: rgba(16, 18, 24, 0.85);
	border: 1px solid var(--ch-border);
	border-radius: 18px;
	padding: 40px 44px;
	box-shadow: var(--ch-shadow);
	color: var(--ch-muted);
}

.ch-blog-article h1,
.ch-blog-article h2,
.ch-blog-article h3 {
	font-family: var(--ch-display);
	color: var(--ch-text);
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	line-height: 1.3;
}

.ch-blog-single .ch-blog-article h1,
.ch-blog-single .ch-blog-article h2,
.ch-blog-single .ch-blog-article h3 {
	color: var(--ch-text);
}

.ch-blog-article h1:first-child,
.ch-blog-article h2:first-child {
	margin-top: 0;
}

.ch-blog-article p,
.ch-blog-article li {
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--ch-muted);
}

.ch-blog-article a {
	color: #8fd9c9;
	font-weight: 600;
}

.ch-blog-article a:hover {
	color: var(--ch-orange);
}

.ch-blog-article ul,
.ch-blog-article ol {
	padding-left: 1.4em;
	margin: 0 0 1.2em;
}

.ch-blog-sidebar-card {
	background: rgba(16, 18, 24, 0.85);
	border: 1px solid var(--ch-border);
	border-radius: 16px;
	padding: 22px;
	margin-bottom: 20px;
	box-shadow: var(--ch-shadow);
}

.ch-blog-sidebar-card h3 {
	font-family: var(--ch-display);
	font-size: 1.05rem;
	color: var(--ch-text);
	margin: 0 0 12px;
}

.ch-blog-single .ch-blog-sidebar-card h3 {
	color: var(--ch-text);
}

.ch-blog-sidebar-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ch-blog-sidebar-card li {
	margin-bottom: 8px;
}

.ch-blog-sidebar-card a {
	color: #8fd9c9;
	font-weight: 600;
	text-decoration: none;
}

.ch-blog-sidebar-card a:hover {
	color: var(--ch-orange);
}

.ch-blog-sidebar-card--cta {
	background: linear-gradient(145deg, var(--ch-navy-dark), var(--ch-navy));
	border: none;
	color: #fff;
}

.ch-blog-sidebar-card--cta h3,
.ch-blog-sidebar-card--cta p {
	color: rgba(255, 255, 255, 0.92);
}

.ch-blog-sidebar-card--cta p {
	font-size: 14px;
	margin: 0 0 16px;
}

.ch-blog-sidebar-card--cta .ch-btn {
	background: var(--ch-orange);
	color: #1a1205 !important;
	box-shadow: 0 4px 14px rgba(243, 177, 74, 0.35);
}

.ch-blog-sidebar-card--cta .ch-btn:hover {
	background: var(--ch-orange-dark);
	color: #1a1205 !important;
}

.ch-btn--block {
	display: block;
	text-align: center;
	width: 100%;
}

@media (max-width: 1100px) {
	.ch-blog-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ch-blog-featured-link {
		grid-template-columns: 260px 1fr;
	}
}

@media (max-width: 900px) {
	.ch-blog-hero-inner {
		grid-template-columns: 1fr;
	}

	.ch-blog-featured-link {
		grid-template-columns: 1fr;
	}

	.ch-blog-featured-visual {
		min-height: 200px;
	}

	.ch-blog-featured-body {
		padding: 28px 24px;
	}

	.ch-blog-layout {
		grid-template-columns: 1fr;
	}

	.ch-blog-article {
		padding: 28px 22px;
	}

	.ch-blog-cta {
		flex-direction: column;
		text-align: center;
	}

	.ch-blog-cta-actions {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.ch-blog-grid--3 {
		grid-template-columns: 1fr;
	}
}

/* Students' Corner & HelpDesk */
.ch-students-hub,
.ch-students-helpdesk {
	width: 100%;
}

.ch-students-hub .ch-section,
.ch-students-helpdesk .ch-section {
	width: 100%;
}

.ch-students-helpdesk .ch-helpdesk-section {
	background: var(--ch-bg);
}

.ch-students-hub .ch-container--fluid,
.ch-students-helpdesk .ch-container--fluid {
	max-width: none;
	width: 100%;
}

.ch-students-helpdesk .ch-helpdesk-layout {
	max-width: none;
}

.ch-students-intro {
	padding-top: 40px;
	padding-bottom: 0;
}

.ch-students-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ch-students-stat {
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 24px;
	text-align: center;
	box-shadow: var(--ch-shadow);
}

.ch-students-stat-value {
	display: block;
	font-family: var(--ch-display);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--ch-navy);
	margin-bottom: 4px;
}

.ch-students-stat-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-muted);
}

.ch-students-empty {
	text-align: center;
	color: var(--ch-muted);
	padding: 24px 0;
}

.ch-helpdesk-hub {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	width: 100%;
}

.ch-helpdesk-hub-column {
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--ch-shadow);
}

.ch-helpdesk-hub-title {
	font-family: var(--ch-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--ch-orange);
}

.ch-helpdesk-hub-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ch-helpdesk-hub-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 10px;
	text-decoration: none;
	color: var(--ch-text);
	border: 1px solid transparent;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ch-helpdesk-hub-link:hover {
	background: var(--ch-bg);
	border-color: var(--ch-border);
	color: var(--ch-navy);
	text-decoration: none;
}

.ch-helpdesk-hub-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.ch-helpdesk-hub-label {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.ch-helpdesk-hub-arrow {
	color: var(--ch-blue);
	font-weight: 700;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s, transform 0.2s;
}

.ch-helpdesk-hub-link:hover .ch-helpdesk-hub-arrow {
	opacity: 1;
	transform: translateX(0);
}

.ch-students-support {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: linear-gradient(135deg, var(--ch-navy-dark), var(--ch-navy));
	color: #fff;
	border-radius: 16px;
	padding: 36px 40px;
}

.ch-students-support-title {
	font-family: var(--ch-display);
	font-size: 1.5rem;
	margin: 0 0 8px;
	color: #fff;
}

.ch-students-support p {
	margin: 0;
	opacity: 0.9;
}

.ch-students-support-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

.ch-breadcrumb {
	font-size: 14px;
	margin-bottom: 12px;
	opacity: 0.88;
}

.ch-breadcrumb a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.ch-breadcrumb a:hover {
	color: var(--ch-orange);
}

.ch-breadcrumb-sep {
	margin: 0 8px;
	opacity: 0.6;
}

.ch-helpdesk-section {
	padding-top: 40px;
}

.ch-helpdesk-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	width: 100%;
}

.ch-helpdesk-sidebar {
	position: sticky;
	top: 24px;
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: 16px;
	padding: 20px;
	box-shadow: var(--ch-shadow);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
}

.ch-helpdesk-sidebar-home {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--ch-blue);
	text-decoration: none;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ch-border);
	width: 100%;
}

.ch-helpdesk-sidebar-home:hover {
	color: var(--ch-orange);
}

.ch-helpdesk-sidebar-group + .ch-helpdesk-sidebar-group {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--ch-border);
}

.ch-helpdesk-sidebar-title {
	font-family: var(--ch-display);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ch-muted);
	margin: 0 0 10px;
}

.ch-helpdesk-sidebar-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ch-helpdesk-sidebar-link {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ch-text);
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.ch-helpdesk-sidebar-link:hover {
	background: var(--ch-bg);
	color: var(--ch-blue);
}

.ch-helpdesk-sidebar-link.is-active {
	background: var(--ch-navy);
	color: #fff;
}

.ch-helpdesk-content {
	background: rgba(16, 18, 24, 0.85);
	border: 1px solid var(--ch-border);
	border-radius: 18px;
	padding: 40px 48px;
	box-shadow: var(--ch-shadow);
	width: 100%;
	max-width: none;
	font-size: 1.02rem;
	line-height: 1.8;
	color: var(--ch-text);
}

.ch-helpdesk-content > :first-child {
	margin-top: 0;
}

.ch-helpdesk-content h2,
.ch-helpdesk-content h3,
.ch-helpdesk-content h4 {
	font-family: var(--ch-display);
	color: var(--ch-text);
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	line-height: 1.3;
}

.ch-helpdesk-content .ch-content-section-title {
	color: var(--ch-text);
}

.ch-helpdesk-content h2:first-child,
.ch-helpdesk-content h3:first-child {
	margin-top: 0;
}

.ch-helpdesk-content p,
.ch-helpdesk-content li {
	line-height: 1.8;
	color: var(--ch-muted);
}

.ch-helpdesk-content ul,
.ch-helpdesk-content ol {
	padding-left: 1.4em;
	margin: 0 0 1.2em;
}

.ch-helpdesk-content a {
	color: #8fd9c9;
	font-weight: 600;
}

.ch-helpdesk-content a:hover {
	color: var(--ch-orange);
}

.ch-helpdesk-content img,
.ch-helpdesk-content video,
.ch-helpdesk-content iframe {
	max-width: 100%;
	height: auto;
}

.ch-helpdesk-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1.4em;
	font-size: 0.95rem;
}

.ch-helpdesk-content th,
.ch-helpdesk-content td {
	border: 1px solid var(--ch-border);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}

.ch-helpdesk-content th {
	background: var(--ch-bg);
	color: var(--ch-text);
	font-weight: 700;
}

/* ch-content blocks inside helpdesk (placement, etc.) */
.ch-helpdesk-content .ch-content-card {
	background: rgba(16, 18, 24, 0.72);
}

.ch-helpdesk-content .ch-content-card h3,
.ch-helpdesk-content .ch-content-callout p,
.ch-helpdesk-content .ch-content-steps-header h3,
.ch-helpdesk-content .ch-content-step h4,
.ch-helpdesk-content .ch-content-section-title {
	color: var(--ch-text);
}

.ch-helpdesk-content .ch-content-card p,
.ch-helpdesk-content .ch-content-step p,
.ch-helpdesk-content .ch-content-steps-header p,
.ch-helpdesk-content .ch-content-list-card li {
	color: var(--ch-muted);
}

.ch-helpdesk-content .ch-content-callout {
	background: linear-gradient(135deg, rgba(51, 153, 137, 0.12), rgba(243, 177, 74, 0.08));
	border-left-color: var(--ch-teal);
}

.ch-helpdesk-content .ch-content-step {
	background: rgba(9, 10, 11, 0.55);
	border-color: var(--ch-border);
}

.ch-helpdesk-content .ch-content-hero,
.ch-helpdesk-content .ch-content-hero p {
	color: rgba(255, 255, 255, 0.92);
}

.ch-helpdesk-content .wp-block-group,
.ch-helpdesk-content .elementor-widget-wrap,
.ch-helpdesk-content .entry-content {
	max-width: 100% !important;
	width: 100% !important;
}

.ch-helpdesk-content pre:not(.ch-content-code),
.ch-helpdesk-content code:not(.ch-content-code) {
	background: var(--ch-bg);
	border-radius: 6px;
	font-size: 0.9em;
}

.ch-helpdesk-content pre:not(.ch-content-code) {
	padding: 16px;
	overflow-x: auto;
}

/* Keep code blocks readable inside helpdesk content (avoid light-on-light) */
.ch-helpdesk-content .ch-content-code,
.ch-content-faq-body .ch-content-code {
	background: #0f172a;
	color: #e2e8f0;
	border-radius: 12px;
	padding: 18px 20px;
	overflow-x: auto;
	font-family: ui-monospace, "Cascadia Code", "Source Code Pro", monospace;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 12px 0 0;
	white-space: pre-wrap;
	word-break: break-word;
}

.ch-content-faq-body .ch-content-code:first-child {
	margin-top: 0;
}

@media (max-width: 1024px) {
	.ch-helpdesk-hub {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ch-helpdesk-layout {
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 24px;
	}
}

@media (max-width: 900px) {
	.ch-students-stats {
		grid-template-columns: 1fr;
	}

	.ch-helpdesk-hub {
		grid-template-columns: 1fr;
	}

	.ch-helpdesk-layout {
		grid-template-columns: 1fr;
	}

	.ch-helpdesk-sidebar {
		position: static;
		max-height: none;
	}

	.ch-helpdesk-content {
		padding: 28px 22px;
	}

	.ch-students-support {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 24px;
	}
}

@media (max-width: 640px) {
	.ch-students-support-actions {
		width: 100%;
	}

	.ch-students-support-actions .ch-btn {
		flex: 1;
		text-align: center;
	}
}

/* Reusable page content blocks — paste in any page editor (Custom HTML) */
/* Site pages with editor ch-content (About, Courses page, etc.) */
.ch-page {
	overflow-x: clip;
}

.ch-content-page {
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.ch-content-page__inner.ch-container {
	max-width: var(--ch-max);
	padding-top: 48px;
	padding-bottom: 72px;
}

.ch-content-page .ch-content,
.ch-content-page .ch-kidz {
	max-width: 100%;
	width: 100%;
}

/* Home-width pages: hero + cards stay inside 1200px column (like homepage sections) */
.ch-page:not(.ch-students-hub):not(.ch-students-helpdesk) .ch-content-page .ch-content > .ch-content-hero:first-child,
.ch-page:not(.ch-students-hub):not(.ch-students-helpdesk) .ch-content-page .ch-kidz > .ch-kidz-hero:first-child {
	border-radius: 20px;
	box-shadow: var(--ch-shadow-lg);
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 48px 32px;
}

/* Students' Corner hub keeps fluid width */
.ch-students-hub .ch-content-page__inner.ch-container--fluid {
	max-width: none;
	padding-left: clamp(20px, 3vw, 48px);
	padding-right: clamp(20px, 3vw, 48px);
}

.ch-students-hub .ch-content-page .ch-content > .ch-content-hero:first-child {
	border-radius: 0;
	box-shadow: none;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 56px clamp(20px, 3vw, 48px) 48px;
}

.ch-students-helpdesk .ch-content-page__inner {
	max-width: none;
	padding: 0;
}

/* Tutor LMS course description tab */
.tutor-course-details-page .ch-content > .ch-content-hero:first-child,
.single-courses .ch-content > .ch-content-hero:first-child {
	border-radius: 12px;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding: 40px 28px 36px;
	box-shadow: var(--ch-shadow-lg);
}

.single-courses .tutor-course-details-content {
	background: transparent;
	overflow: visible !important;
	height: auto !important;
}

.single-courses .tutor-course-details-content.tutor-toggle-more-collapsed {
	height: auto !important;
}

.single-courses .tutor-course-details-content > h2.tutor-fs-5 {
	color: var(--ch-text);
}

.single-courses .tutor-course-details-content .tutor-fs-6 {
	color: var(--ch-muted);
}

.single-courses .tutor-course-details-content .ch-content-hero,
.single-courses .tutor-course-details-content .ch-content-hero p {
	color: rgba(255, 255, 255, 0.92);
}

.single-courses .tutor-course-details-content .ch-content-card h3,
.single-courses .tutor-course-details-content .ch-content-section-title,
.single-courses .tutor-course-details-content .ch-content-step h4,
.single-courses .tutor-course-details-content .ch-content-link-card h4 {
	color: var(--ch-text);
}

.single-courses .tutor-course-details-content .ch-content-card p,
.single-courses .tutor-course-details-content .ch-content-list-card li,
.single-courses .tutor-course-details-content .ch-content-step p,
.single-courses .tutor-course-details-content .ch-content-link-card p {
	color: var(--ch-muted);
}

.single-courses .tutor-btn-show-more {
	color: var(--ch-teal) !important;
}

.single-courses .tutor-btn-show-more .tutor-toggle-btn-text,
.single-courses .tutor-btn-show-more .tutor-icon {
	color: var(--ch-teal) !important;
}

.ch-content,
.ch-kidz {
	--ch-kidz-purple: #7c3aed;
	--ch-kidz-pink: #ec4899;
	--ch-kidz-yellow: #fbbf24;
	--ch-kidz-green: #10b981;
	font-family: var(--ch-font);
	color: var(--ch-text);
	line-height: 1.75;
}

.ch-content > * + *,
.ch-kidz > * + * {
	margin-top: 32px;
}

.ch-content-hero,
.ch-kidz-hero {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 48px 32px;
	border-radius: 20px;
	background: linear-gradient(135deg, #4f46e5 0%, var(--ch-kidz-purple) 45%, var(--ch-kidz-pink) 100%);
	color: #fff;
	box-shadow: var(--ch-shadow-lg);
}

.ch-content-hero::before,
.ch-kidz-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(251, 191, 36, 0.35), transparent 40%),
		radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.3), transparent 42%);
	pointer-events: none;
}

.ch-content-hero-inner,
.ch-kidz-hero-inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}

.ch-content-badge,
.ch-kidz-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.ch-content-hero h2,
.ch-kidz-hero h2 {
	font-family: var(--ch-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	margin: 0 0 12px;
	color: #fff;
	line-height: 1.2;
}

.ch-content-hero p,
.ch-kidz-hero p {
	margin: 0;
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.92);
}

.ch-content-card,
.ch-kidz-card {
	background: rgba(16, 18, 24, 0.72);
	border: 1px solid var(--ch-border);
	border-radius: 18px;
	padding: 32px;
	box-shadow: var(--ch-shadow);
}

.ch-content-card h3,
.ch-kidz-card h3 {
	font-family: var(--ch-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ch-text);
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ch-content-emoji,
.ch-kidz-card h3 .ch-kidz-emoji {
	font-size: 1.5rem;
	line-height: 1;
}

.ch-content-card p,
.ch-kidz-card p {
	margin: 0 0 14px;
	color: var(--ch-muted);
}

.ch-content-card p:last-child,
.ch-kidz-card p:last-child {
	margin-bottom: 0;
}

.ch-content-callout,
.ch-kidz-highlight {
	background: linear-gradient(135deg, rgba(51, 153, 137, 0.12), rgba(243, 177, 74, 0.08));
	border-left: 4px solid var(--ch-teal);
	border-radius: 0 14px 14px 0;
	padding: 20px 24px;
	margin: 20px 0 0;
}

.ch-content-callout p,
.ch-kidz-highlight p {
	margin: 0;
	font-weight: 600;
	color: var(--ch-text);
}

.ch-content-steps-header,
.ch-kidz-steps-header {
	text-align: center;
	margin-bottom: 28px;
}

.ch-content-steps-header h3,
.ch-kidz-steps-header h3 {
	font-family: var(--ch-display);
	font-size: clamp(1.4rem, 3vw, 1.85rem);
	font-weight: 800;
	color: var(--ch-text);
	margin: 0 0 8px;
}

.ch-content-steps-header p,
.ch-kidz-steps-header p {
	margin: 0;
	color: var(--ch-muted);
	font-size: 1.05rem;
}

.ch-content-steps,
.ch-kidz-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ch-content-step,
.ch-kidz-step {
	position: relative;
	background: rgba(9, 10, 11, 0.55);
	border: 1px solid var(--ch-border);
	border-radius: 18px;
	padding: 28px 24px 24px;
	box-shadow: var(--ch-shadow);
	transition: transform 0.25s, box-shadow 0.25s;
}

.ch-content-step:hover,
.ch-kidz-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--ch-shadow-lg);
}

.ch-content-step-num,
.ch-kidz-step-num {
	position: absolute;
	top: -14px;
	left: 20px;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ch-display);
	font-size: 1.1rem;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, var(--ch-orange), var(--ch-kidz-pink));
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.ch-content-step:nth-child(2) .ch-content-step-num,
.ch-kidz-step:nth-child(2) .ch-kidz-step-num {
	background: linear-gradient(135deg, var(--ch-blue), var(--ch-kidz-purple));
	box-shadow: 0 4px 12px rgba(21, 101, 168, 0.35);
}

.ch-content-step:nth-child(3) .ch-content-step-num,
.ch-kidz-step:nth-child(3) .ch-kidz-step-num {
	background: linear-gradient(135deg, var(--ch-kidz-green), #059669);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.ch-content-step h4,
.ch-kidz-step h4 {
	font-family: var(--ch-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ch-text);
	margin: 12px 0 10px;
}

.ch-content-step p,
.ch-kidz-step p {
	margin: 0;
	font-size: 0.98rem;
	color: var(--ch-muted);
	line-height: 1.7;
}

.ch-content-banner,
.ch-kidz-promise {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 28px 32px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--ch-navy-dark), var(--ch-navy));
	color: #fff;
	box-shadow: var(--ch-shadow-lg);
}

.ch-content-banner-icon,
.ch-kidz-promise-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.ch-content-banner h3,
.ch-kidz-promise h3 {
	font-family: var(--ch-display);
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 6px;
	color: #fff;
}

.ch-content-banner p,
.ch-kidz-promise p {
	margin: 0;
	opacity: 0.92;
	font-size: 1rem;
}

.ch-content-cta,
.ch-kidz-youtube {
	text-align: center;
	padding: 40px 32px;
	border-radius: 18px;
	background: linear-gradient(135deg, #fef2f2, #fff7ed);
	border: 1px solid #fed7aa;
}

.ch-content-cta h3,
.ch-kidz-youtube h3 {
	font-family: var(--ch-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ch-navy);
	margin: 0 0 10px;
}

.ch-content-cta p,
.ch-kidz-youtube p {
	margin: 0 0 20px;
	color: var(--ch-muted);
}

.ch-content-cta p:last-child,
.ch-kidz-youtube p:last-child {
	margin-bottom: 0;
}

.ch-content-btn--youtube,
.ch-kidz-youtube-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 12px;
	background: #ff0000;
	color: #fff !important;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
	transition: transform 0.2s, box-shadow 0.2s;
	vertical-align: middle;
}

.ch-content-btn--youtube::before,
.ch-kidz-youtube-btn::before {
	content: "";
	display: inline-block;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31.5 31.5 0 0 0 0 12a31.5 31.5 0 0 0 .6 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31.5 31.5 0 0 0 24 12a31.5 31.5 0 0 0-.5-5.8zM9.75 15.02V8.98L15.5 12l-5.75 3.02z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31.5 31.5 0 0 0 0 12a31.5 31.5 0 0 0 .6 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31.5 31.5 0 0 0 24 12a31.5 31.5 0 0 0-.5-5.8zM9.75 15.02V8.98L15.5 12l-5.75 3.02z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ch-content-btn--youtube:hover,
.ch-kidz-youtube-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
	color: #fff !important;
}

/* Content variants & extras */
.ch-content-hero--c {
	background: linear-gradient(135deg, #1e3a5f 0%, var(--ch-navy) 55%, var(--ch-blue) 100%);
}

.ch-content-hero--cpp {
	background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, var(--ch-blue) 100%);
}

.ch-content-hero--java {
	background: linear-gradient(135deg, #9a3412 0%, #ea580c 45%, #f59e0b 100%);
}

.ch-content-hero--python {
	background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #facc15 100%);
}

.ch-content-hero--html {
	background: linear-gradient(135deg, #c2410c 0%, #ea580c 50%, #f97316 100%);
}

.ch-content-hero--js {
	background: linear-gradient(135deg, #854d0e 0%, #ca8a04 50%, #1c1917 100%);
}

.ch-content-hero--php {
	background: linear-gradient(135deg, #3730a3 0%, #6366f1 55%, #818cf8 100%);
}

.ch-content-hero--basics {
	background: linear-gradient(135deg, #0e7490 0%, var(--ch-teal) 50%, #22d3ee 100%);
}

.ch-content-hero--marketing {
	background: linear-gradient(135deg, #be185d 0%, #db2777 45%, #f472b6 100%);
}

.ch-content-hero--english {
	background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #93c5fd 100%);
}

.ch-content-hero--tally {
	background: linear-gradient(135deg, #14532d 0%, #15803d 50%, #4ade80 100%);
}

.ch-content-hero--wordpress {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #60a5fa 100%);
}

.ch-content-hero--mern {
	background: linear-gradient(135deg, #0f766e 0%, var(--ch-teal) 45%, #059669 100%);
}

.ch-content-hero--placement {
	background: linear-gradient(135deg, var(--ch-navy-dark) 0%, #7c2d12 50%, var(--ch-orange) 100%);
}

.ch-content-hero--dsa {
	background: linear-gradient(135deg, var(--ch-navy-dark) 0%, var(--ch-navy) 50%, var(--ch-teal) 100%);
}

.ch-content-hero--dsa::before {
	background:
		radial-gradient(circle at 20% 25%, rgba(249, 115, 22, 0.22), transparent 42%),
		radial-gradient(circle at 80% 70%, rgba(13, 148, 136, 0.28), transparent 45%);
}

.ch-content-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ch-content-stat {
	background: rgba(16, 18, 24, 0.72);
	border: 1px solid var(--ch-border);
	border-radius: var(--ch-radius);
	padding: 20px 16px;
	text-align: center;
	box-shadow: var(--ch-shadow);
}

.ch-content-stat strong {
	display: block;
	font-family: var(--ch-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ch-text);
	margin-bottom: 4px;
	line-height: 1.2;
	word-break: keep-all;
}

.ch-content-stat span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--ch-muted);
	line-height: 1.35;
	word-break: keep-all;
}

.ch-content-section-title {
	font-family: var(--ch-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 800;
	color: var(--ch-text);
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--ch-orange);
}

.ch-content-topics {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 14px;
	margin-bottom: 8px;
}

.ch-content-topic {
	display: block;
	text-align: center;
	padding: 20px 14px;
	background: #fff;
	border: 1px solid var(--ch-border);
	border-radius: 14px;
	text-decoration: none !important;
	color: inherit;
	box-shadow: var(--ch-shadow);
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ch-content-topic:hover {
	transform: translateY(-3px);
	border-color: var(--ch-blue);
	box-shadow: var(--ch-shadow-lg);
	color: inherit;
}

.ch-content-topic-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 auto 10px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
	color: #fff;
	font-family: var(--ch-display);
	font-size: 1.1rem;
	font-weight: 800;
}

.ch-content-topic-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--ch-navy);
	line-height: 1.35;
}

.ch-content-faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

details.ch-content-faq {
	background: rgba(9, 10, 11, 0.55);
	border: 1px solid var(--ch-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--ch-shadow);
}

details.ch-content-faq summary {
	padding: 16px 20px;
	font-family: var(--ch-display);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ch-text);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

details.ch-content-faq summary::-webkit-details-marker {
	display: none;
}

details.ch-content-faq summary::after {
	content: "+";
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ch-teal);
	flex-shrink: 0;
}

details.ch-content-faq[open] summary {
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid var(--ch-border);
}

details.ch-content-faq[open] summary::after {
	content: "−";
	color: var(--ch-orange);
}

.ch-content-faq-body {
	padding: 16px 20px 20px;
	color: var(--ch-muted);
}

.ch-content-faq-body p {
	margin: 0 0 12px;
}

.ch-content-faq-body p:last-child {
	margin-bottom: 0;
}

.ch-content-faq-body ul {
	margin: 0 0 12px;
	padding-left: 1.3em;
}

.ch-content-faq-body li {
	margin-bottom: 6px;
}

.ch-content-code {
	background: #0f172a;
	color: #e2e8f0;
	border-radius: 12px;
	padding: 18px 20px;
	overflow-x: auto;
	font-family: ui-monospace, "Cascadia Code", "Source Code Pro", monospace;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 12px 0 0;
	white-space: pre-wrap;
	word-break: break-word;
}

.ch-content-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.ch-content-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--ch-bg);
	color: var(--ch-navy);
	border: 1px solid var(--ch-border);
}

.ch-content-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 26px;
	border-radius: 12px;
	background: var(--ch-navy);
	color: #fff !important;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none !important;
	box-shadow: var(--ch-shadow);
	transition: transform 0.2s, background 0.2s;
}

.ch-content-btn:hover {
	background: var(--ch-blue);
	color: #fff !important;
	transform: translateY(-2px);
}

.ch-content-btn--accent {
	background: var(--ch-orange);
}

.ch-content-btn--accent:hover {
	background: var(--ch-orange-dark);
}

.ch-content-link-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 18px;
}

.ch-content-link-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 22px;
	background: rgba(9, 10, 11, 0.55);
	border: 1px solid var(--ch-border);
	border-radius: 16px;
	text-decoration: none !important;
	color: inherit;
	box-shadow: var(--ch-shadow);
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
	min-height: 100%;
}

.ch-content-link-card:hover {
	transform: translateY(-4px);
	border-color: var(--ch-blue);
	box-shadow: var(--ch-shadow-lg);
	color: inherit;
}

.ch-content-link-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--ch-navy), var(--ch-blue));
	color: #fff;
	font-family: var(--ch-display);
	font-size: 1.25rem;
	font-weight: 800;
	flex-shrink: 0;
}

.ch-content-link-card h4 {
	font-family: var(--ch-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ch-text);
	margin: 0;
	line-height: 1.35;
}

.ch-content-link-card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--ch-muted);
	line-height: 1.6;
	flex-grow: 1;
}

.ch-content-link-card-cta {
	font-size: 13px;
	font-weight: 700;
	color: var(--ch-teal);
}

.ch-content-two-col {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.ch-content-list-card ul {
	margin: 0;
	padding-left: 1.25em;
}

.ch-content-list-card li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.ch-content-list-card li:last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.ch-content-steps,
	.ch-kidz-steps {
		grid-template-columns: 1fr;
	}

	.ch-content-banner,
	.ch-kidz-promise {
		flex-direction: column;
		text-align: center;
	}

	.ch-content-hero,
	.ch-kidz-hero {
		padding: 36px 22px;
	}

	.ch-content-card,
	.ch-kidz-card {
		padding: 24px 20px;
	}

	.ch-content-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ch-content-two-col {
		grid-template-columns: 1fr;
	}
}
