/* ============================================================
   ARTIST PAGE — Variables adicionales
   ============================================================ */
:root {
  --color-teal:    #00cfc8;
  --color-bio-bg:  #1c1c1c;
  --color-dest-bg: #141414;
}

/* ============================================================
   HERO DEL ARTISTA
   ============================================================ */
.ap-hero {
  background:
    radial-gradient(ellipse 140% 90% at 58% 24%, rgba(20, 95, 210, 0.96) 0%, rgba(10, 50, 140, 0.82) 40%, transparent 70%),
    linear-gradient(175deg, #131b32 0%, #0a0a0a 60%);
  padding-block-start: calc(var(--header-height) + 56px);
  padding-block-end: 80px;
  padding-inline: var(--space-lg);
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
}

.ap-hero__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

/* ── Breadcrumb ── */
.ap-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-block-end: 48px;
}

.ap-hero__bc-link {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.22s ease;
}

.ap-hero__bc-link:hover {
  color: #fff;
}

.ap-hero__bc-sep {
  opacity: 0.35;
}

.ap-hero__bc-current {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Nombre del artista ── */
.ap-hero__name {
  font-size: clamp(2.75rem, 13vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
  margin-block-end: var(--space-lg);

  /* Entrada animada */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ap-hero__name.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Social icons ── */
.ap-hero__socials {
  display: flex;
  align-items: center;
  gap: 12px;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.ap-hero__socials.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ap-socials__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-inline-end: 4px;
}

.ap-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
}

.ap-social-btn:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: scale(1.06);
}

/* ============================================================
   BIO
   ============================================================ */
.ap-bio {
  background-color: var(--color-bio-bg);
  padding: var(--space-2xl) var(--space-lg);
}

.ap-bio__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-xl);
  max-width: 1440px;
  margin-inline: auto;
  align-items: start;
}

/* ── Imagen ── */
.ap-bio__media {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.ap-bio__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Texto ── */
.ap-bio__content {
  padding-block-start: 8px;
}

.ap-bio__eyebrow {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-block-end: var(--space-sm);
}

.ap-bio__title {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: #fff;
  margin-block-end: var(--space-sm);
}

.ap-bio__subtitle {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-block-end: var(--space-lg);
}

.ap-bio__paragraph {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-block-end: var(--space-md);
}

.ap-bio__paragraph:last-child {
  margin-block-end: 0;
}

/* Negrita dentro del párrafo */
.ap-bio__paragraph strong {
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   DESTACADOS
   ============================================================ */
.ap-dest {
  background-color: var(--color-dest-bg);
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.ap-dest__inner {
  max-width: 1440px;
  margin-inline: auto;
}

/* ── Header con línea ── */
.ap-dest__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-block-end: var(--space-xl);
}

.ap-dest__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.ap-dest__rule {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}

/* ── Grid de cards ── */
.ap-dest__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 380px));
  gap: var(--space-md);
}

/* ── Destacado card ── */
.dest-card {
  background-color: #1e1e1e;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease;

  opacity: 0;
  transform: translateY(24px);
}

.dest-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dest-card:hover {
  box-shadow: inset 0 1px 0 var(--color-teal);
}

.dest-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.dest-card:hover .dest-card__img {
  transform: scale(1.04);
}

.dest-card__body {
  padding: var(--space-md);
}

.dest-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-block-end: var(--space-xs);
}

.dest-card__cta {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal);
  transition: opacity 0.22s ease;
}

.dest-card__cta:hover {
  opacity: 0.7;
}

/* ============================================================
   SCROLL REVEAL — genérico
   ============================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.delay-1 { transition-delay: 0.12s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.24s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.36s; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .ap-hero {
    padding-inline: var(--space-md);
  }

  .ap-bio {
    padding: var(--space-xl) var(--space-md);
  }

  .ap-bio__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .ap-dest {
    padding: var(--space-xl) var(--space-md) var(--space-xl);
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
  .ap-hero {
    padding-inline: var(--space-sm);
    padding-block-end: var(--space-xl);
    min-height: 55vh;
    align-items: flex-end;
  }

  .ap-hero__breadcrumb {
    margin-block-end: var(--space-lg);
  }

  .ap-bio {
    padding: var(--space-xl) var(--space-sm);
  }

  .ap-bio__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .ap-bio__media {
    position: static;
  }

  .ap-bio__img {
    aspect-ratio: 3 / 4;
    max-height: 480px;
    object-position: center top;
  }

  .ap-dest {
    padding: var(--space-xl) var(--space-sm);
  }

  .ap-dest__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GALERÍA — marquee infinito
   ============================================================ */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ap-gallery {
  background-color: #111;
  padding-block: var(--space-xl);
  overflow: hidden;
}

.ap-gallery__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.ap-gallery__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.ap-gallery__track:hover {
  animation-play-state: paused;
}

.ap-gallery__img {
  height: 280px;
  width: auto;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: filter 0.5s ease, transform 0.5s ease;
  filter: grayscale(100%) brightness(0.78) contrast(1.05);
  cursor: pointer;
}

.ap-gallery__img:hover {
  filter: grayscale(0%) brightness(1) contrast(1);
  transform: scale(1.03);
}

/* ── Lightbox ── */
.ap-gallery__lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ap-gallery__lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ap-gallery__lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.ap-gallery__lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ap-gallery__lightbox-close:hover {
  color: #fff;
}

/* ============================================================
   VIDEOS — horizontal scroll con lazy iframe
   ============================================================ */
.ap-videos {
  background-color: #0a0a0a;
  padding: var(--space-xl) 0 var(--space-2xl);
}

.ap-videos__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.ap-videos__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-block-end: var(--space-xl);
}

