.runway-video-preview {
  width: 100%;
  padding: 0;
  background: #fff;
}

.runway-video-preview__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.runway-video-preview__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.runway-video-preview__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}

.runway-video-preview__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.runway-video-preview__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: clamp(68px, 7vw, 112px);
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.26));
}

.runway-editorial {
  padding: 4.75rem 40px 5.25rem;
  background: #2D2D2D;
  color: #f7f2ea;
}

.runway-editorial__intro {
  max-width: 1100px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.runway-editorial__brand {
  display: block;
  width: min(320px, 72vw);
  height: auto;
  margin: 1rem auto 1rem;
}

.runway-editorial__eyebrow {
  margin: 0;
  font-family: 'Sitka Text', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: 0.11em;
  color: #f2f1ef;
}

.runway-editorial__copy {
  max-width: 1060px;
  margin: 1.1rem auto;
  font-family: 'Poppins';
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  line-height: 1.65;
  color: #f2f1ef;
}

.runway-editorial__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  margin-top: 1.5rem;
  padding: 0.72rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #f2f1ef;
  color: #2D2D2D;
  font-family: 'Poppins';
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.runway-editorial__button:hover,
.runway-editorial__button:focus-visible {
  background: transparent;
  color: #f7f2ea;
  transform: translateY(-1px);
}

.runway-editorial__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 100%;
  margin: 100px 20px 0 20px;
}

.runway-editorial__card {
  margin: 0;
  aspect-ratio: 555 / 740;
  overflow: hidden;
  background: #1f1c1c;
}

.runway-editorial__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.runway-editorial__card:hover img,
.runway-editorial__card:focus-within img {
  transform: scale(1.018);
  filter: brightness(1.02);
}

.runway-backstage {
  padding: 4.5rem 0 4.5rem;
  margin-bottom: 15px;
  background-image: url('../img/backst_fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.runway-backstage__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.9fr);
  gap: 2.5rem;
  align-items: center;
  padding: 0 0 0 40px;
}

.runway-backstage__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
}

.runway-backstage__icon {
  width: clamp(72px, 8vw, 106px);
  height: auto;
  margin-bottom: 1.8rem;
}

.runway-backstage__title {
  margin: 0;
  font-family: 'Sitka Text', Georgia, serif;
  font-size: 42px;
	font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.15em;
  color: #2D2D2D;
}

.runway-backstage__carousel {
  overflow: hidden;
  width: 100%;
}

.runway-backstage__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: runwayBackstageSlide 30s linear infinite;
}

.runway-backstage__card {
  flex: 0 0 clamp(220px, 18vw, 340px);
  margin: 0;
  aspect-ratio: 350 / 510;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.runway-backstage__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

@keyframes runwayBackstageSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-4 * clamp(220px, 18vw, 340px) - 64px));
  }
}

.runway-backstage__carousel:hover .runway-backstage__track {
  animation-play-state: paused;
}

@media (max-width: 1100px) {
  .runway-video-preview__media {
    aspect-ratio: 16 / 10;
  }

  .runway-editorial {
    padding: 4rem 24px 4.5rem;
  }

  .runway-backstage {
    padding: 4rem 0;
  }

  .runway-backstage__inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.75rem;
    padding: 0 0 0 24px;
  }
}

@media (max-width: 760px) {
  .runway-editorial {
    padding: 3.25rem 20px 3.5rem;
  }

  .runway-editorial__intro {
    margin-bottom: 2rem;
  }

  .runway-editorial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .runway-backstage {
    padding: 3.25rem 0;
  }

  .runway-backstage__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 0 0 20px;
  }

  .runway-backstage__intro {
    padding: 0;
  }

  .runway-backstage__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .runway-backstage__track {
    gap: 12px;
  }

  .runway-backstage__card {
    flex-basis: clamp(190px, 48vw, 270px);
  }
}

@media (max-width: 640px) {
  .runway-video-preview__media {
    aspect-ratio: 4 / 5;
  }

  .runway-video-preview__play {
    width: clamp(54px, 15vw, 84px);
  }

  @keyframes runwayBackstageSlide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-4 * clamp(190px, 48vw, 270px) - 48px));
    }
  }
}

@media (max-width: 480px) {
  .runway-editorial__grid {
    grid-template-columns: 1fr;
  }

  .runway-editorial__card {
    aspect-ratio: 555 / 740;
  }

  .runway-backstage__title {
    line-height: 1.02;
  }
}

@media (prefers-reduced-motion: reduce) {
  .runway-backstage__track {
    animation: none;
  }
}
