/* ============================================================
   Mind Over Matters — Design System
   Bootstrap 5 Custom Properties Override + Component Layer
   Font: Jost (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ——————————————————————————
   BRAND TOKENS
—————————————————————————— */
:root {
  /* Core brand palette */
  --mom-teal: #08798C;
  --mom-teal-dark: #189B99;
  --mom-teal-light: #E6FFFF;
  --mom-teal-surface: #E6FFFF;

  --mom-gold: #DFA829;
  --mom-gold-dark: #C5921E;
  --mom-gold-light: #FDF6E3;

  --mom-dark: #0D1F2D;
  --mom-darker: #07131D;
  --mom-dark-mid: #162536;

  --mom-text: #1A2E3A;
  --mom-text-muted: #6B7E8C;
  --mom-text-faint: #9BADB8;

  --mom-border: #DDE9E9;
  --mom-border-light: #EBF4F4;

  --mom-chip-bg: #EDF4F4;
  --mom-chip-text: #3A5460;

  --mom-white: #FFFFFF;

  --mom-purple: #4B2D8A;
  --mom-purple-mid: #3B2270;

  /* ——— Bootstrap theme overrides ——— */
  --bs-primary: #1FBDBB;
  --bs-primary-rgb: 31, 189, 187;

  --bs-secondary: #DFA829;
  --bs-secondary-rgb: 223, 168, 41;

  --bs-dark: #0D1F2D;
  --bs-dark-rgb: 13, 31, 45;

  --bs-light: #EAF9F9;
  --bs-light-rgb: 234, 249, 249;

  --bs-body-font-family: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bs-body-color: #1A2E3A;
  --bs-body-bg: #FFFFFF;
  --bs-link-color: #1FBDBB;
  --bs-link-hover-color: #189B99;
  --bs-border-color: #DDE9E9;
  --bs-border-radius: 0.5rem;
  --bs-border-radius-sm: 0.375rem;
  --bs-border-radius-lg: 0.75rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 1.5rem;
  --bs-focus-ring-color: rgba(31, 189, 187, 0.25);

  /* ——— Layout tokens ——— */
  --mom-navbar-height: 72px;
  --mom-section-py: 5rem;
  --mom-section-py-sm: 3rem;
  --mom-card-gap: 1.5rem;

  /* ——— Shadows ——— */
  --mom-shadow-xs: 0 1px 4px rgba(13, 31, 45, 0.06);
  --mom-shadow-sm: 0 2px 8px rgba(13, 31, 45, 0.08);
  --mom-shadow-md: 0 4px 16px rgba(13, 31, 45, 0.11);
  --mom-shadow-lg: 0 8px 32px rgba(13, 31, 45, 0.15);
  --mom-shadow-xl: 0 16px 48px rgba(13, 31, 45, 0.20);

  /* ——— Transitions ——— */
  --mom-transition: 0.22s ease;
}

/* ——————————————————————————
   BASE RESET & GLOBAL
—————————————————————————— */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bs-body-font-family);
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--mom-text);
}

p {
  line-height: 1.7;
}

a {
  color: var(--mom-teal);
  text-decoration: none;
  transition: color var(--mom-transition);
}

a:hover {
  color: var(--mom-teal-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ——————————————————————————
   TYPOGRAPHY SCALE
—————————————————————————— */
.display-hero {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: rgba(230, 255, 255, 1);
}

.section-title {
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.ep-title-lg {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.meta-text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--mom-text-muted);
  line-height: 1.4;
}

/* ——————————————————————————
   SECTION SPACING UTILITY
—————————————————————————— */
.section-pad {
  padding: var(--mom-section-py) 0;
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: var(--mom-section-py-sm) 0;
  }
}

/* ——————————————————————————
   SECTION LABEL (teal eyebrow)
—————————————————————————— */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mom-teal);
  margin-bottom: 0.5rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--mom-teal);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ——————————————————————————
   BUTTONS
—————————————————————————— */
.btn {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-radius: 18px;
  transition: background-color var(--mom-transition),
    border-color var(--mom-transition),
    color var(--mom-transition),
    transform 0.15s ease,
    box-shadow var(--mom-transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0px);
}

/* Primary — teal */
.btn-primary {
  background-color: var(--mom-teal);
  border-color: var(--mom-teal);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--mom-teal-dark);
  border-color: var(--mom-teal-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(31, 189, 187, 0.35);
}

.btn-primary:active {
  background-color: var(--mom-teal-dark);
  border-color: var(--mom-teal-dark);
  color: #fff;
}