.ap-videos__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.ap-videos__rule {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}

.ap-videos__marquee-wrap {
  overflow: hidden;
  margin-block-start: var(--space-xl);
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

@keyframes marquee-videos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ap-videos__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-videos 50s linear infinite;
  will-change: transform;
  padding-block-end: var(--space-md);
}

.ap-videos__track:hover {
  animation-play-state: paused;
}

/* ── Video card ── */
.vid-card {
  flex-shrink: 0;
  width: clamp(260px, 36vw, 480px);
  background-color: #1a1a1a;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  opacity: 1;
  transform: none;
}

.vid-card__thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.vid-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8);
}

.vid-card:hover .vid-card__thumb {
  transform: scale(1.04);
  filter: brightness(0.6);
}

/* ── Botón play ── */
.vid-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.vid-card__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.vid-card:hover .vid-card__play-btn {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
  transform: scale(1.1);
}

.vid-card__play-btn i {
  color: #fff;
  font-size: 20px;
  margin-left: 4px;
}

/* ── iframe (reemplaza thumbnail al hacer click) ── */
.vid-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vid-card__body {
  padding: 14px 16px;
}

.vid-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ============================================================
   VIDEOS — Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .ap-videos__inner {
    padding-inline: var(--space-md);
  }
}

@media (max-width: 640px) {
  .ap-gallery__img {
    height: 200px;
  }

  .ap-videos__inner {
    padding-inline: var(--space-sm);
  }

  .vid-card {
    width: 80vw;
  }
}

/* ============================================================
   INSTAGRAM — marquee de posts
   ============================================================ */
.ap-insta {
  background-color: #111;
  padding-block: var(--space-xl) var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ap-insta__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.ap-insta__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-block-end: var(--space-xl);
}

.ap-insta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.ap-insta__rule {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}

.ap-insta__follow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.ap-insta__follow:hover {
  opacity: 0.7;
}

.ap-insta__marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

@keyframes marquee-insta-artist {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ap-insta__track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: marquee-insta-artist 22s linear infinite;
  will-change: transform;
}

.ap-insta__track:hover {
  animation-play-state: paused;
}

/* ── Post card (compartida con bio.css) ── */
.insta-card {
  flex-shrink: 0;
  width: clamp(220px, 28vw, 380px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  display: block;
}

.insta-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(55%) brightness(0.88);
}

.insta-card:hover .insta-card__img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.insta-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.insta-card:hover .insta-card__overlay {
  background-color: rgba(0, 0, 0, 0.35);
}

.insta-card__icon {
  color: #fff;
  font-size: 1.75rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.insta-card:hover .insta-card__icon {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 640px) {
  .insta-card {
    width: 72vw;
  }
}

@media (max-width: 1024px) {
  .ap-insta__inner {
    padding-inline: var(--space-md);
  }
}

@media (max-width: 640px) {
  .ap-insta__inner {
    padding-inline: var(--space-sm);
  }

  .ap-insta__track {
    animation-duration: 18s;
  }
}

/* ============================================================
   BOOKING
   ============================================================ */
.ap-book {
  background-color: #0e0e0e;
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ap-book__inner {
  max-width: 1440px;
  margin-inline: auto;
}

/* ── Header con línea (igual que destacados) ── */
.ap-book__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-block-end: var(--space-xl);
}

.ap-book__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.ap-book__rule {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}

/* ── Layout: info a la izquierda, form a la derecha ── */
.ap-book__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* ── Columna izquierda (info) ── */
.ap-book__info-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-block-end: var(--space-lg);
}

.ap-book__info-text strong {
  color: #fff;
}

.ap-book__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ap-book__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ap-book__contact-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.ap-book__contact-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.ap-book__contact-link:hover {
  color: #fff;
}

/* ── Formulario ── */
.ap-book__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ap-book__row {
  display: grid;
  gap: var(--space-md);
}

.ap-book__row--2 {
  grid-template-columns: 1fr 1fr;
}

.ap-book__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ap-book__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ap-book__input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 12px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.ap-book__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.ap-book__input:focus {
  border-color: var(--color-teal);
  background-color: rgba(0, 207, 200, 0.05);
}

.ap-book__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.ap-book__select option {
  background-color: #1a1a1a;
  color: #fff;
}

.ap-book__textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── Botón submit ── */
.ap-book__submit {
  align-self: flex-start;
  background-color: var(--color-teal);
  border: none;
  border-radius: 0;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ap-book__submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.ap-book__submit:active {
  transform: translateY(0);
}

/* ── Mensaje de éxito ── */
.ap-book__success {
  display: none;
  font-size: 0.875rem;
  color: var(--color-teal);
  font-weight: 500;
  margin-top: -4px;
}

/* ============================================================
   BOOKING — Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .ap-book {
    padding: var(--space-xl) var(--space-md) var(--space-xl);
  }

  .ap-book__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 640px) {
  .ap-book {
    padding: var(--space-xl) var(--space-sm);
  }

  .ap-book__row--2 {
    grid-template-columns: 1fr;
  }

  /* Previene zoom automático de iOS en inputs */
  .ap-book__input {
    font-size: 1rem;
  }

  /* Botón full-width en mobile */
  .ap-book__submit {
    width: 100%;
    align-self: stretch;
    padding-block: 16px;
  }

  /* Galería: imágenes un poco más altas en mobile */
  .ap-gallery__img {
    height: 240px;
  }

  /* Videos: cards más anchas en mobile para que se vean bien */
  .vid-card {
    width: 82vw;
  }

  /* Marquee más lento en mobile (pantalla más angosta = se ve más rápido) */
  .ap-gallery__track {
    animation-duration: 28s;
  }

  .ap-videos__track {
    animation-duration: 35s;
  }
}
