/* ===== Dark Premium Theme â€” Udemy Page ===== */


/* Override light theme variables with dark premium */
:root {
  --bg-1: #0A0A0A;
  --bg-2: #111111;
  --bg-card: rgba(255,255,255,0.03);
  --fg-1: #FFFFFF;
  --fg-2: #E4E4E7;
  --fg-3: #A1A1AA;
  --fg-4: #71717A;
  --border-1: rgba(255,255,255,0.1);
  --border-2: rgba(255,255,255,0.18);
  --gray-50: rgba(255,255,255,0.03);
  --gray-100: rgba(255,255,255,0.07);
  --gray-300: rgba(255,255,255,0.18);
  --white: #0f0f0f;

  --cnj-blue-700: #2563EB;
  --cnj-blue-600: #3b82f6;
  --cnj-blue-500: #60a5fa;
  --cnj-blue-300: #93c5fd;
  --cnj-blue-200: #bfdbfe;
  --cnj-blue-100: rgba(37,99,235,0.18);
  --cnj-gold-500: #fbbf24;
  --cnj-green-100: rgba(52,211,153,0.18);
  --cnj-red-100: rgba(239,68,68,0.18);
  --cnj-red-700: #f87171;

  --action-primary-bg: #2563EB;
  --action-primary-fg: #fff;
  --action-primary-bg-hover: #3b82f6;
  --action-secondary-fg: #E4E4E7;
  --action-secondary-border: rgba(255,255,255,0.15);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', sans-serif;

  --shadow-xs: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-sm: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.6);
  --shadow-focus-ring: 0 0 0 3px rgba(37,99,235,0.4);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --nav-h: 72px;
  --sidebar-w: 240px;
  --page-max: 1320px;
  --t-base: 0.25s ease;
  --t-fast: 0.15s ease;
}

/* ===== Shared nav â€” dark overrides for this page ===== */
.site-topbar {
  background: rgba(10,10,10,0.95) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  color: rgba(255,255,255,0.55) !important;
}
.site-nav {
  background: rgba(10,10,10,0.8) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: none !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.site-nav__links a { color: #A1A1AA !important; border-bottom-color: transparent !important; }
.site-nav__links a:hover { color: #fff !important; }
.site-nav__links a.active {
  color: #60a5fa !important;
  border-bottom-color: #2563EB !important;
}
.site-nav__menu-btn { color: #A1A1AA !important; }
.site-nav__mobile {
  background: rgba(10,10,10,0.97) !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
}
.site-nav__mobile a { color: #A1A1AA !important; border-bottom-color: rgba(255,255,255,0.07) !important; }
.site-nav__mobile a.active { color: #60a5fa !important; }

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  padding-top: 0 !important;
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Buttons ===== */
.cnj-btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color var(--t-base), color var(--t-base),
    border-color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
}
.cnj-btn:active { transform: translateY(1px); }

.cnj-btn--primary {
  background: #2563EB;
  color: #fff;
  box-shadow: 0 0 20px rgba(37,99,235,0.3);
}
.cnj-btn--primary:hover {
  background: #3b82f6;
  box-shadow: 0 0 30px rgba(37,99,235,0.5);
  transform: translateY(-1px);
}

.cnj-btn--secondary {
  background: rgba(255,255,255,0.05);
  color: #E4E4E7;
  border-color: rgba(255,255,255,0.12);
}
.cnj-btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
}
.cnj-btn--secondary.is-saved {
  background: rgba(37,99,235,0.2);
  color: #93c5fd;
  border-color: rgba(37,99,235,0.4);
}

.cnj-btn--ghost { color: #93c5fd; }
.cnj-btn--ghost:hover { background: rgba(37,99,235,0.1); }

.cnj-btn--ghost-inverse {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.cnj-btn--ghost-inverse:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.cnj-btn--lg { padding: 13px 24px; font-size: 15px; }

/* ===== Top nav ===== */
.cnj-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cnj-nav__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cnj-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.cnj-brand em { color: #fbbf24; font-style: normal; }
.cnj-brand img { height: 46px; width: auto; display: block; }

.cnj-nav__search {
  flex: 1;
  position: relative;
  max-width: 480px;
}
.cnj-nav__search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #71717A;
}
.cnj-nav__search input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px 10px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-family: inherit;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: border-color var(--t-base), background-color var(--t-base), box-shadow var(--t-base);
}
.cnj-nav__search input::placeholder { color: #71717A; }
.cnj-nav__search input:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
}

.cnj-nav__links {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.cnj-nav__links a {
  color: #A1A1AA;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--t-base), background var(--t-base);
}
.cnj-nav__links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.cnj-nav__links a.active {
  color: #fff;
  background: rgba(37,99,235,0.15);
  font-weight: 600;
}

/* ===== Breadcrumbs ===== */
.cnj-crumbs {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 13px;
  color: #71717A;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cnj-crumbs > * { white-space: nowrap; }
.cnj-crumbs a { color: #71717A; text-decoration: none; transition: color var(--t-base); }
.cnj-crumbs a:hover { color: #93c5fd; }
.cnj-crumbs__sep { color: rgba(255,255,255,0.2); }

/* ===== Provider hero ===== */

/* Keyframes */
@keyframes cnj-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(120px, 60px) scale(1.15); }
}
@keyframes cnj-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-100px, -80px) scale(1.1); }
}
@keyframes cnj-float-c {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-30%, -60%) scale(1.2); }
}
@keyframes cnj-rise {
  0%   { transform: translateY(110vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-10vh) translateX(var(--drift)); opacity: 0; }
}
@keyframes cnj-ping {
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

.cnj-hero {
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Gradient mesh orbs */
.cnj-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cnj-hero__orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  will-change: transform;
}
.cnj-hero__orb--blue {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #2563EB, transparent 60%);
  top: -200px; left: -100px;
  opacity: 0.5;
  animation: cnj-float-a 18s ease-in-out infinite;
}
.cnj-hero__orb--purple {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7C3AED, transparent 60%);
  bottom: -200px; right: -100px;
  opacity: 0.5;
  animation: cnj-float-b 22s ease-in-out infinite;
}
.cnj-hero__orb--orange {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f5a810, transparent 60%);
  top: 30%; left: 50%;
  opacity: 0.35;
  animation: cnj-float-c 26s ease-in-out infinite;
}

/* Dot grid */
.cnj-hero__grid {
  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: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}

/* Particles */
.cnj-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cnj-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.62;
  animation: cnj-rise linear infinite;
}