/* Outline primary */
.btn-outline-primary {
  border-color: var(--mom-teal);
  color: var(--mom-teal);
  background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
  background-color: var(--mom-teal);
  border-color: var(--mom-teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(31, 189, 187, 0.25);
}

/* Gold / secondary CTA */
.btn-gold {
  background-color: var(--mom-gold);
  border-color: var(--mom-gold);
  color: #fff;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: var(--mom-gold-dark);
  border-color: var(--mom-gold-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(223, 168, 41, 0.35);
}

/* Outline gold */
.btn-outline-gold {
  border: 2px solid var(--mom-gold);
  color: var(--mom-gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background-color: var(--mom-gold);
  border-color: var(--mom-gold);
  color: #fff;
}

/* Focus ring */
.btn:focus-visible {
  outline: 3px solid var(--bs-focus-ring-color);
  outline-offset: 2px;
}

/* ——————————————————————————
   NAVBAR
—————————————————————————— */
.navbar-mom {
  background: #1E1E1E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: var(--mom-navbar-height);
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.navbar-mom .navbar-brand img {
  height: 44px;
  width: auto;
}

.navbar-mom .nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.5rem 0.875rem;
  position: relative;
  transition: color var(--mom-transition);
}

.navbar-mom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--mom-teal);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--mom-transition);
}

.navbar-mom .nav-link:hover,
.navbar-mom .nav-link.active {
  color: #fff !important;
}

.navbar-mom .nav-link:hover::after,
.navbar-mom .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-mom .nav-link.active {
  font-weight: 600;
}

.navbar-toggler {
  border: none;
  padding: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ——————————————————————————
   OFFCANVAS MOBILE MENU
—————————————————————————— */
.offcanvas-mom {
  background: #F5F5F5;
  width: 300px !important;
  border-right: none;
}

.offcanvas-mom .offcanvas-header {
  justify-content: flex-end;
  border-bottom: none;
  padding: 1.25rem 1.5rem 0.5rem;
}

.offcanvas-mom .offcanvas-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.offcanvas-mom .btn-close {
  opacity: 0.6;
}

.offcanvas-mom .btn-close:hover {
  opacity: 1;
}

.offcanvas-mom .nav-link {
  color: var(--mom-text) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 0;
  border-bottom: none;
  transition: color var(--mom-transition);
}

.offcanvas-mom .nav-link:hover {
  color: var(--mom-teal) !important;
}

.offcanvas-mom .nav-link.active {
  color: var(--mom-text) !important;
  font-weight: 700;
  border-bottom: 2px solid var(--mom-gold) !important;
}

/* ——————————————————————————
   HERO SECTION
—————————————————————————— */
.hero-section {
  position: relative;
  min-height: 800px;
  background: var(--mom-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(108deg,
      rgba(7, 19, 29, 0.97) 0%,
      rgba(13, 31, 45, 0.88) 45%,
      rgba(13, 31, 45, 0.35) 45%); */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(31, 189, 187, 0.12);
  border: 1px solid rgba(31, 189, 187, 0.38);
  color: var(--mom-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-content {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 420px;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(7, 19, 29, 0.92) 0%,
        rgba(13, 31, 45, 0.82) 100%);
  }
}

/* ——————————————————————————
   WAVEFORM DIVIDER (animated)
—————————————————————————— */
.waveform-divider {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  margin-bottom: 1.5rem;
}

.waveform-divider span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--mom-teal);
  animation: waveBar 1.4s ease-in-out infinite;
}

.waveform-divider span:nth-child(1) {
  height: 8px;
  animation-delay: 0.00s;
}

.waveform-divider span:nth-child(2) {
  height: 16px;
  animation-delay: 0.10s;
}

.waveform-divider span:nth-child(3) {
  height: 26px;
  animation-delay: 0.20s;
}

.waveform-divider span:nth-child(4) {
  height: 20px;
  animation-delay: 0.30s;
}

.waveform-divider span:nth-child(5) {
  height: 10px;
  animation-delay: 0.40s;
}

.waveform-divider span:nth-child(6) {
  height: 22px;
  animation-delay: 0.30s;
}

.waveform-divider span:nth-child(7) {
  height: 14px;
  animation-delay: 0.20s;
}

.waveform-divider span:nth-child(8) {
  height: 6px;
  animation-delay: 0.10s;
}

@keyframes waveBar {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.9;
  }

  50% {
    transform: scaleY(0.4);
    opacity: 0.45;
  }
}

/* ——————————————————————————
   ABOUT SECTION
—————————————————————————— */
.section-about {
  background: var(--mom-teal-surface);
  position: relative;
  overflow: hidden;
}

.about-mic-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-mic-img {
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(31, 189, 187, 0.18));
}

