.atl-watch-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #51606f;
}

.atl-watch-breadcrumbs a {
  color: var(--atl-color-primary);
  font-weight: 700;
  text-decoration: none;
}

.atl-watch-breadcrumbs a:hover {
  text-decoration: underline;
}

.atl-watch-note-card {
  background: linear-gradient(135deg, rgba(230, 242, 234, 0.9), rgba(247, 251, 248, 0.96));
  border: 1px solid var(--atl-color-border-strong);
}

.atl-watch-stat-grid,
.atl-watch-pack-grid,
.atl-watch-collection-grid,
.atl-watch-series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.atl-watch-stat {
  padding: 18px;
  border-radius: 14px;
  background: var(--atl-color-surface);
  border: 1px solid var(--atl-color-border-subtle);
  box-shadow: 0 8px 20px rgba(31, 107, 71, 0.06);
}

.atl-watch-stat strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #111827;
}

.atl-watch-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 420px);
  gap: 18px;
  align-items: stretch;
}

.atl-watch-stage.is-portrait-layout {
  grid-template-columns: minmax(320px, 388px) minmax(320px, 440px);
  justify-content: center;
  gap: 30px;
  align-items: start;
}

.atl-watch-player-card,
.atl-watch-side-card {
  border-radius: 16px;
  border: 1px solid var(--atl-color-border-strong);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.atl-watch-player-card {
  background: #07111b;
}

.atl-watch-player-card.is-portrait {
  display: block;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.atl-watch-player-card iframe {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 0;
  display: block;
}

.atl-watch-player-media {
  min-height: 320px;
}

.atl-watch-player-card.is-portrait .atl-watch-player-media {
  width: min(100%, 360px);
  min-height: auto;
  margin: 0 auto;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(56, 104, 79, 0.28);
  background:
    radial-gradient(circle at top, rgba(72, 143, 105, 0.18), rgba(8, 18, 27, 0) 40%),
    linear-gradient(180deg, #0a1620 0%, #0d1e29 100%);
  box-shadow:
    0 22px 44px rgba(5, 16, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.atl-watch-player-card.is-portrait iframe,
.atl-watch-player-card.is-portrait .atl-watch-poster {
  width: 100%;
  min-height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(4, 12, 18, 0.2);
}

.atl-watch-poster {
  position: relative;
  width: 100%;
  min-height: 320px;
  border: 0;
  padding: 0;
  background: #07111b;
  cursor: pointer;
  display: block;
  text-align: left;
}

.atl-watch-poster img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
}

.atl-watch-player-card.is-portrait .atl-watch-poster img {
  min-height: auto;
  aspect-ratio: 9 / 16;
  filter: brightness(0.84);
}

.atl-watch-player-card.is-portrait .atl-watch-poster::after {
  background: linear-gradient(180deg, rgba(7, 17, 27, 0.02), rgba(7, 17, 27, 0.14));
}

.atl-watch-player-card.is-portrait .atl-watch-play {
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(7, 17, 27, 0.2);
}

.atl-watch-stage.is-portrait-layout .atl-watch-side-card {
  align-self: start;
  min-height: 0;
  height: fit-content;
  margin-top: 18px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.atl-watch-stage.is-portrait-layout .atl-watch-side-card .atl-note {
  margin-top: 4px;
}

.atl-watch-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 27, 0.06), rgba(7, 17, 27, 0.48));
}

.atl-watch-play {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #08121b;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}

.atl-watch-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--atl-color-primary);
}

.atl-watch-side-card {
  background: var(--atl-color-surface);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atl-watch-side-card h2,
.atl-watch-side-card h3 {
  margin: 0;
}

.atl-watch-side-card .atl-lead {
  margin: 0;
}

.atl-watch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atl-watch-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--atl-color-primary-soft);
  border: 1px solid var(--atl-color-border-strong);
  color: #183a29;
  font-size: 13px;
  font-weight: 700;
}

.atl-watch-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.atl-watch-filter-btn {
  appearance: none;
  border: 1px solid var(--atl-color-border-strong);
  background: var(--atl-color-surface-alt);
  color: #0f172a;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.atl-watch-filter-btn:hover,
.atl-watch-filter-btn.is-active {
  background: var(--atl-color-primary);
  border-color: var(--atl-color-primary);
  color: #ffffff;
}

.atl-watch-grid {
  align-items: stretch;
}

.atl-watch-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atl-watch-card[hidden] {
  display: none !important;
}

.atl-watch-card.is-active {
  border-color: rgba(31, 107, 71, 0.42);
  box-shadow: 0 14px 28px rgba(31, 107, 71, 0.12);
}

.atl-watch-card-media {
  position: relative;
}

.atl-watch-card-trigger {
  border: 0;
  padding: 0;
  width: 100%;
  background: #08121b;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  position: relative;
}

.atl-watch-card-trigger img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.84);
}

.atl-watch-card-trigger span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #08121b;
  font-weight: 800;
}