/* Noise */
.cnj-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cnj-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 120px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge */
.cnj-hero__badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.cnj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  color: #d4d4d8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Headline */
.cnj-hero__headline {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(40px, 7vw, 80px);
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cnj-hero__gradient-text {
  background: linear-gradient(
    90deg,
    #0a2b87  0%,
    #1651a3 17%,
    #2b8fca 37%,
    #43b7e8 57%,
    #ff9800 72%,
    #ff9800 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cnj-hero__headline-underline {
  position: relative;
  display: inline-block !important;
  color: #fff;
}
.cnj-hero__headline-underline svg {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 12px;
}
.cnj-btn--watch {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
}

/* Sub text */
.cnj-hero__sub {
  max-width: 620px;
  font-size: clamp(15px, 2vw, 18px);
  color: #A1A1AA;
  line-height: 1.6;
  margin: 0 0 28px;
  padding: 0 16px;
}

/* Provider chips */
.cnj-hero__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.cnj-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: #A1A1AA;
  transition: border-color var(--t-base), background var(--t-base), color var(--t-base);
}
.cnj-hero__chip:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); color: #fff; }

/* CTAs */
.cnj-hero__ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Impact band */
.cnj-impact-band {
  width: 100%;
  max-width: 960px;
  margin-top: -8px;
}
.cnj-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .cnj-impact-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.cnj-impact-card {
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.5s ease, transform 0.5s ease;
}
.cnj-impact-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.cnj-impact-card__value {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(90deg, #0a2b87 0%, #1651a3 17%, #2b8fca 37%, #43b7e8 57%, #ff9800 72%, #ff9800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}
.cnj-impact-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717A;
  font-weight: 500;
}

/* Hero responsive */
@media (max-width: 768px) {
  .cnj-hero__inner { padding: 100px 20px 40px; }
  .cnj-hero__ctas { flex-direction: column; }
  .cnj-hero__ctas .cnj-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ===== Layout ===== */
.cnj-page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 32px;
  align-items: start;
}
.cnj-list-h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
}