/* ——————————————————————————
   HOST SECTION
—————————————————————————— */
.hosts-img-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--mom-shadow-xl);
  max-width: 520px;
  margin-inline: auto;
  position: relative;
}

.hosts-img-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ——————————————————————————
   CHIPS / BADGES
—————————————————————————— */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--mom-chip-bg);
  color: var(--mom-chip-text);
  font-size: 0.73rem;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0.22rem 0.65rem;
  white-space: nowrap;
  line-height: 1.4;
}

.chip-teal {
  background: rgba(31, 189, 187, 0.12);
  color: var(--mom-teal-dark);
}

.chip-gold {
  background: rgba(223, 168, 41, 0.14);
  color: var(--mom-gold-dark);
}

.chip-purple {
  background: rgba(75, 45, 138, 0.10);
  color: var(--mom-purple);
}

/* ——————————————————————————
   EPISODE CARDS (Grid)
—————————————————————————— */
.episode-card {
  background: #fff;
  border-radius: var(--bs-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--mom-shadow-sm);
  border: 1px solid var(--mom-border-light);
  transition: transform var(--mom-transition), box-shadow var(--mom-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mom-shadow-lg);
}

.ep-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--mom-dark);
  flex-shrink: 0;
}

.ep-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.episode-card:hover .ep-thumb-wrap img {
  transform: scale(1.05);
}

.ep-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 31, 45, 0.28);
  opacity: 0;
  transition: opacity var(--mom-transition);
}

.episode-card:hover .ep-play-overlay {
  opacity: 1;
}

.ep-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mom-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(31, 189, 187, 0.5);
  transition: transform 0.15s ease;
}

.ep-play-btn:hover {
  transform: scale(1.08);
}

.ep-body {
  padding: 1.125rem 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ep-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.625rem;
}

.ep-title {

  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0%;
  margin-bottom: 0.5rem;

  color: #1E1E1E;


}

.ep-desc {
  font-size: 0.8125rem;
  color: var(--mom-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

/* ——————————————————————————
   FILTER PILLS
—————————————————————————— */
.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.filter-pill {
  padding: 0.375rem 1.125rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1.5px solid var(--mom-border);
  background: #fff;
  color: var(--mom-text-muted);
  cursor: pointer;
  transition: all var(--mom-transition);
  font-family: 'Jost', sans-serif;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--mom-teal);
  border-color: var(--mom-teal);
  color: #fff;
}

/* ——————————————————————————
   PLAYER STAGE (video-detail)
—————————————————————————— */
.player-stage {
  background: var(--mom-purple-mid);
  line-height: 0;
}

.player-video {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.player-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

.player-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.player-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

.player-episode-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.375rem;
}

.player-ep-title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Player controls row */
.player-bar {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: nowrap;
}

.player-play-btn {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: var(--mom-teal);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(31, 189, 187, 0.45);
  transition: background var(--mom-transition), transform 0.15s ease;
  flex-shrink: 0;
}

.player-play-btn:hover {
  background: var(--mom-teal-dark);
  transform: scale(1.06);
}

.player-skip-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color var(--mom-transition);
  flex-shrink: 0;
}

.player-skip-btn:hover {
  color: #fff;
}

.player-progress-wrap {
  flex: 1;
  min-width: 0;
}

.player-progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0.375rem;
}

.player-progress-fill {
  height: 100%;
  background: var(--mom-teal);
  border-radius: 2px;
  width: 35%;
  position: relative;
}

.player-progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-feature-settings: 'tnum';
}

.player-vol-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.player-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 76px;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.player-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 991.98px) {}
}

@media (max-width: 767.98px) {
  .player-vol-wrap {
    display: none !important;
  }

  .player-bar {
    gap: 0.6rem;
  }
}

@media (max-width: 575.98px) {}

/* ——————————————————————————
   COMMENT SECTION
—————————————————————————— */
.comment-input-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  background: #F5FAFA;
  border-radius: var(--bs-border-radius-lg);
  border: 1.5px solid var(--mom-border);
  margin-bottom: 1.75rem;
  transition: border-color var(--mom-transition);
}

.comment-input-wrap:focus-within {
  border-color: var(--mom-teal);
}

.comment-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--mom-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.comment-input-wrap textarea {
  flex: 1;
  border: none;
  background: transparent;
  resize: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.9375rem;
  color: var(--mom-text);
  padding: 0.125rem 0;
  min-height: 44px;
}

.comment-input-wrap textarea::placeholder {
  color: var(--mom-text-faint);
}

