/* Channel-theming bridge is defined in base.html <style>; this file holds
   editorial component classes + tiny tweaks that fit better here than as
   inline utility classes. */

/* Tailwind's @tailwindcss/forms plugin draws a 1px border on all inputs,
   which shows up as a visible rectangle inside a DaisyUI `.input` pill
   wrapper (our search fields, language switcher, etc.). Strip the inner
   border/shadow when the input is nested in .input / .select / .textarea. */
.input > input,
.input > input:focus,
.input > select,
.input > textarea {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
}

/* ===================================================================
   Custom audio player (.ec-player) — driven by audio-player.js Alpine
   component. Wraps a hidden native <audio id="player"> so search.js
   still controls it. Editorial look: JetBrains Mono time labels,
   brand-color progress fill, round primary brand play button.
   =================================================================== */
.ec-player {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem 1rem;
  padding: 0.7rem 0.85rem;
}
.ec-player__audio {
  display: none;
}

.ec-player__play {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--main-brand-color);
  color: #fff;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08),
              0 4px 14px color-mix(in oklab, var(--main-brand-color) 28%, transparent);
  transition: transform 160ms ease-out, filter 160ms ease-out, box-shadow 160ms ease-out;
}
.ec-player__play:hover {
  transform: scale(1.05);
  filter: brightness(1.06);
}
.ec-player__play:active {
  transform: scale(0.97);
}
.ec-player__play:focus-visible {
  outline: 2px solid var(--main-brand-color);
  outline-offset: 3px;
}
.ec-player__play-icon {
  font-size: 1.25rem;
}
.ec-player__play-icon--play {
  margin-left: 3px; /* optical centering of the play triangle */
}

.ec-player__scrub {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.75rem;
}
.ec-player__track {
  position: relative;
  height: 6px;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--text-muted) 22%, transparent);
  cursor: pointer;
  touch-action: none;
  transition: height 140ms ease-out;
}
.ec-player__track:hover,
.ec-player__track:focus-visible {
  height: 8px;
  outline: none;
}
.ec-player__track-buffer,
.ec-player__track-fill {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}
.ec-player__track-buffer {
  background: color-mix(in oklab, var(--text-muted) 32%, transparent);
}
.ec-player__track-fill {
  background: var(--main-brand-color);
}
.ec-player__track-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  background: var(--main-brand-color);
  box-shadow: 0 0 0 2px var(--card-bg), 0 1px 4px rgb(0 0 0 / 0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity 140ms ease-out;
}
.ec-player__track:hover .ec-player__track-thumb,
.ec-player__track:focus-visible .ec-player__track-thumb {
  opacity: 1;
}

.ec-player__time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.ec-player__time--elapsed {
  color: var(--text-heading);
}
.ec-player__time--remain {
  color: color-mix(in oklab, var(--text-muted) 75%, transparent);
}

.ec-player__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  flex-shrink: 0;
}
.ec-player__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.65rem;
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: color 140ms ease-out, background 140ms ease-out;
}
.ec-player__btn:hover {
  color: var(--text-heading);
  background: color-mix(in oklab, var(--main-brand-color) 10%, transparent);
}
.ec-player__btn:focus-visible {
  outline: 2px solid var(--main-brand-color);
  outline-offset: 2px;
  color: var(--text-heading);
}
.ec-player__btn iconify-icon {
  font-size: 1rem;
}
.ec-player__btn-num {
  font-size: 0.68rem;
}
.ec-player__btn--speed {
  min-width: 2.6rem;
  justify-content: center;
}

@media (max-width: 640px) {
  /* Flatten the scrub's inner grid into the outer one (display: contents)
     so the play button can occupy only the "track" row — that way
     align-items: center on .ec-player vertically centers it against the
     seekbar, not the whole scrub block including the times below. */
  .ec-player {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "play  track"
      ".     times"
      "ctrls ctrls";
    column-gap: 0.85rem;
    row-gap: 0;
  }
  .ec-player__play          { grid-area: play; }
  .ec-player__scrub         { display: contents; }
  .ec-player__track         { grid-area: track; }
  .ec-player__time--elapsed { grid-area: times; justify-self: start; margin-top: -0.25rem; }
  .ec-player__time--remain  { grid-area: times; justify-self: end;   margin-top: -0.25rem; }
  .ec-player__controls {
    grid-area: ctrls;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.4rem;
  }
}