/* ===== Search bar ===== */
.courses-search { margin-bottom: 20px; }
.courses-search__inner {
  position: relative;
  display: flex;
  align-items: center;
}
.courses-search__inner svg {
  position: absolute;
  left: 16px;
  color: #71717A;
  pointer-events: none;
}
.courses-search__inner input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-family: inherit;
  color: #fff;
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.courses-search__inner input::placeholder { color: #52525b; }
.courses-search__inner input:focus {
  outline: none;
  background: rgba(255,255,255,0.07);
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

/* ===== Sidebar ===== */
.cnj-side {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  align-self: start;
  max-height: calc(100vh - var(--nav-h) - 32px);
  overflow-y: auto;
  font-size: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.cnj-side__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.cnj-side__top h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Sora', sans-serif;
}
.cnj-side__reset {
  background: transparent;
  border: none;
  color: #60a5fa;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  transition: color var(--t-base);
}
.cnj-side__reset:hover { color: #93c5fd; text-decoration: underline; }

.cnj-fgrp {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cnj-fgrp:last-child { border-bottom: none; }
.cnj-fgrp__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 2px 0;
  font-size: 12px;
  font-weight: 700;
  color: #A1A1AA;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color var(--t-base);
}
.cnj-fgrp__head:hover { color: #fff; }
.cnj-fgrp__list { margin-top: 10px; display: flex; flex-direction: column; gap: 1px; }
.cnj-fopt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  color: #A1A1AA;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base);
}
.cnj-fopt:hover { background: rgba(255,255,255,0.05); color: #fff; }
.cnj-fopt input { accent-color: #2563EB; width: 15px; height: 15px; flex-shrink: 0; }
.cnj-fopt__name {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.cnj-fopt__count {
  margin-left: auto;
  color: #52525b;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.cnj-side__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563EB;
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 8px;
  vertical-align: middle;
}
.cnj-side__toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  cursor: pointer;
  align-items: center;
  gap: 4px;
  font-family: inherit;
}

/* ===== Toolbar ===== */
.cnj-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cnj-toolbar__count { color: #71717A; font-size: 14px; white-space: nowrap; }
.cnj-toolbar__count strong { color: #fff; font-weight: 700; }
.cnj-toolbar__sort {
  font-size: 14px;
  color: #A1A1AA;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cnj-toolbar__sort select {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  padding: 7px 32px 7px 14px;
  min-width: 160px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2393c5fd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--t-base), background var(--t-base);
}
.cnj-toolbar__sort select:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
.cnj-toolbar__sort select option { background: #1a1a2e; color: #fff; }

/* ===== Course grid ===== */
.cnj-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ===== Course card ===== */
.cnj-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  padding: 0;
  position: relative;
}
.cnj-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.cnj-card__banner {
  position: relative;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.cnj-banner__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}
.cnj-banner__circle-lg {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 38px solid rgba(255,255,255,0.07);
  pointer-events: none;
  z-index: 0;
}
.cnj-banner__circle-sm {
  position: absolute;
  right: 55px;
  top: -35px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 0;
}
.cnj-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 14px 14px;
  gap: 5px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 65%);
}
.cnj-banner__domain-tag {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 2px;
}
.cnj-banner__title {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1.28;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  letter-spacing: -0.01em;
}
.cnj-banner__by {
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cnj-card__rank-pill {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.cnj-card__free-pill {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  background: rgba(52,211,153,0.22);
  border: 1px solid rgba(52,211,153,0.4);
  color: #6ee7b7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.cnj-card__body {
  padding: 18px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cnj-card__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.cnj-card__ptype {
  font-size: 10px; font-weight: 600;
  color: #93c5fd;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cnj-card__level {
  font-size: 10px; font-weight: 600;
  color: #c4b5fd;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cnj-card__title {
  margin: 0 0 6px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.cnj-card__title a { color: #fff; text-decoration: none; transition: color var(--t-base); }
.cnj-card__title a:hover { color: #93c5fd; }

.cnj-card__byline {
  font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
}
.cnj-card__byline strong { color: #d4d4d8; font-weight: 600; }
.cnj-card__via { color: rgba(255,255,255,0.4); }
.cnj-card__rank { display: none; }

.cnj-card__taxonomy { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; }
.cnj-card__domain {
  font-size: 11px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  color: var(--cnj-blue-300); background: var(--cnj-blue-100);
  border: 1px solid rgba(37,99,235,0.25); border-radius: var(--radius-pill); padding: 2px 9px;
}
.cnj-card__subdomain {
  font-size: 11px; font-weight: 500; color: var(--fg-3);
  background: var(--gray-100); border: 1px solid var(--border-1);
  border-radius: var(--radius-pill); padding: 2px 9px;
}

.cnj-card__desc {
  font-size: 13px; color: rgba(255,255,255,0.6); margin: 0 0 12px; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.cnj-card__meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.55); margin-top: auto;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06);
}
.cnj-card__rating { display: inline-flex; align-items: center; gap: 5px; }
.cnj-card__rating-num { color: #e4e4e7; font-weight: 700; font-size: 13px; }
.cnj-card__rating-count { color: rgba(255,255,255,0.45); font-size: 11px; }
.cnj-card__dot { color: rgba(255,255,255,0.12); }
.cnj-card__chip { display: inline-flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.55); }

.cnj-tag { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.cnj-tag--free { background: rgba(52,211,153,0.15); color: #6ee7b7; border: 1px solid rgba(52,211,153,0.3); }
.cnj-tag--cert { background: rgba(37,99,235,0.15); color: #93c5fd; border: 1px solid rgba(37,99,235,0.25); }
.cnj-tag--sale { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }

.cnj-card__cta {
  padding: 12px 18px 18px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}
.cnj-card__cta .cnj-btn--primary {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  padding: 9px 20px;
}
.cnj-card__cta .cnj-btn--secondary {
  padding: 9px 14px;
  font-size: 13px;
}

/* ===== Reviews ===== */
.cnj-reviews { margin-top: 48px; padding: 36px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; }
.cnj-reviews__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.cnj-reviews__head h2 { margin: 0; font-size: 20px; font-weight: 700; font-family: 'Sora', sans-serif; letter-spacing: -0.03em; color: #fff; }
.cnj-reviews__head a { font-size: 13px; font-weight: 600; color: #60a5fa; text-decoration: none; transition: color var(--t-base); }
.cnj-reviews__head a:hover { color: #93c5fd; text-decoration: underline; }
.cnj-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cnj-review {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--t-base), transform var(--t-base);
}
.cnj-review:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.cnj-review__body { font-size: 14px; color: #A1A1AA; line-height: 1.6; margin: 0; flex: 1; }
.cnj-review__by { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07); }
.cnj-review__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #fff; font-weight: 700; font-family: 'Sora', sans-serif;
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.cnj-review__author { font-size: 13px; font-weight: 600; color: #fff; }
.cnj-review__course { font-size: 12px; color: #71717A; }

/* ===== Footer ===== */
.cnj-foot { background: #070707; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 32px; }
.cnj-foot__inner { max-width: var(--page-max); margin: 0 auto; padding: 48px 24px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.cnj-foot__brand img { height: 44px; margin-bottom: 12px; }
.cnj-foot__brand p { font-size: 13px; color: #71717A; margin: 0 0 10px; max-width: 380px; line-height: 1.55; }
.cnj-foot__disclosure { font-size: 12px; color: #52525b; font-style: italic; }
.cnj-foot__col h5 { margin: 0 0 12px; font-size: 11px; font-weight: 700; color: #A1A1AA; text-transform: uppercase; letter-spacing: 0.1em; }
.cnj-foot__col a { display: block; font-size: 14px; color: #71717A; text-decoration: none; padding: 4px 0; transition: color var(--t-base); }
.cnj-foot__col a:hover { color: #93c5fd; }
.cnj-foot__bottom { max-width: var(--page-max); margin: 0 auto; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; font-size: 12px; color: #52525b; }

/* ===== Responsive ===== */
@media (max-width: 1024px) { .cnj-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
  .cnj-nav__links { display: none; }
  .cnj-page { grid-template-columns: 1fr; }
  .cnj-side { position: static; }
  .cnj-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .cnj-foot__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cnj-hero__inner { padding: 24px 16px 0; }
  .cnj-hero__ctas { flex-direction: column; }
  .cnj-crumbs { padding: 12px 16px 0; font-size: 12px; }
  .cnj-page { padding: 20px 16px 40px; gap: 16px; }
  .cnj-list-h2 { font-size: 18px; }
  .cnj-list { grid-template-columns: 1fr; gap: 14px; }
  .cnj-side { padding: 16px; }
  .cnj-side__toggle { display: inline-flex; }
  .cnj-side__panel { display: none; }
  .cnj-side__panel.is-open { display: block; }
  .cnj-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cnj-toolbar__sort { width: 100%; }
  .cnj-toolbar__sort select { min-width: 0; flex: 1; width: 100%; }
  .cnj-pager { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .cnj-reviews { padding: 20px 16px; margin-top: 28px; }
  .cnj-reviews__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cnj-reviews__grid { grid-template-columns: 1fr; }
  .cnj-foot__inner { grid-template-columns: 1fr; padding: 32px 16px 24px; gap: 24px; }
  .cnj-foot__bottom { flex-direction: column; align-items: center; gap: 6px; text-align: center; padding: 16px; }
}