.atl-watch-card-trigger span::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--atl-color-primary);
}

.atl-watch-card h3 {
  margin: 0;
}

.atl-watch-card .atl-kicker {
  margin-bottom: 0;
}

.atl-watch-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.atl-watch-pack-card,
.atl-watch-collection-card,
.atl-watch-series-card {
  background: var(--atl-color-surface);
  border: 1px solid var(--atl-color-border-subtle);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(31, 107, 71, 0.06);
}

.atl-watch-pack-card h3,
.atl-watch-collection-card h3,
.atl-watch-series-card h3 {
  margin-top: 0;
}

.atl-watch-pack-card .atl-note,
.atl-watch-series-card .atl-note {
  margin-top: 10px;
}

.atl-watch-series-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.atl-watch-series-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f7f4;
  border: 1px solid var(--atl-color-border-subtle);
  font-size: 13px;
  font-weight: 700;
  color: #284433;
}

.atl-watch-footer {
  margin-top: 28px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--atl-color-border-strong);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0) 48%),
    linear-gradient(135deg, #f4fbf7 0%, #e5f3ea 50%, #d9ecdf 100%);
  box-shadow: 0 14px 30px rgba(31, 107, 71, 0.12);
}

.atl-watch-footer h2,
.atl-watch-footer h3 {
  margin-top: 0;
}

.atl-watch-footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.atl-watch-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 460px);
  gap: 24px;
  align-items: start;
}

.atl-watch-home-copy {
  position: relative;
  padding: 34px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #f6fcf8 0%, #e6f4ec 46%, #d4ebdf 100%);
  border: 1px solid rgba(31, 107, 71, 0.18);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.atl-watch-home-copy::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -28px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 107, 71, 0.16) 0, rgba(31, 107, 71, 0) 72%);
}

.atl-watch-home-copy h1 {
  max-width: 560px;
  margin-bottom: 14px;
}

.atl-watch-home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.atl-watch-home-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 107, 71, 0.16);
  color: #214733;
  font-size: 13px;
  font-weight: 700;
}

.atl-watch-home-copy .atl-cta-group {
  margin-top: 18px;
}

.atl-watch-home-spotlight {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 71, 0.18);
  background: #0d1720;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}

.atl-watch-home-spotlight:hover {
  transform: translateY(-2px);
}

.atl-watch-home-spotlight-media {
  position: relative;
  min-height: 340px;
}

.atl-watch-home-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  margin: 0;
  filter: brightness(0.68) saturate(0.9);
}

.atl-watch-home-spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(6, 14, 20, 0.88) 0, rgba(6, 14, 20, 0.56) 26%, rgba(6, 14, 20, 0.08) 54%, rgba(6, 14, 20, 0) 68%),
    linear-gradient(180deg, rgba(6, 14, 20, 0.02), rgba(6, 14, 20, 0.5) 52%, rgba(6, 14, 20, 0.82) 100%);
}

.atl-watch-home-play {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #07111b;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.atl-watch-home-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--atl-color-primary);
}

.atl-watch-home-spotlight-body {
  position: relative;
  z-index: 1;
  margin: -74px 18px 18px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 18, 26, 0.88), rgba(10, 22, 30, 0.94));
  backdrop-filter: blur(16px);
  color: #ecf8f0;
}

.atl-watch-home-spotlight-body h2 {
  color: #ffffff;
  border: 0;
  padding: 0;
  margin: 0 0 10px;
}

.atl-watch-home-spotlight-body p {
  color: rgba(236, 248, 240, 0.84);
  margin-bottom: 12px;
}

.atl-watch-home-spotlight-body strong {
  color: #9be0ba;
}

.atl-watch-home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.atl-watch-home-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d9f4e4;
  font-size: 13px;
  font-weight: 700;
}

.atl-watch-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.atl-watch-home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--atl-color-border-strong);
  background: var(--atl-color-surface);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
}

.atl-watch-home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.atl-watch-home-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 107, 71, 0.11) 0, rgba(31, 107, 71, 0) 72%);
  pointer-events: none;
}

.atl-watch-home-card-media {
  position: relative;
  min-height: 0;
}

.atl-watch-home-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 24, 0.04), rgba(10, 18, 24, 0.16));
  pointer-events: none;
}

.atl-watch-home-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 250px;
  object-fit: cover;
  display: block;
  margin: 0;
}

.atl-watch-home-card-body {
  position: relative;
  z-index: 1;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.atl-watch-home-card-body h3 {
  margin: 0;
}

.atl-watch-home-card-body p {
  margin: 0;
  color: #334450;
}

.atl-watch-home-card-body strong {
  color: var(--atl-color-primary);
  margin-top: auto;
}

.atl-watch-home-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atl-watch-home-card-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f7f3;
  border: 1px solid var(--atl-color-border-subtle);
  color: #274432;
  font-size: 12px;
  font-weight: 700;
}