/* Transcript cue — currently playing */
.cue-active {
  background-color: color-mix(in oklab, var(--main-brand-color) 18%, transparent);
  border-left: 3px solid var(--main-brand-color);
}
/* Transcript cue — contains a match for the active search query */
.cue-row.cue-has-match {
  background-color: color-mix(in oklab, var(--main-brand-color) 4%, transparent);
}
.cue-row.cue-has-match.cue-active {
  background-color: color-mix(in oklab, var(--main-brand-color) 22%, transparent);
}

/* Timeline markers (carried over from Bootstrap design, re-scoped) */
.timeline-track {
  background-color: oklch(var(--b2));
  height: 4px;
  border-radius: 9999px;
  position: relative;
}
.timeline-marker {
  width: 14px;
  height: 14px;
  background-color: var(--main-brand-color);
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 2px oklch(var(--b1));
  transition: transform 120ms ease-out;
}
.timeline-marker:hover {
  transform: translate(-50%, -50%) scale(1.4);
}
.timeline-marker--active {
  transform: translate(-50%, -50%) scale(1.55);
  box-shadow: 0 0 0 2px oklch(var(--b1)),
              0 0 0 4px color-mix(in oklab, var(--main-brand-color) 40%, transparent);
}

/* Highlighted search match — bright enough to be unmissable across brand themes. */
mark.search-hit,
.search-hit mark {
  background-color: color-mix(in oklab, var(--main-brand-color) 55%, #fde68a);
  color: var(--text-heading);
  font-weight: 600;
  border-radius: 0.25rem;
  padding: 0.05rem 0.25rem;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--main-brand-color) 45%, transparent);
}
html[data-theme="enacastdark"] mark.search-hit,
html[data-theme="enacastdark"] .search-hit mark {
  background-color: color-mix(in oklab, var(--main-brand-color) 65%, #92400e);
  color: #fff8e1;
}

/* Glow highlight for scrolled-into-view moment card */
.highlight-me {
  animation: highlight-pulse 700ms 2;
  border-radius: 0.5rem;
}
@keyframes highlight-pulse {
  50% {
    background: color-mix(in oklab, var(--main-brand-color) 30%, transparent);
  }
}

/* Theme-toggle icon swap — shows the opposite-of-current icon. */
.theme-icon-sun { display: none; }
.theme-icon-moon { display: inline-block; }
html[data-theme="enacastdark"] .theme-icon-sun { display: inline-block; }
html[data-theme="enacastdark"] .theme-icon-moon { display: none; }

/* ===================================================================
   Editorial episode list — ported from the show.html design.
   3-digit serif episode number, square thumb, serif title, dek, chips,
   meta column with round play button + mono dateline. Featured variant
   styles the first (latest) row as an editorial card.
   =================================================================== */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}
.section-head__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-heading);
}
.section-head__kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.episode-row {
  display: grid;
  grid-template-columns: 56px 96px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0.875rem;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background-color 180ms ease-out;
}
.episode-row:first-child { border-top: 0; }
.episode-row:hover {
  background-color: color-mix(in oklab, var(--main-brand-color) 5%, transparent);
}
.episode-row__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--main-brand-color);
  opacity: 0;
  transition: opacity 180ms ease-out;
}
.episode-row:hover .episode-row__accent,
.episode-row:focus-within .episode-row__accent {
  opacity: 1;
}

.episode-row__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: color-mix(in oklab, var(--text-muted) 80%, transparent);
  font-variant-numeric: tabular-nums;
  padding-top: 0.15rem;
}

