/* nsl_theme.css — Never Stop Learning Theme */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

.nsl-site {
  --nsl-bg:          #0D0F1A;
  --nsl-bg2:         #13162A;
  --nsl-card:        #181C30;
  --nsl-accent:      #aa1b45;
  --nsl-blue:        #3B8BEB;
  --nsl-sky:         #5BC4F5;
  --nsl-gold:        #C9A23A;
  --nsl-white:       #F4F4F6;
  --nsl-muted:       #8A8FA8;
  --nsl-border:      rgba(255, 255, 255, 0.07);
  --nsl-card-border: rgba(255, 255, 255, 0.06);
  --nsl-display:     'Barlow Condensed', sans-serif;
  --nsl-body:        'Inter', sans-serif;
}

/* ============================================================
   BASE / RESET
   ============================================================ */

.nsl-site * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nsl-site {
  background:    var(--nsl-bg);
  color:         var(--nsl-white);
  font-family:   var(--nsl-body);
  overflow-x:    hidden;
  min-height:    100vh;
}

.nsl-site ::-webkit-scrollbar {
  width: 6px;
}

.nsl-site ::-webkit-scrollbar-track {
  background: var(--nsl-bg);
}

.nsl-site ::-webkit-scrollbar-thumb {
  background:    #2A2F4A;
  border-radius: 3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nsl-nav {
  position:        fixed;
  top:             0;
  left:            0;
  right:           0;
  z-index:         100;
  height:          68px;
  padding:         0 48px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  background:      transparent;
  border-bottom:   1px solid transparent;
  transition:      all 0.3s ease;
}

.nsl-nav.scrolled {
  background:    rgba(13, 15, 26, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nsl-border);
}

.nsl-nav-logo {
  display:         flex;
  align-items:     center;
  gap:             10px;
  text-decoration: none;
}

.nsl-nav-logo img {
  height:    44px;
  width:     auto;
}

.nsl-nav-links {
  display:    flex;
  gap:        28px;
  list-style: none;
}

.nsl-nav-links a {
  color:           var(--nsl-muted);
  font-size:       13px;
  font-weight:     500;
  letter-spacing:  0.06em;
  text-transform:  uppercase;
  text-decoration: none;
  transition:      color 0.2s;
}

.nsl-nav-links a:hover {
  color: var(--nsl-white);
}

.nsl-nav-cta {
  background:      var(--nsl-accent);
  color:           #fff;
  padding:         8px 20px;
  border-radius:   6px;
  font-size:       13px;
  font-weight:     600;
  letter-spacing:  0.04em;
  text-transform:  uppercase;
  font-family:     var(--nsl-display);
  text-decoration: none;
  transition:      opacity 0.2s;
}

.nsl-nav-cta:hover {
  opacity: 0.85;
}

.nsl-nav-mobile-toggle {
  display:          none;
  background:       transparent;
  border:           1px solid var(--nsl-border);
  border-radius:    6px;
  color:            var(--nsl-white);
  padding:          6px 10px;
  cursor:           pointer;
  font-size:        18px;
  line-height:      1;
  transition:       border-color 0.2s;
}

.nsl-nav-mobile-toggle:hover {
  border-color: var(--nsl-accent);
}

.nsl-nav-mobile-menu {
  display:    none;
  position:   absolute;
  top:        68px;
  left:       0;
  right:      0;
  background: #13162A;
  z-index:    99;
}

.nsl-nav-mobile-menu.open {
  display:        flex;
  flex-direction: column;
  padding:        20px;
}

.nsl-nav-mobile-menu a {
  color:           var(--nsl-muted);
  font-size:       14px;
  font-weight:     500;
  letter-spacing:  0.06em;
  text-transform:  uppercase;
  text-decoration: none;
  padding:         12px 0;
  border-bottom:   1px solid var(--nsl-border);
  transition:      color 0.2s;
}

.nsl-nav-mobile-menu a:last-child {
  border-bottom: none;
}

.nsl-nav-mobile-menu a:hover {
  color: var(--nsl-white);
}

@media (max-width: 768px) {
  .nsl-nav {
    padding: 0 20px;
  }

  .nsl-nav-links {
    display: none;
  }

  .nsl-nav-cta {
    display: none;
  }

  .nsl-nav-mobile-toggle {
    display: block;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.nsl-hero {
  min-height:       90vh;
  display:          flex;
  align-items:      center;
  padding-top:      104px;
  position:         relative;
  overflow:         hidden;
  background-color: #0D0F1A;
  background-size:  60px 60px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* LED glow behind the logo (right column) */
.nsl-hero::before {
  content:        '';
  position:       absolute;
  top:            0;
  right:          0;
  width:          50%;
  height:         100%;
  background:     radial-gradient(ellipse 80% 70% at 70% 50%, rgba(59, 139, 235, 0.18) 0%, rgba(170, 27, 69, 0.10) 50%, transparent 75%);
  pointer-events: none;
  z-index:        0;
}

.nsl-hero-inner {
  position:              relative;
  z-index:               1;
  max-width:             1280px;
  margin:                0 auto;
  padding:               80px 48px;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   60px;
  align-items:           center;
  width:                 100%;
}

.nsl-hero-left {
  display:        flex;
  flex-direction: column;
  gap:            24px;
}

.nsl-hero-eyebrow {
  font-family:    var(--nsl-display);
  font-size:      13px;
  font-weight:    600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--nsl-accent);
  display:        flex;
  align-items:    center;
  gap:            12px;
}

.nsl-hero-eyebrow::before {
  content:    '';
  width:      32px;
  height:     2px;
  background: var(--nsl-accent);
  flex-shrink: 0;
}

.nsl-hero-title {
  font-family:     var(--nsl-display);
  font-weight:     900;
  font-size:       clamp(4rem, 8vw, 7rem);
  line-height:     0.9;
  letter-spacing:  -0.02em;
  color:           var(--nsl-white);
  text-transform:  uppercase;
}

.nsl-hero-title .nsl-accent {
  color: var(--nsl-accent);
}

.nsl-hero-subtitle {
  font-family:    var(--nsl-display);
  font-weight:    700;
  font-size:      clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.05em;
  color:          var(--nsl-muted);
  text-transform: uppercase;
}

.nsl-hero-desc {
  font-size:  16px;
  color:      var(--nsl-muted);
  line-height: 1.6;
  max-width:  480px;
}

.nsl-hero-ctas {
  display:     flex;
  align-items: center;
  gap:         16px;
  flex-wrap:   wrap;
}

.nsl-btn-primary {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  background:      var(--nsl-accent);
  color:           #fff;
  padding:         13px 28px;
  border-radius:   6px;
  font-family:     var(--nsl-display);
  font-weight:     700;
  font-size:       14px;
  letter-spacing:  0.07em;
  text-transform:  uppercase;
  text-decoration: none;
  transition:      opacity 0.2s;
  white-space:     nowrap;
}

.nsl-btn-primary:hover { opacity: 0.85; color: #fff; }

.nsl-btn-ghost {
  display:         inline-flex;
  align-items:     center;
  background:      transparent;
  color:           rgba(244, 244, 246, 0.6);
  padding:         13px 4px;
  font-family:     var(--nsl-display);
  font-weight:     600;
  font-size:       14px;
  letter-spacing:  0.07em;
  text-transform:  uppercase;
  text-decoration: none;
  transition:      color 0.2s;
}

.nsl-btn-ghost:hover { color: var(--nsl-white); }

.nsl-hero-platforms {
  display:     flex;
  align-items: center;
  gap:         10px;
  flex-wrap:   wrap;
  margin-top:  4px;
}

/* Labeled colored platform buttons (hero) */
.nsl-platform-pill {
  display:         inline-flex;
  align-items:     center;
  gap:             7px;
  padding:         8px 14px;
  border-radius:   6px;
  font-size:       12px;
  font-weight:     600;
  letter-spacing:  0.03em;
  text-decoration: none;
  border:          1px solid transparent;
  transition:      opacity 0.2s;
  white-space:     nowrap;
}

.nsl-platform-pill:hover { opacity: 0.75; }

.nsl-platform-pill--youtube  { background: rgba(255, 0, 0, 0.14);     color: #ff4e4e;  border-color: rgba(255, 0, 0, 0.22); }
.nsl-platform-pill--spotify  { background: rgba(30, 215, 96, 0.12);   color: #1ED760;  border-color: rgba(30, 215, 96, 0.22); }
.nsl-platform-pill--apple    { background: rgba(200, 109, 215, 0.12); color: #C86DD7;  border-color: rgba(200, 109, 215, 0.22); }
.nsl-platform-pill--riverside{ background: rgba(59, 139, 235, 0.12);  color: #3B8BEB;  border-color: rgba(59, 139, 235, 0.22); }


.nsl-hero-right {
  display:         flex;
  align-items:     center;
  justify-content: center;
}

/* Circular logo frame with glow ring */
.nsl-hero-logo-wrap {
  width:         500px;
  height:        500px;
  flex-shrink:   0;
}

.nsl-hero-logo-wrap img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}


@media (max-width: 768px) {
  .nsl-hero-inner {
    grid-template-columns: 1fr;
    gap:                   40px;
    padding:               60px 20px 40px;
  }

  .nsl-hero-right {
    order: -1;
  }

  .nsl-hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}

/* ============================================================
   SECTION WRAPPER
   ============================================================ */

.nsl-section {
  padding: 80px 0;
}

.nsl-section--alt {
  background: var(--nsl-bg2);
}

.nsl-container {
  max-width: 1280px;
  margin:    0 auto;
  padding:   0 48px;
}

.nsl-section-header {
  display:         flex;
  justify-content: space-between;
  align-items:     flex-end;
  margin-bottom:   48px;
}

.nsl-section-title {
  font-family:    var(--nsl-display);
  font-weight:    900;
  font-size:      clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--nsl-white);
}

.nsl-section-link {
  font-size:       14px;
  font-weight:     500;
  color:           var(--nsl-muted);
  text-decoration: none;
  display:         flex;
  align-items:     center;
  gap:             6px;
  transition:      color 0.2s;
}

.nsl-section-link:hover {
  color: var(--nsl-white);
}

@media (max-width: 640px) {
  .nsl-container {
    padding: 0 20px;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.nsl-about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   64px;
  align-items:           start;
}

@media (max-width: 768px) {
  .nsl-about-grid {
    grid-template-columns: 1fr;
    gap:                   32px;
  }
}

.nsl-about-tagline {
  font-family:    var(--nsl-display);
  font-weight:    900;
  font-size:      clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height:    1.0;
  color:          var(--nsl-white);
}

.nsl-about-tagline em {
  color:      var(--nsl-accent);
  font-style: normal;
}

.nsl-about-eyebrow {
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--nsl-accent);
  margin-bottom:  20px;
}

.nsl-about-body {
  font-size:   16px;
  line-height: 1.8;
  color:       rgba(244, 244, 246, 0.65);
}

.nsl-about-body p + p { margin-top: 16px; }

.nsl-about-stats {
  display:        grid;
  grid-template-columns: repeat(3, 1fr);
  gap:            32px;
  margin-top:     56px;
  padding-top:    40px;
  border-top:     1px solid var(--nsl-border);
}

@media (max-width: 640px) {
  .nsl-about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.nsl-stat-number {
  font-family:    var(--nsl-display);
  font-weight:    900;
  font-size:      clamp(2rem, 4vw, 3rem);
  color:          var(--nsl-accent);
  line-height:    1;
}

.nsl-stat-label {
  font-size:      11px;
  color:          var(--nsl-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top:     6px;
}

/* ============================================================
   EPISODES — SECTION HEADING ACCENT
   ============================================================ */

.nsl-section-title-accent {
  color: var(--nsl-accent);
}

/* ============================================================
   EPISODES — FEATURED + MINI GRID LAYOUT (HOME)
   ============================================================ */

.nsl-episodes-featured-wrap {
  display:               grid;
  grid-template-columns: 3fr 2fr;
  gap:                   24px;
  align-items:           start;
}

@media (max-width: 900px) {
  .nsl-episodes-featured-wrap {
    grid-template-columns: 1fr;
  }
}

.nsl-featured-card {
  background:     var(--nsl-card);
  border:         1px solid var(--nsl-card-border);
  border-radius:  12px;
  overflow:       hidden;
  display:        flex;
  flex-direction: column;
  transition:     transform 0.2s, border-color 0.2s;
}

.nsl-featured-card:hover {
  transform:    translateY(-4px);
  border-color: rgba(170, 27, 69, 0.4);
}

.nsl-featured-thumb {
  position:    relative;
  aspect-ratio: 16 / 9;
  overflow:    hidden;
  background:  #13162A;
}

.nsl-featured-thumb img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.nsl-featured-card:hover .nsl-featured-thumb img {
  transform: scale(1.04);
}

.nsl-featured-badge {
  position:       absolute;
  top:            12px;
  left:           12px;
  background:     var(--nsl-accent);
  color:          white;
  font-family:    var(--nsl-display);
  font-weight:    800;
  font-size:      10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding:        4px 10px;
  border-radius:  4px;
}

.nsl-featured-num {
  position:       absolute;
  top:            12px;
  right:          12px;
  background:     rgba(13, 15, 26, 0.7);
  backdrop-filter: blur(4px);
  color:          var(--nsl-muted);
  font-family:    var(--nsl-display);
  font-weight:    700;
  font-size:      11px;
  letter-spacing: 0.08em;
  padding:        4px 10px;
  border-radius:  4px;
}

.nsl-featured-body {
  padding:        28px;
  display:        flex;
  flex-direction: column;
  gap:            12px;
}

.nsl-featured-title {
  font-family:    var(--nsl-display);
  font-weight:    900;
  font-size:      clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  line-height:    1.05;
  color:          var(--nsl-white);
  text-decoration: none;
  display:        block;
  transition:     color 0.2s;
}

.nsl-featured-title:hover { color: var(--nsl-accent); }

.nsl-featured-desc {
  font-size:          14px;
  color:              var(--nsl-muted);
  line-height:        1.6;
  display:            -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow:           hidden;
}

.nsl-featured-footer {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-top:      8px;
}

.nsl-featured-cta {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  font-family:     var(--nsl-display);
  font-weight:     700;
  font-size:       13px;
  letter-spacing:  0.07em;
  text-transform:  uppercase;
  color:           var(--nsl-accent);
  text-decoration: none;
  transition:      gap 0.2s;
}

.nsl-featured-cta:hover { gap: 10px; }

/* Mini episode cards (right grid) */
.nsl-episodes-mini-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   16px;
}

@media (max-width: 640px) {
  .nsl-episodes-mini-grid {
    grid-template-columns: 1fr;
  }
}

.nsl-mini-card {
  background:     var(--nsl-card);
  border:         1px solid var(--nsl-card-border);
  border-radius:  10px;
  overflow:       hidden;
  display:        flex;
  flex-direction: column;
  transition:     transform 0.2s, border-color 0.2s;
}

.nsl-mini-card:hover {
  transform:    translateY(-3px);
  border-color: rgba(170, 27, 69, 0.35);
}

.nsl-mini-thumb {
  aspect-ratio: 16 / 9;
  overflow:     hidden;
  background:   #13162A;
  position:     relative;
}

.nsl-mini-thumb img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.nsl-mini-card:hover .nsl-mini-thumb img {
  transform: scale(1.05);
}

.nsl-mini-body {
  padding:        14px;
  display:        flex;
  flex-direction: column;
  gap:            6px;
  flex:           1;
}

.nsl-mini-num {
  font-family:    var(--nsl-display);
  font-weight:    700;
  font-size:      10px;
  letter-spacing: 0.1em;
  color:          var(--nsl-accent);
  text-transform: uppercase;
}

.nsl-mini-title {
  font-family:             var(--nsl-display);
  font-weight:             800;
  font-size:               1rem;
  line-height:             1.2;
  color:                   var(--nsl-white);
  text-decoration:         none;
  display:                 -webkit-box;
  -webkit-box-orient:      vertical;
  -webkit-line-clamp:      2;
  overflow:                hidden;
  transition:              color 0.2s;
}

.nsl-mini-title:hover { color: var(--nsl-accent); }

.nsl-mini-meta {
  font-size:   11px;
  color:       var(--nsl-muted);
  margin-top:  auto;
  padding-top: 6px;
}

/* ============================================================
   EPISODE CARDS GRID (episodes list page)
   ============================================================ */

.nsl-episodes-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:                   24px;
}

@media (min-width: 1024px) {
  .nsl-episodes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.nsl-episode-card {
  background:      var(--nsl-card);
  border:          1px solid var(--nsl-card-border);
  border-radius:   12px;
  overflow:        hidden;
  display:         flex;
  flex-direction:  column;
  cursor:          pointer;
  transition:      transform 0.2s, border-color 0.2s;
}

.nsl-episode-card:hover {
  transform:    translateY(-4px);
  border-color: rgba(170, 27, 69, 0.4);
}

.nsl-episode-card-thumb {
  aspect-ratio: 16 / 9;
  overflow:     hidden;
  background:   #13162A;
  position:     relative;
}

.nsl-episode-card-thumb img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.nsl-episode-card:hover .nsl-episode-card-thumb img {
  transform: scale(1.03);
}

.nsl-episode-card-thumb-placeholder {
  width:            100%;
  height:           100%;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  background:       linear-gradient(135deg, #13162A 0%, #1a1f3a 100%);
}

.nsl-episode-num-badge {
  position:       absolute;
  top:            12px;
  left:           12px;
  background:     var(--nsl-accent);
  color:          white;
  font-family:    var(--nsl-display);
  font-weight:    700;
  font-size:      11px;
  letter-spacing: 0.08em;
  padding:        4px 8px;
  border-radius:  4px;
  text-transform: uppercase;
}

.nsl-episode-card-body {
  padding:        20px;
  display:        flex;
  flex-direction: column;
  gap:            10px;
  flex:           1;
}

.nsl-episode-meta {
  display:     flex;
  align-items: center;
  gap:         8px;
  flex-wrap:   wrap;
}

.nsl-episode-tag {
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.06em;
  padding:        3px 8px;
  border-radius:  20px;
  border:         1px solid var(--nsl-border);
  color:          var(--nsl-muted);
  text-transform: uppercase;
}

.nsl-episode-duration {
  font-size:   11px;
  color:       var(--nsl-muted);
  display:     flex;
  align-items: center;
  gap:         4px;
}

.nsl-episode-card-title {
  font-family:             var(--nsl-display);
  font-weight:             800;
  font-size:               1.25rem;
  line-height:             1.2;
  color:                   var(--nsl-white);
  text-decoration:         none;
  display:                 -webkit-box;
  -webkit-box-orient:      vertical;
  -webkit-line-clamp:      2;
  overflow:                hidden;
  transition:              color 0.2s;
}

.nsl-episode-card-title:hover {
  color: var(--nsl-accent);
}

.nsl-episode-card-desc {
  font-size:          14px;
  color:              var(--nsl-muted);
  line-height:        1.5;
  flex:               1;
  display:            -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow:           hidden;
}

.nsl-episode-card-footer {
  display:          flex;
  align-items:      center;
  justify-content:  space-between;
  padding-top:      12px;
  border-top:       1px solid var(--nsl-border);
  margin-top:       auto;
}

.nsl-episode-date {
  font-size: 12px;
  color:     var(--nsl-muted);
}

.nsl-episode-arrow {
  width:           32px;
  height:          32px;
  border-radius:   50%;
  background:      rgba(170, 27, 69, 0.15);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--nsl-accent);
  text-decoration: none;
  transition:      all 0.2s;
}

.nsl-episode-arrow:hover {
  background: var(--nsl-accent);
  color:      white;
}

/* ============================================================
   HOSTS SECTION
   ============================================================ */

.nsl-hosts-section-title {
  font-family:     var(--nsl-display);
  font-weight:     900;
  font-size:       clamp(2.5rem, 5vw, 4rem);
  text-transform:  uppercase;
  letter-spacing:  -0.02em;
  text-align:      center;
  margin-bottom:   48px;
  line-height:     1;
}

.nsl-hosts-section-eyebrow {
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--nsl-muted);
  text-align:     center;
  margin-bottom:  12px;
}

.nsl-hosts-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   32px;
}

@media (max-width: 768px) {
  .nsl-hosts-grid {
    grid-template-columns: 1fr;
  }
}

/* Photo-forward card (home page hosts) */
.nsl-host-card {
  background:     var(--nsl-card);
  border-radius:  16px;
  overflow:       hidden;
  display:        flex;
  flex-direction: column;
}

.nsl-host-photo-full {
  width:        100%;
  aspect-ratio: 4 / 3;
  overflow:     hidden;
}

.nsl-host-photo-full img {
  width:          100%;
  height:         100%;
  object-fit:     cover;
  object-position: top center;
  transition:     transform 0.4s;
  display:        block;
}

.nsl-host-card:hover .nsl-host-photo-full img {
  transform: scale(1.04);
}

/* Keep circular wrap for episode page compact cards */
.nsl-host-photo-wrap {
  width:         100px;
  height:        100px;
  border-radius: 50%;
  overflow:      hidden;
  border:        3px solid var(--nsl-border);
  flex-shrink:   0;
}

.nsl-host-photo-wrap img {
  width:      100%;
  height:     100%;
  object-fit: cover;
}

.nsl-host-card-body {
  padding:        28px;
  display:        flex;
  flex-direction: column;
  gap:            10px;
}

.nsl-host-label {
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          var(--nsl-accent);
}

.nsl-host-name {
  font-family:    var(--nsl-display);
  font-weight:    900;
  font-size:      clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height:    1;
  color:          var(--nsl-white);
}

.nsl-host-role {
  font-size:      13px;
  font-weight:    500;
  color:          rgba(244, 244, 246, 0.5);
  letter-spacing: 0.04em;
}

.nsl-host-bio {
  font-size:   14px;
  color:       rgba(244, 244, 246, 0.65);
  line-height: 1.65;
}

.nsl-host-tags {
  display:   flex;
  flex-wrap: wrap;
  gap:       6px;
  margin-top: 4px;
}

.nsl-host-tag {
  font-size:      11px;
  padding:        4px 10px;
  border-radius:  20px;
  border:         1px solid var(--nsl-border);
  color:          var(--nsl-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nsl-host-socials {
  display:    flex;
  gap:        10px;
  margin-top: 4px;
}

.nsl-host-socials a {
  width:           34px;
  height:          34px;
  border-radius:   50%;
  border:          1px solid var(--nsl-border);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--nsl-muted);
  text-decoration: none;
  transition:      all 0.2s;
}

.nsl-host-socials a:hover {
  border-color: var(--nsl-accent);
  color:        var(--nsl-accent);
}

/* ============================================================
   NEWSLETTER — FULL BLEED DRAMATIC
   ============================================================ */

.nsl-newsletter-section {
  position:   relative;
  overflow:   hidden;
  background: var(--nsl-bg2);
}

.nsl-newsletter-bg-left,
.nsl-newsletter-bg-right {
  position:  absolute;
  top:       0;
  bottom:    0;
  width:     30%;
  overflow:  hidden;
  z-index:   0;
}

.nsl-newsletter-bg-left  { left: 0; }
.nsl-newsletter-bg-right { right: 0; }

.nsl-newsletter-bg-left img,
.nsl-newsletter-bg-right img {
  width:          100%;
  height:         100%;
  object-fit:     cover;
  object-position: top center;
  filter:         blur(3px) brightness(0.35);
  transform:      scale(1.08);
  display:        block;
}

.nsl-newsletter-bg-left::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(to right, rgba(19, 22, 42, 0) 0%, var(--nsl-bg2) 85%);
}

.nsl-newsletter-bg-right::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(to left, rgba(19, 22, 42, 0) 0%, var(--nsl-bg2) 85%);
}

.nsl-newsletter-center {
  position:       relative;
  z-index:        1;
  max-width:      560px;
  margin:         0 auto;
  padding:        80px 48px;
  text-align:     center;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            0;
}

.nsl-newsletter-medallion {
  width:         72px;
  height:        72px;
  border-radius: 50%;
  overflow:      hidden;
  background:    var(--nsl-card);
  border:        2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  flex-shrink:   0;
}

.nsl-newsletter-medallion img {
  width:      100%;
  height:     100%;
  object-fit: contain;
  display:    block;
}

.nsl-newsletter-eyebrow {
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--nsl-accent);
  margin-bottom:  12px;
}

.nsl-newsletter-title {
  font-family:    var(--nsl-display);
  font-weight:    900;
  font-size:      clamp(3rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height:    0.92;
  letter-spacing: -0.02em;
  color:          var(--nsl-white);
  margin-bottom:  16px;
}

.nsl-newsletter-title .nsl-accent { color: var(--nsl-accent); }

.nsl-newsletter-desc {
  font-size:     15px;
  color:         rgba(244, 244, 246, 0.6);
  margin-bottom: 32px;
  line-height:   1.65;
}

.nsl-newsletter-form {
  display:   flex;
  gap:       10px;
  flex-wrap: wrap;
  width:     100%;
}

.nsl-newsletter-input {
  flex:          1;
  min-width:     180px;
  height:        48px;
  padding:       0 16px;
  background:    rgba(255, 255, 255, 0.07);
  border:        1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color:         var(--nsl-white);
  font-size:     15px;
  outline:       none;
  font-family:   var(--nsl-body);
  transition:    border-color 0.2s;
}

.nsl-newsletter-input::placeholder { color: rgba(244, 244, 246, 0.35); }
.nsl-newsletter-input:focus        { border-color: var(--nsl-accent); }

.nsl-newsletter-btn {
  height:         48px;
  padding:        0 28px;
  background:     var(--nsl-accent);
  color:          white;
  border:         0;
  border-radius:  8px;
  font-family:    var(--nsl-display);
  font-weight:    700;
  font-size:      15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor:         pointer;
  transition:     opacity 0.2s;
  white-space:    nowrap;
}

.nsl-newsletter-btn:hover    { opacity: 0.85; }
.nsl-newsletter-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.nsl-newsletter-message {
  font-size:  13px;
  color:      var(--nsl-accent);
  margin-top: 10px;
  min-height: 20px;
}

@media (max-width: 768px) {
  .nsl-newsletter-bg-left,
  .nsl-newsletter-bg-right { display: none; }

  .nsl-newsletter-center {
    padding: 60px 24px;
  }

  .nsl-newsletter-form {
    flex-direction: column;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.nsl-footer {
  background:  #0A0C16;
  padding:     48px 0 32px;
  border-top:  1px solid var(--nsl-border);
}

.nsl-footer-inner {
  max-width:      1280px;
  margin:         0 auto;
  padding:        0 48px;
  display:        flex;
  flex-direction: column;
  gap:            32px;
}

.nsl-footer-top {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
}

.nsl-footer-logo img {
  height: 40px;
}

.nsl-footer-platforms {
  display:     flex;
  gap:         24px;
  align-items: center;
}

.nsl-footer-platform {
  font-size:       13px;
  color:           var(--nsl-muted);
  text-decoration: none;
  letter-spacing:  0.04em;
  transition:      color 0.2s;
}

.nsl-footer-platform:hover {
  color: var(--nsl-white);
}

.nsl-footer-bottom {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding-top:     24px;
  border-top:      1px solid var(--nsl-border);
}

.nsl-footer-copy {
  font-size: 13px;
  color:     var(--nsl-muted);
}

.nsl-footer-social {
  display: flex;
  gap:     16px;
}

.nsl-footer-social a {
  font-size:       13px;
  color:           var(--nsl-muted);
  text-decoration: none;
  transition:      color 0.2s;
}

.nsl-footer-social a:hover {
  color: var(--nsl-white);
}

@media (max-width: 768px) {
  .nsl-footer-inner {
    padding: 0 20px;
  }

  .nsl-footer-top {
    flex-direction: column;
    gap:            24px;
    text-align:     center;
  }

  .nsl-footer-bottom {
    flex-direction: column;
    gap:            16px;
    text-align:     center;
  }
}

/* ============================================================
   EPISODE DETAIL — HERO
   ============================================================ */

.nsl-episode-hero {
  position:    relative;
  overflow:    hidden;
  min-height:  400px;
  display:     flex;
  align-items: flex-end;
  padding-top: 68px;
}

.nsl-episode-hero-bg {
  position: absolute;
  inset:    0;
  z-index:  0;
}

.nsl-episode-hero-bg img {
  width:     100%;
  height:    100%;
  object-fit: cover;
  filter:    blur(20px) brightness(0.3);
  transform: scale(1.05);
}

.nsl-episode-hero-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(to top, #0D0F1A 0%, rgba(13, 15, 26, 0.4) 100%);
  z-index:    1;
}

.nsl-episode-hero-content {
  position:  relative;
  z-index:   2;
  max-width: 1280px;
  margin:    0 auto;
  padding:   60px 48px 48px;
  width:     100%;
}

.nsl-episode-badge {
  display:        inline-block;
  background:     var(--nsl-accent);
  font-family:    var(--nsl-display);
  font-weight:    700;
  font-size:      12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding:        5px 12px;
  border-radius:  4px;
  color:          white;
  margin-bottom:  16px;
}

.nsl-episode-hero-title {
  font-family:    var(--nsl-display);
  font-weight:    900;
  font-size:      clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
  line-height:    0.95;
  letter-spacing: -0.02em;
  margin-bottom:  20px;
}

.nsl-episode-hero-meta {
  display:     flex;
  align-items: center;
  gap:         16px;
  flex-wrap:   wrap;
  font-size:   14px;
  color:       var(--nsl-muted);
}

.nsl-episode-hero-tags {
  display: flex;
  gap:     8px;
}

.nsl-episode-hero-share {
  display:     flex;
  gap:         12px;
  margin-left: auto;
}

/* ============================================================
   EPISODE DETAIL — BODY
   ============================================================ */

.nsl-episode-body {
  max-width:             1280px;
  margin:                0 auto;
  padding:               48px 48px;
  display:               grid;
  grid-template-columns: 1fr 380px;
  gap:                   48px;
  align-items:           start;
}

.nsl-episode-main {
  display:        flex;
  flex-direction: column;
  gap:            32px;
}

.nsl-player-wrap {
  position:      relative;
  aspect-ratio:  16 / 9;
  background:    #000;
  border-radius: 12px;
  overflow:      hidden;
}

.nsl-player-wrap iframe {
  position: absolute;
  inset:    0;
  width:    100%;
  height:   100%;
  border:   0;
}

.nsl-show-notes {
  font-size:   16px;
  line-height: 1.75;
  color:       rgba(244, 244, 246, 0.8);
}

.nsl-show-notes h1,
.nsl-show-notes h2,
.nsl-show-notes h3 {
  font-family:    var(--nsl-display);
  text-transform: uppercase;
  color:          var(--nsl-white);
  margin-top:     24px;
  margin-bottom:  12px;
}

.nsl-show-notes h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.nsl-show-notes h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.nsl-show-notes h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.nsl-show-notes a {
  color:           var(--nsl-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nsl-show-notes a:hover {
  color: var(--nsl-sky);
}

.nsl-show-notes p {
  margin-bottom: 16px;
}

.nsl-show-notes ul,
.nsl-show-notes ol {
  padding-left:  24px;
  margin-bottom: 16px;
}

.nsl-show-notes li {
  margin-bottom: 6px;
}

.nsl-show-notes blockquote {
  border-left:  3px solid var(--nsl-accent);
  padding-left: 16px;
  margin:       16px 0;
  color:        var(--nsl-muted);
  font-style:   italic;
}

.nsl-show-notes code {
  background:    rgba(255, 255, 255, 0.07);
  padding:       2px 6px;
  border-radius: 4px;
  font-size:     0.9em;
}

.nsl-show-notes pre {
  background:    rgba(255, 255, 255, 0.05);
  border:        1px solid var(--nsl-border);
  border-radius: 8px;
  padding:       20px;
  overflow-x:    auto;
  margin-bottom: 16px;
}

.nsl-show-notes pre code {
  background: transparent;
  padding:    0;
}

@media (max-width: 1024px) {
  .nsl-episode-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nsl-episode-body {
    padding: 24px 20px;
  }

  .nsl-episode-hero-content {
    padding: 40px 20px 32px;
  }
}

/* ============================================================
   EPISODE DETAIL — SIDEBAR
   ============================================================ */

.nsl-episode-sidebar {
  display:        flex;
  flex-direction: column;
  gap:            24px;
  position:       sticky;
  top:            88px;
}

.nsl-sidebar-card {
  background:    var(--nsl-card);
  border:        1px solid var(--nsl-border);
  border-radius: 12px;
  padding:       24px;
}

.nsl-sidebar-title {
  font-family:    var(--nsl-display);
  font-weight:    800;
  font-size:      1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom:  16px;
  color:          var(--nsl-muted);
}

.nsl-platform-links {
  display:        flex;
  flex-direction: column;
  gap:            8px;
}

.nsl-platform-btn {
  display:         flex;
  align-items:     center;
  gap:             12px;
  padding:         12px 16px;
  background:      rgba(255, 255, 255, 0.04);
  border:          1px solid var(--nsl-border);
  border-radius:   8px;
  color:           var(--nsl-white);
  text-decoration: none;
  font-size:       14px;
  font-weight:     500;
  transition:      all 0.2s;
}

.nsl-platform-btn:hover {
  background:   rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.nsl-chapters-list {
  display:        flex;
  flex-direction: column;
  gap:            0;
  max-height:     320px;
  overflow-y:     auto;
}

.nsl-chapter-item {
  display:      flex;
  align-items:  center;
  gap:          12px;
  padding:      10px 0;
  border-bottom: 1px solid var(--nsl-border);
  cursor:       pointer;
  transition:   color 0.15s;
}

.nsl-chapter-item:last-child {
  border-bottom: none;
}

.nsl-chapter-item:hover {
  color: var(--nsl-accent);
}

.nsl-chapter-item:hover .nsl-chapter-title {
  color: var(--nsl-accent);
}

.nsl-chapter-timestamp {
  font-family: monospace;
  font-size:   12px;
  color:       var(--nsl-accent);
  flex-shrink: 0;
  width:       42px;
}

.nsl-chapter-title {
  font-size:   14px;
  color:       var(--nsl-muted);
  line-height: 1.3;
  transition:  color 0.15s;
}

.nsl-share-buttons {
  display:        flex;
  flex-direction: column;
  gap:            8px;
}

.nsl-share-btn {
  display:      flex;
  align-items:  center;
  gap:          10px;
  padding:      10px 16px;
  border-radius: 8px;
  border:       1px solid var(--nsl-border);
  background:   transparent;
  color:        var(--nsl-muted);
  font-size:    13px;
  font-family:  var(--nsl-body);
  cursor:       pointer;
  transition:   all 0.2s;
  width:        100%;
  text-align:   left;
}

.nsl-share-btn:hover {
  border-color: var(--nsl-accent);
  color:        var(--nsl-accent);
}

.nsl-share-btn.copied {
  border-color: #22c55e;
  color:        #22c55e;
}

/* ============================================================
   RELATED EPISODES STRIP
   ============================================================ */

.nsl-related {
  padding:    48px 0;
  border-top: 1px solid var(--nsl-border);
}

.nsl-related-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   24px;
}

@media (max-width: 640px) {
  .nsl-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   UTILITY / ANIMATIONS
   ============================================================ */

.nsl-reveal {
  opacity:    0;
  transform:  translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nsl-reveal.revealed {
  opacity:   1;
  transform: translateY(0);
}

/* ============================================================
   ADDITIONAL RESPONSIVE HELPERS
   ============================================================ */

@media (max-width: 768px) {
  .nsl-section-header {
    flex-direction: column;
    align-items:    flex-start;
    gap:            12px;
    margin-bottom:  32px;
  }

  .nsl-related-grid {
    grid-template-columns: 1fr;
  }

  .nsl-footer-social {
    flex-wrap:      wrap;
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .nsl-episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nsl-episodes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   SKIP LINK
   ============================================================ */

.nsl-skip-link {
  position:       absolute;
  left:           -999px;
  top:            1rem;
  z-index:        9999;
  background:     var(--nsl-accent);
  color:          #fff;
  padding:        8px 16px;
  font-weight:    600;
  text-decoration: none;
  border-radius:  4px;
  transition:     left 0.2s;
}

.nsl-skip-link:focus {
  left: 1rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.nsl-pagination-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  padding:         8px 20px;
  border:          1px solid var(--nsl-border);
  border-radius:   6px;
  color:           var(--nsl-muted);
  font-size:       14px;
  font-weight:     500;
  text-decoration: none;
  transition:      border-color 0.2s, color 0.2s;
}

.nsl-pagination-btn:hover {
  border-color: var(--nsl-accent);
  color:        var(--nsl-accent);
}

/* ============================================================
   NEWSLETTER FORM FEEDBACK
   ============================================================ */

.nsl-form-message {
  margin-top: 0.75rem;
  font-size:  0.875rem;
  text-align: center;
}

.nsl-form-success { color: #4ade80; }
.nsl-form-error   { color: #f87171; }