.atl-watch-home-card--work {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.atl-watch-home-card--kids {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf4 100%);
}

.atl-watch-home-card--adult {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.atl-watch-home-card--path {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
}

.atl-watch-path-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 22px;
  align-items: start;
}

.atl-watch-path-copy {
  position: relative;
  padding: 32px 30px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 48%),
    linear-gradient(135deg, #f5fcf7 0%, #e4f3ea 52%, #d8ede2 100%);
  border: 1px solid rgba(31, 107, 71, 0.18);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.atl-watch-path-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -48px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 107, 71, 0.15) 0, rgba(31, 107, 71, 0) 70%);
}

.atl-watch-path-copy h1 {
  max-width: 700px;
}

.atl-watch-path-overview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 24px;
  border: 1px solid rgba(31, 107, 71, 0.16);
  background: #0d1720;
  padding: 22px 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.atl-watch-path-overview h2,
.atl-watch-path-overview h3 {
  color: #ffffff;
  margin: 0;
}

.atl-watch-path-overview > .atl-kicker {
  color: #d8f5e4;
}

.atl-watch-path-overview p {
  margin: 0;
  color: rgba(235, 247, 240, 0.82);
}

.atl-watch-path-lane {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.atl-watch-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.atl-watch-path-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--atl-color-surface);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 71, 0.14);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.atl-watch-path-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  border-color: rgba(31, 107, 71, 0.24);
}

.atl-watch-path-card-large {
  grid-column: span 2;
}

.atl-watch-path-card-media {
  position: relative;
  min-height: 210px;
  background: #e7f3eb;
}

.atl-watch-path-card-large .atl-watch-path-card-media {
  min-height: 280px;
}

.atl-watch-path-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 27, 0) 45%, rgba(7, 17, 27, 0.12) 100%);
}

.atl-watch-path-card-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.atl-watch-path-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 20px;
  flex: 1;
}

.atl-watch-path-card-body h3 {
  margin: 0;
}

.atl-watch-path-card-body p {
  margin: 0;
  color: #334450;
}

.atl-watch-path-card-body strong {
  color: var(--atl-color-primary);
  margin-top: auto;
}

.atl-watch-track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.atl-watch-track-grid-split {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: stretch;
}

.atl-watch-track-panel {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #f4fbf7 0%, #e4f3ea 52%, #d8ede2 100%);
  border: 1px solid rgba(31, 107, 71, 0.16);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.atl-watch-track-panel h3 {
  margin-top: 0;
}

.atl-watch-next-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.atl-watch-next-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 107, 71, 0.14);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.atl-watch-next-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.1);
}

.atl-watch-next-card strong {
  display: block;
  color: #153725;
  margin-bottom: 8px;
}

.atl-watch-next-card p {
  margin: 0;
  color: #334450;
}

.atl-watch-sequence-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.atl-watch-sequence-bar span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 107, 71, 0.16);
  color: #214733;
  font-size: 13px;
  font-weight: 800;
}

.atl-watch-step-card .atl-watch-path-card-body {
  gap: 10px;
}

.atl-watch-step-order {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--atl-color-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.atl-watch-quick-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 107, 71, 0.16);
  box-shadow: 0 12px 24px rgba(31, 107, 71, 0.06);
}

.atl-watch-quick-card h3 {
  margin-top: 0;
}

.atl-watch-muted-list {
  margin: 0;
  padding-left: 18px;
  color: #31404c;
}

.atl-watch-muted-list li {
  margin: 6px 0;
}

@media (max-width: 920px) {
  .atl-watch-stage {
    grid-template-columns: 1fr;
  }

  .atl-watch-stage.is-portrait-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .atl-watch-player-card.is-portrait {
    padding: 0;
  }

  .atl-watch-player-card.is-portrait .atl-watch-player-media {
    width: min(100%, 320px);
    padding: 12px;
    border-radius: 24px;
  }

  .atl-watch-stage.is-portrait-layout .atl-watch-side-card {
    margin-top: 0;
  }

  .atl-watch-home-hero {
    grid-template-columns: 1fr;
  }

  .atl-watch-path-hero {
    grid-template-columns: 1fr;
  }

  .atl-watch-home-grid {
    grid-template-columns: 1fr;
  }

  .atl-watch-path-grid {
    grid-template-columns: 1fr;
  }

  .atl-watch-track-grid-split {
    grid-template-columns: 1fr;
  }

  .atl-watch-path-card-large {
    grid-column: auto;
  }

  .atl-watch-home-card {
    grid-template-columns: 1fr;
  }

  .atl-watch-home-card-media img {
    min-height: 200px;
  }

  .atl-watch-home-quick-grid {
    grid-template-columns: 1fr;
  }

  .atl-watch-path-card-media,
  .atl-watch-path-card-large .atl-watch-path-card-media {
    min-height: 220px;
  }

  .atl-watch-player-media,
  .atl-watch-poster,
  .atl-watch-poster img {
    min-height: 240px;
  }
}