.episode-row__thumb {
  width: 96px;
  height: 96px;
  border-radius: 0.375rem;
  overflow: hidden;
  background: color-mix(in oklab, var(--main-brand-color) 8%, var(--card-bg));
  flex-shrink: 0;
}
.episode-row__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.episode-row--no-thumb { grid-template-columns: 56px minmax(0, 1fr) auto; }

.episode-row__body { min-width: 0; }
.episode-row__meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.episode-row__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-heading);
  margin: 0 0 0.4rem;
  text-wrap: balance;
  text-decoration: underline 2px transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 180ms ease-out;
}
.episode-row:hover .episode-row__title {
  text-decoration-color: var(--main-brand-color);
}

.episode-row__dek {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 62ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-row__tags {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.episode-row__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  min-width: 10rem;
}

.episode-row__play {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 180ms ease-out, background 180ms ease-out,
              border-color 180ms ease-out, color 180ms ease-out;
}
.episode-row:hover .episode-row__play,
.episode-row:focus-within .episode-row__play {
  background: var(--main-brand-color);
  border-color: var(--main-brand-color);
  color: var(--card-bg);
}
.episode-row__play:hover { transform: scale(1.05); }
.episode-row__play iconify-icon { font-size: 1rem; margin-left: 2px; /* optical centering of the play triangle */ }

.episode-row__dateline {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Featured row — editorial card treatment for the latest episode. A
   brand-color top rule + in-body "LATEST EPISODE · #NNN" kicker flag
   why this row looks different from the rest. */
.episode-row--featured {
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--main-brand-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 0.5rem 0 0.75rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.03);
}
.episode-row__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--main-brand-color);
  margin-bottom: 0.75rem;
}
/* Tabular figures look over-spaced inside the kicker's 0.08em tracking — tighten the #NNN string. */
.episode-row__kicker .tabular-nums { letter-spacing: 0.04em; }
.episode-row--featured + .episode-row { border-top: 0; }
.episode-row--featured .episode-row__accent { display: none; }
.episode-row--featured .episode-row__num { display: none; }
.episode-row--featured .episode-row__thumb { width: 180px; height: 180px; border-radius: 0.5rem; }
.episode-row--featured.episode-row--no-thumb { grid-template-columns: minmax(0, 1fr) auto; }
.episode-row--featured .episode-row__title { font-size: 2rem; }
.episode-row--featured .episode-row__dek { -webkit-line-clamp: 3; }

@media (max-width: 768px) {
  .episode-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.9rem;
  }
  .episode-row--no-thumb { grid-template-columns: minmax(0, 1fr); }
  .episode-row__num { display: none; }
  .episode-row__thumb { width: 72px; height: 72px; }
  .episode-row__title { font-size: 1.1rem; }
  .episode-row__dek { -webkit-line-clamp: 2; }
  .episode-row__side { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; min-width: 0; }
  .episode-row__dateline { text-align: left; }
  .episode-row--featured {
    grid-template-columns: minmax(0, 1fr);
    padding: 1rem;
  }
  .episode-row--featured .episode-row__thumb { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .episode-row--featured .episode-row__title { font-size: 1.5rem; }
}

/* Serif / mono utilities for the sidebar + misc. */
.text-serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.015em; }
.text-mono  { font-family: var(--font-mono); letter-spacing: 0.04em; }

.channel-sidebar__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 0.98;
  color: var(--text-heading);
}
.channel-sidebar__stat-num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--text-heading);
}

/* Tag chip — compact, brand-tinted pill used for AI-extracted topic tags. */
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 9999px;
  color: var(--text-muted);
  background: color-mix(in oklab, var(--main-brand-color) 7%, transparent);
  border: 1px solid color-mix(in oklab, var(--main-brand-color) 18%, transparent);
  transition: color 160ms ease-out, background 160ms ease-out, border-color 160ms ease-out;
  white-space: nowrap;
}
.tag-chip::before {
  content: "#";
  opacity: 0.5;
  font-weight: 600;
}
.tag-chip:hover,
.episode-row:hover .tag-chip {
  color: var(--text-heading);
  background: color-mix(in oklab, var(--main-brand-color) 14%, transparent);
  border-color: color-mix(in oklab, var(--main-brand-color) 32%, transparent);
}
.tag-chip--lg {
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
}

