.sidebar-toggle {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 64px);
  left: 12px;
  z-index: 1040;
  min-width: 86px;
  color: #fff;
  background: #432360;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 24, 38, 0.22);
}

html,
body {
  background-color: #16121c;
  max-width: 100%;
  overflow-x: hidden;
}

#app {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  #app {
    overflow-x: hidden;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background: #16121c;
  z-index: 1046;
  pointer-events: none;
}

.cl-pull-refresh-indicator {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 6px);
  left: 50%;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(22, 18, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate(-50%, 0);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cl-pull-refresh-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #d7b35d;
  font-size: 1rem;
  line-height: 1;
}

.cl-pull-refresh-text {
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.cl-pull-refresh-indicator.is-visible {
  opacity: 1;
}

.cl-pull-refresh-indicator.is-ready .cl-pull-refresh-text {
  color: #fff;
}

.cl-pull-refresh-indicator.is-refreshing .cl-pull-refresh-icon {
  animation: cl-pull-refresh-spin 820ms linear infinite;
}

@keyframes cl-pull-refresh-spin {
  to { transform: rotate(360deg); }
}

.ml-90px { margin-left: 90px; }

@media (max-width: 991.98px) {
  #mainNav.cl-site-nav {
    min-height: calc(env(safe-area-inset-top, 0px) + 56px);
    padding-top: env(safe-area-inset-top, 0px) !important;
    padding-bottom: 0 !important;
    background: rgba(22, 18, 28, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  #mainNav.cl-site-nav > .container {
    min-height: 56px;
    height: 56px;
    display: flex;
    align-items: center;
  }

  #mainNav.cl-site-nav .navbar-brand {
    max-width: calc(100vw - 88px);
    overflow: hidden;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #mainNav.cl-site-nav .cl-watch-home-link {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
  }

  #mainNav.cl-site-nav .cl-watch-home-link__chevron {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-left: 2px solid #d7b35d;
    border-bottom: 2px solid #d7b35d;
    transform: rotate(45deg);
  }

  .cl-mobile-nav-toggle {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 0;
    line-height: 1;
  }

  .cl-mobile-nav-toggle .fa {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    transform: translateY(0);
  }

  .cl-mobile-nav-toggle:focus {
    box-shadow: 0 0 0 3px rgba(215, 179, 93, 0.25);
  }

  .cl-mobile-nav {
    color: #fff;
    background: rgba(22, 18, 28, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .cl-mobile-nav .offcanvas-header {
    align-items: flex-start;
    padding: calc(env(safe-area-inset-top, 0px) + 18px) 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cl-mobile-nav__eyebrow {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
  }

  .cl-mobile-nav .offcanvas-title {
    margin-top: 4px;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
  }

  .cl-mobile-nav .offcanvas-body {
    padding: 12px;
  }

  .cl-mobile-nav__links {
    display: grid;
    gap: 7px;
  }

  .cl-mobile-nav__link,
  .cl-mobile-nav__install {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
  }

  .cl-mobile-nav__link:hover,
  .cl-mobile-nav__link:focus,
  .cl-mobile-nav__install:hover,
  .cl-mobile-nav__install:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .cl-mobile-nav__install {
    margin-top: 8px;
    color: #18121c;
    background: #d7b35d;
    justify-content: center;
  }
}

#sidebar.cl-video-nav {
  position: fixed;
  inset-block: 0;
  left: 0;
  z-index: 1030;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(22, 18, 28, 0.88) !important;
  box-shadow: 18px 0 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.expanded-sidebar { width: min(380px, 100vw); }
.mini-sidebar { width: 90px; }
.hidden-sidebar {
  width: 0;
  pointer-events: none;
  border-right: 0 !important;
}

.cl-video-nav__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cl-video-nav__expanded {
  height: 100%;
  overflow-y: auto;
  padding: 72px 12px 18px;
}

.cl-video-nav__collapsed {
  width: 90px;
  min-height: 100%;
  display: grid;
  justify-items: center;
  padding-top: 72px;
}

.cl-video-nav__header {
  display: block;
  margin-bottom: 14px;
  padding: 0 2px;
}

.cl-video-nav__header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.cl-video-nav__eyebrow {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-nav-icon img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 24, 38, 0.24);
}

.cl-playlist-list {
  display: grid;
  gap: 10px;
}

.cl-playlist-card {
  overflow: hidden;
  color: #f8fafc;
  background: rgba(12, 10, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.cl-playlist-card.is-current { border-color: rgba(215, 179, 93, 0.46); }
.cl-playlist-card.is-open { background: rgba(18, 14, 24, 0.68); }

.cl-playlist-header {
  width: 100%;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
}

.cl-playlist-header:hover { background: rgba(255, 255, 255, 0.06); }

.cl-playlist-thumb {
  width: 76px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
}

.cl-playlist-summary {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.cl-playlist-title {
  overflow: hidden;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cl-playlist-meta {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.2;
}

.cl-playlist-toggle {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.cl-playlist-toggle-mark {
  width: 12px;
  height: 12px;
  overflow: hidden;
  color: transparent;
  line-height: 0;
}

.cl-playlist-toggle-mark::before {
  display: block;
  width: 8px;
  height: 8px;
  margin: 1px auto 0;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: rotate(45deg);
  content: "";
}

.is-open .cl-playlist-toggle-mark::before {
  margin-top: 4px;
  transform: rotate(225deg);
}

.cl-episode-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.24);
}

.cl-episode-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.cl-episode-list__items {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 6px;
  list-style: none;
}

.cl-episode-row { border-radius: 7px; }
.cl-episode-row.is-hovered,
.cl-episode-row.is-current { background: rgba(255, 255, 255, 0.065); }
.cl-episode-row.is-live { background: rgba(220, 53, 69, 0.16); }

.cl-episode-button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 9px;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 7px;
}

.cl-episode-main {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.cl-episode-title {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.25;
}

.cl-episode-date {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.25;
}

.cl-episode-description {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cl-episode-side {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.cl-episode-status,
.cl-episode-number {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.cl-episode-status--ready {
  color: #d9fbe6;
  background: rgba(34, 197, 94, 0.18);
}

.cl-episode-status--upcoming {
  color: #d8efff;
  background: rgba(14, 165, 233, 0.2);
}

.cl-episode-status--live {
  color: #fff;
  background: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.cl-episode-number {
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.1);
}

.cl-episode-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 9px 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cl-episode-page {
  flex: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  white-space: nowrap;
}

.cl-video-icon-button,
.cl-video-sort-button,
.cl-video-link-button {
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 750;
}

.cl-video-icon-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
}

.cl-video-sort-button {
  margin-left: 0;
  min-height: 30px;
  padding: 4px 9px;
}

.cl-video-icon-button:disabled { opacity: 0.42; }

.cl-video-empty {
  display: grid;
  gap: 7px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(12, 10, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.cl-video-link-button {
  justify-self: start;
  padding: 5px 10px;
}

.cl-skeleton {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.cl-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.62), transparent);
  animation: cl-shimmer 1.35s infinite;
}

.cl-skeleton-line {
  height: 10px;
  width: 58%;
  border-radius: 999px;
}

.cl-skeleton-line--title {
  width: 78%;
  height: 14px;
}

.cl-watch-page {
  position: relative;
  min-height: 100vh;
  padding-bottom: max(72px, env(safe-area-inset-bottom, 0px));
  color: #fff;
}

.cl-watch-page .wavy-bg {
  opacity: 0.42 !important;
  filter: blur(1px) saturate(1.05);
}

.cl-watch-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1340px;
  display: grid;
  gap: 18px;
  margin: 84px auto 0;
  padding: 0 clamp(14px, 2.2vw, 32px);
}

.cl-watch-media-column,
.cl-watch-side-column {
  min-width: 0;
}

.cl-watch-player-wrap {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  background: #050407;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.cl-watch-player-wrap .plyr--video {
  border-radius: 10px;
  box-shadow: none;
}

.cl-watch-titlebar {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  margin: 10px 0 0;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(22, 18, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cl-watch-titlebar h5 {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  font-weight: 900;
  line-height: 1.18;
  text-align: left;
}

.cl-watch-titlebar .btn {
  flex-shrink: 0;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}

.cl-watch-titlebar .btn:hover,
.cl-watch-titlebar .btn:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(215, 179, 93, 0.34);
}

.cl-watch-titlebar .text-success {
  grid-column: 1 / -1;
  margin: 0 !important;
  color: #d9fbe6 !important;
  font-weight: 800;
  text-align: right;
}

.cl-watch-page .section-divider {
  display: none;
}

.cl-watch-toggle-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
}

.cl-watch-toggle-shell .toggle-slider {
  width: 100%;
  max-width: none;
  height: 44px;
  margin: 0;
  background: rgba(22, 18, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.cl-watch-toggle-shell .toggle-option {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
}

.cl-watch-toggle-shell .toggle-option.active {
  color: #fff;
}

  .cl-watch-toggle-shell .toggle-indicator {
    top: 4px;
    width: calc(50% - 8px);
    height: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(215, 179, 93, 0.28);
  border-radius: 6px;
  box-shadow: none;
}

.cl-watch-content-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 12px 0 0;
}

.cl-watch-stage.is-playlist-view .section-divider {
  display: none;
}

.cl-watch-stage.is-playlist-view .cl-watch-content-shell {
  margin-top: 0;
  padding-top: 6px;
}

.cl-watch-stage.is-playlist-view .cl-watch-toggle-shell {
  margin-bottom: 0;
}

.cl-watch-stage.is-playlist-view .toggle-slider {
  margin-bottom: 0;
}

.cl-watch-stage.is-playlist-view .cl-watch-playlist-panel,
.cl-watch-stage.is-playlist-view .cl-playlist-list {
  margin-top: 0;
  padding-top: 0;
}

.cl-watch-panel.frosted-content {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cl-watch-panel > div {
  width: 100%;
}

.cl-watch-playlist-panel .cl-playlist-list {
  width: 100%;
}

.cl-watch-playlist-panel .cl-playlist-card {
  width: 100%;
}

@media (min-width: 992px) {
  .cl-watch-stage {
    grid-template-columns: minmax(0, 760px) minmax(360px, 1fr);
    align-items: start;
  }

  .cl-watch-side-column {
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    padding-right: 2px;
  }

  .cl-watch-side-column::-webkit-scrollbar {
    width: 8px;
  }

  .cl-watch-side-column::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
  }
}

@media (max-width: 991.98px) {
  .cl-watch-stage {
    max-width: none;
    margin: calc(env(safe-area-inset-top, 0px) + 50px) 0 0;
    padding: 0;
  }

  .cl-watch-player-wrap {
    width: 100%;
    max-width: none;
    margin: 0 0 16px;
    border-inline: 0;
    border-top: 0;
    border-radius: 0 0 10px 10px;
  }

  .cl-watch-player-wrap .plyr--video {
    border-radius: 0 0 10px 10px;
  }

  .cl-watch-titlebar {
    margin: 8px clamp(10px, 2vw, 28px) 8px;
    width: auto;
    padding: 13px 14px;
  }

  .cl-watch-titlebar h5 {
    text-align: left;
  }

  .cl-watch-toggle-shell {
    padding: 0 clamp(10px, 2vw, 28px);
  }

  .cl-watch-content-shell {
    padding: 14px clamp(10px, 2vw, 28px) 0;
  }
}

.cl-latest-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: left;
}

.cl-latest-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
  min-height: 184px;
  padding: 14px;
  color: #f8fafc;
  background: rgba(22, 20, 28, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  text-decoration: none;
  will-change: transform;
}

.cl-latest-card.is-live-card {
  min-height: 0;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(220, 53, 69, 0.12), rgba(22, 20, 28, 0.54) 38%),
    rgba(22, 20, 28, 0.52);
  border-color: rgba(220, 53, 69, 0.24);
}

.cl-latest-card:hover,
.cl-latest-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(22, 20, 28, 0.64);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28) !important;
  outline: 0;
}

.cl-latest-card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(247, 212, 106, 0.44),
    0 20px 44px rgba(0, 0, 0, 0.28) !important;
}

.cl-latest-media {
  align-self: stretch;
  min-height: 156px;
  overflow: hidden;
  border-radius: 7px;
}

.cl-latest-card.is-live-card .cl-latest-media {
  min-height: 92px;
}

.cl-latest-image {
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease;
}

.cl-latest-card:hover .cl-latest-image,
.cl-latest-card:focus-visible .cl-latest-image {
  transform: scale(1.035);
}

.cl-latest-body {
  min-width: 0;
  display: grid;
  grid-auto-rows: max-content;
  gap: 7px;
}

.cl-latest-body.is-live-body {
  align-items: center;
  justify-items: center;
  text-align: center;
}

.cl-latest-heading {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.cl-latest-topline {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.cl-latest-topline.is-live-topline {
  grid-template-columns: minmax(0, 1fr);
  justify-items: end;
}

.cl-latest-kicker {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 4px 8px;
  color: #172033;
  background: rgba(248, 250, 252, 0.88);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.cl-latest-kicker.is-live {
  color: #fff;
  background: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.16);
}

.cl-live-dot {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 999px;
}

.cl-latest-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cl-latest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.82rem;
  line-height: 1.25;
}

.cl-latest-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cl-latest-summary {
  min-height: 48px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.cl-latest-hook {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.78rem;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cl-summary-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cl-summary-points li {
  position: relative;
  display: -webkit-box;
  overflow: hidden;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cl-summary-points li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #f7d46a;
  border-radius: 999px;
  content: "";
}

.cl-latest-summary--loading {
  align-content: center;
}

.cl-summary-skeleton {
  position: relative;
  overflow: hidden;
  width: min(100%, 360px);
  height: 10px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.cl-summary-skeleton:nth-child(2) {
  width: min(78%, 280px);
}

.cl-summary-skeleton--wide {
  width: min(100%, 460px);
}

.cl-summary-skeleton--short {
  width: min(64%, 240px);
}

.cl-summary-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: cl-shimmer 1.35s infinite;
}

.cl-latest-action-row {
  min-height: 0;
}

.cl-latest-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 118px;
  min-height: 32px;
  padding: 6px 14px;
  color: #fff;
  background: #dc3545;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(220, 53, 69, 0.26);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.cl-latest-button--inline {
  margin-left: 2px;
}

.cl-live-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cl-live-rail .cl-latest-kicker {
  justify-self: start;
}

.cl-latest-card:hover .cl-latest-button,
.cl-latest-card:focus-visible .cl-latest-button {
  transform: translateX(2px);
  background: #bb2d3b;
  box-shadow: 0 12px 26px rgba(220, 53, 69, 0.34);
}

.cl-watch-summary-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: #f8fafc;
  background: rgba(22, 18, 28, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  text-align: left;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cl-watch-summary-header {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cl-watch-summary-header h5 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.25;
}

.cl-watch-summary-topic {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.cl-watch-summary-reference {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.cl-watch-summary-reference span {
  color: rgba(215, 179, 93, 0.95);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.cl-watch-summary-hook {
  display: grid;
  gap: 7px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #d7b35d;
  border-radius: 7px;
}

.cl-watch-summary-hook span,
.cl-watch-summary-section h6 {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.cl-watch-summary-hook p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  line-height: 1.5;
}

.cl-watch-summary-section {
  display: grid;
  gap: 9px;
}

.cl-watch-summary-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.68;
}

.cl-watch-summary-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cl-watch-summary-points li {
  position: relative;
  padding: 9px 10px 9px 24px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  font-size: 0.86rem;
  line-height: 1.38;
}

.cl-watch-summary-points li::before {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 5px;
  height: 5px;
  background: #d7b35d;
  border-radius: 999px;
  content: "";
}

.cl-watch-summary-card--loading {
  gap: 10px;
}

.cl-watch-summary-card--loading .cl-summary-skeleton {
  background: rgba(255, 255, 255, 0.18);
}

.cl-watch-summary-card--loading .cl-summary-skeleton::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent);
}

.cl-watch-summary-note {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: left;
}

.cl-watch-summary-note a {
  color: #fff;
  font-weight: 800;
}

.frosted-content > div > small {
  display: block;
  margin-top: 3px;
  padding-inline: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: left;
}

.frosted-content > div > small a {
  color: #fff !important;
  font-weight: 800;
}

@keyframes cl-shimmer {
  100% { transform: translateX(100%); }
}

@media (min-width: 768px) {
  .cl-latest-body.is-live-body {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 8px;
  }

  .cl-latest-body.is-live-body .cl-latest-heading {
    max-width: 460px;
    justify-items: center;
  }

  .cl-latest-body.is-live-body .cl-latest-meta {
    justify-content: center;
  }

  .cl-live-rail {
    gap: 10px;
    min-width: 0;
  }

  .cl-live-rail .cl-latest-kicker {
    justify-self: center;
  }
}

@media (max-width: 992px) {
  .sidebar-toggle {
    top: calc(env(safe-area-inset-top, 0px) + 58px);
  }

  #sidebar.cl-video-nav.expanded-sidebar {
    width: 100vw;
  }

  .cl-video-nav__expanded {
    padding: 68px 10px 16px;
  }

  .cl-playlist-header {
    grid-template-columns: 72px minmax(0, 1fr) 26px;
  }

  .cl-playlist-thumb {
    width: 72px;
  }

  .cl-episode-button {
    grid-template-columns: minmax(0, 1fr);
  }

  .cl-episode-side {
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
  }

  .cl-latest-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    min-height: 170px;
    padding: 12px;
  }

  .cl-latest-media {
    min-height: 128px;
  }

  .cl-latest-card.is-live-card .cl-latest-media {
    min-height: 84px;
  }

  .cl-latest-title {
    font-size: 0.98rem;
  }

  .cl-summary-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .cl-watch-summary-points {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .cl-latest-wrap {
    width: 100%;
  }

  .cl-latest-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 12px;
  }

  .cl-latest-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .cl-latest-card.is-live-card .cl-latest-media {
    min-height: 0;
  }

  .cl-latest-kicker {
    min-height: 21px;
    padding: 3px 7px;
    font-size: 0.64rem;
  }

  .cl-latest-topline {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: 6px;
  }

  .cl-latest-topline.is-live-topline {
    justify-items: start;
  }

  .cl-latest-meta {
    gap: 5px 10px;
    font-size: 0.73rem;
    justify-content: flex-start;
  }

  .cl-latest-summary {
    min-height: 0;
    gap: 7px;
  }

  .cl-latest-hook {
    font-size: 0.76rem;
    line-height: 1.34;
    -webkit-line-clamp: 2;
  }

  .cl-summary-points {
    gap: 6px;
  }

  .cl-summary-points li {
    font-size: 0.75rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }

  .cl-latest-button {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding-inline: 10px !important;
    font-size: 0.78rem;
  }

  .cl-latest-button--inline {
    margin-top: 2px;
  }

  .cl-watch-summary-card {
    gap: 9px;
    padding: 12px;
  }

  .cl-watch-summary-header h5 {
    font-size: 1rem;
  }

  .cl-watch-summary-hook {
    padding: 8px 9px;
  }

  .cl-watch-summary-hook p,
  .cl-watch-summary-text {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .cl-watch-summary-points li {
    padding: 7px 8px 7px 21px;
    font-size: 0.8rem;
  }

  .cl-watch-summary-points li::before {
    top: 12px;
    left: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cl-latest-card,
  .cl-latest-image,
  .cl-latest-button {
    transition: none;
  }

  .cl-latest-card:hover,
  .cl-latest-card:focus-visible,
  .cl-latest-card:hover .cl-latest-image,
  .cl-latest-card:focus-visible .cl-latest-image,
  .cl-latest-card:hover .cl-latest-button,
  .cl-latest-card:focus-visible .cl-latest-button {
    transform: none;
  }
}

@media (max-width: 380px) {
  .cl-latest-card {
    padding: 10px;
  }

  .cl-latest-title {
    font-size: 0.94rem;
  }

  .cl-summary-points li {
    font-size: 0.72rem;
  }
}