.comment-send-btn {
  background: var(--mom-teal);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background var(--mom-transition), transform 0.15s ease;
  align-self: flex-end;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.comment-send-btn:hover {
  background: var(--mom-teal-dark);
  transform: scale(1.05);
}

.comment-item {
  display: flex;
  gap: 0.875rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--mom-border-light);
}

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

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.375rem;
}

.comment-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mom-text);
}

.comment-time {
  font-size: 0.75rem;
  color: var(--mom-text-faint);
}

.comment-text {
  font-size: 0.8875rem;
  color: var(--mom-text);
  line-height: 1.6;
  margin: 0;
}

/* ——————————————————————————
   COMPACT EPISODE LIST CARD (sidebar)
—————————————————————————— */
.ep-list-card {
  display: flex;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: var(--bs-border-radius);
  background: #fff;
  border: 1.5px solid var(--mom-border-light);
  transition: border-color var(--mom-transition), box-shadow var(--mom-transition), background var(--mom-transition);
  cursor: pointer;
  align-items: flex-start;
  color: inherit;
}

.ep-list-card:hover {
  border-color: var(--mom-teal);
  box-shadow: var(--mom-shadow-sm);
  color: inherit;
}

.ep-list-card.active {
  border-color: var(--mom-teal);
  background: rgba(31, 189, 187, 0.05);
}

.ep-list-thumb {
  width: 88px;
  min-width: 88px;
  aspect-ratio: 16 / 10;
  border-radius: 0.375rem;
  overflow: hidden;
  background: var(--mom-dark);
  flex-shrink: 0;
}

.ep-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-list-info {
  flex: 1;
  min-width: 0;
}

.ep-list-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mom-text);
  line-height: 1.35;
  margin-bottom: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ep-list-meta {
  font-size: 0.75rem;
  color: var(--mom-text-muted);
}

.ep-list-play {
  color: var(--mom-teal);
  align-self: center;
  flex-shrink: 0;
  margin-left: 0.25rem;
}

/* ——————————————————————————
   SIDEBAR STICKY
—————————————————————————— */
.sidebar-sticky {
  position: sticky;
  top: calc(var(--mom-navbar-height) + 1.25rem);
  max-height: calc(100vh - var(--mom-navbar-height) - 2.5rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--mom-border) transparent;
  padding-right: 4px;
}

.sidebar-sticky::-webkit-scrollbar {
  width: 4px;
}

.sidebar-sticky::-webkit-scrollbar-thumb {
  background: var(--mom-border);
  border-radius: 2px;
}

/* ——————————————————————————
   FOOTER
—————————————————————————— */
.footer-mom {
  background: #1E1E1E;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.75rem;
}

.footer-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 290px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.125rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--mom-transition);
}

.footer-links a:hover {
  color: var(--mom-teal);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.09);
  margin: 2.75rem 0 1.5rem;
}

.footer-bottom {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--mom-transition);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.social-icons {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.375rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: background var(--mom-transition), color var(--mom-transition), border-color var(--mom-transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--mom-teal);
  border-color: var(--mom-teal);
  color: #fff;
}

/* ——————————————————————————
   CTA STRIP
—————————————————————————— */
.cta-strip {
  background: var(--mom-teal-light);
  position: relative;
  overflow: hidden;
}

/* ——————————————————————————
   UTILITY CLASSES
—————————————————————————— */
.text-teal {
  color: var(--mom-teal) !important;
}

.text-gold {
  color: var(--mom-gold) !important;
}

.text-muted-mom {
  color: var(--mom-text-muted) !important;
}

.bg-dark-mom {
  background-color: var(--mom-dark) !important;
}

.bg-surface {
  background-color: var(--mom-teal-surface) !important;
}

.bg-teal-light {
  background-color: var(--mom-teal-light) !important;
}

.rounded-xl {
  border-radius: 1rem !important;
}

.rounded-2xl {
  border-radius: 1.5rem !important;
}

.shadow-mom-sm {
  box-shadow: var(--mom-shadow-sm) !important;
}

.shadow-mom-md {
  box-shadow: var(--mom-shadow-md) !important;
}

.shadow-mom-lg {
  box-shadow: var(--mom-shadow-lg) !important;
}

/* ——————————————————————————
   RESPONSIVE OVERRIDES
—————————————————————————— */
@media (max-width: 575.98px) {
  :root {
    --mom-section-py: 2.75rem;
    --mom-section-py-sm: 2rem;
  }

  .filter-pills {
    gap: 0.375rem;
  }

  .filter-pill {
    padding: 0.3rem 0.875rem;
    font-size: 0.75rem;
  }

  .footer-desc {
    max-width: 100%;
  }
}