/* Chapter / section list — circular play button leading each row. */
.chapter-item {
  display: flex;
  gap: 0.85rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  text-align: left;
  align-items: flex-start;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 160ms ease-out;
}
.chapter-item:hover {
  background: color-mix(in oklab, var(--main-brand-color) 6%, transparent);
}
.chapter-item:focus-visible {
  outline: 2px solid var(--main-brand-color);
  outline-offset: 2px;
}
.chapter-play {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--main-brand-color) 10%, transparent);
  color: var(--main-brand-color);
  border: 1px solid color-mix(in oklab, var(--main-brand-color) 22%, transparent);
  transition: background 160ms ease-out, color 160ms ease-out,
              border-color 160ms ease-out, transform 160ms ease-out;
}
.chapter-play__icon {
  font-size: 1rem;
  margin-left: 2px; /* optical centering of the play triangle */
}
.chapter-item:hover .chapter-play {
  background: var(--main-brand-color);
  color: #fff;
  border-color: transparent;
  transform: scale(1.04);
}
.chapter-item--active {
  background: color-mix(in oklab, var(--main-brand-color) 10%, transparent);
  box-shadow: inset 3px 0 0 var(--main-brand-color);
}
.chapter-item--active .chapter-play {
  background: var(--main-brand-color);
  color: #fff;
  border-color: transparent;
}
.chapter-body {
  min-width: 0;
  flex: 1;
  padding-top: 0.25rem;
}
.chapter-title {
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-heading);
}
.chapter-time {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}
.chapter-summary {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Editorial tab strip (episode detail). Flat row with a bottom-border rail,
   mono uppercase labels, --main-brand-color underline on the active tab. */
.tabs-rail {
  display: inline-flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border);
}
.tabs-rail .tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  margin-bottom: -1px;  /* overlap the rail's bottom border so the active underline replaces it */
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: color 160ms ease-out, border-color 160ms ease-out;
}
.tabs-rail .tab__icon {
  font-size: 0.95rem;
  opacity: 0.85;
}
.tabs-rail .tab:hover {
  color: var(--text-heading);
}
.tabs-rail .tab:focus-visible {
  outline: 2px solid var(--main-brand-color);
  outline-offset: 2px;
  border-radius: 2px;
}
.tabs-rail .tab.tab-active {
  color: var(--text-heading);
  border-bottom-color: var(--main-brand-color);
}
.tabs-rail .tab.tab-active .tab__icon {
  opacity: 1;
  color: var(--main-brand-color);
}

/* View transitions — cross-page fade for episode navigation. */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 180ms;
}

/* Channel card hover — editorial serif title, underline on hover. */
.channel-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.channel-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-decoration: underline 2px transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 180ms ease-out;
}
.channel-card:hover .channel-card__title {
  text-decoration-color: var(--main-brand-color);
}

/* ===================================================================
   Home (dashboard) — editorial hero + marquee ticker.
   =================================================================== */
.home-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 56rem;
}
.home-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin: 0;
  text-wrap: balance;
}
.home-hero__title .headline-em {
  color: var(--main-brand-color);
  font-style: italic;
}
.home-hero__deck {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.9rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  letter-spacing: -0.005em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker__track {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  animation: ticker-scroll 60s linear infinite;
}
.ticker__track > * { flex-shrink: 0; }
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track { animation-play-state: paused; }
.ticker__item {
  color: inherit;
  text-decoration: underline 1px transparent;
  text-underline-offset: 4px;
  transition: color 180ms ease-out, text-decoration-color 180ms ease-out;
}
.ticker__item:hover,
.ticker__item:focus-visible {
  color: var(--text-heading);
  text-decoration-color: var(--main-brand-color);
  outline: none;
}
.ticker__dot { color: var(--main-brand-color); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}
