/* ========== Editorial Banner (The Signature Edit) ========== */

.lux-editorial {
  padding-block: var(--lux-section-space);
  padding-inline: 0;
  margin: 0;
  background: #1a1d2e;
}

.lux-editorial-link {
  position: relative;
  display: block;
  min-height: clamp(34rem, 58vw, 42rem);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.lux-editorial-media {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.lux-editorial.is-inview .lux-editorial-media {
  clip-path: inset(0 0 0 0);
}

@keyframes lux-editorial-kenburns {
  0% {
    transform: scale(1.04) translate3d(0, 1.2%, 0);
  }
  100% {
    transform: scale(1.1) translate3d(0, -1.2%, 0);
  }
}

body.lux-body .lux-editorial-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 28% center;
  display: block;
  transform: scale(1.04);
  will-change: transform;
}

.lux-editorial.is-inview .lux-editorial-media img {
  animation: lux-editorial-kenburns 16s ease-out forwards;
}

.lux-editorial-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16, 18, 32, 0.08) 0%, rgba(16, 18, 32, 0.12) 42%, rgba(16, 18, 32, 0.55) 72%, rgba(16, 18, 32, 0.62) 100%);
}

.lux-editorial-shell {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lux-editorial-copy {
  width: min(100%, 28rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.22s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.lux-editorial.is-inview .lux-editorial-copy {
  opacity: 1;
  transform: none;
}

.lux-editorial-eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--lux-sans) !important;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

body.lux-body .lux-editorial-title,
body.lux-body #lux-editorial-heading {
  margin: 0 !important;
  font-family: var(--lux-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  white-space: pre-line;
}

.lux-editorial-lead {
  margin: 1rem 0 0;
  max-width: 32ch;
  font-family: var(--lux-sans) !important;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.lux-editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  font-family: var(--lux-sans) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.45s, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.lux-editorial.is-inview .lux-editorial-cta {
  opacity: 1;
  transform: none;
}

.lux-editorial-cta span:last-child {
  display: inline-block;
  transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .lux-editorial-link:hover .lux-editorial-cta span:last-child,
  .lux-editorial-link:focus-visible .lux-editorial-cta span:last-child {
    transform: translateX(8px);
  }
}

@media (max-width: 1023px) {
  .lux-editorial-link {
    min-height: 36rem;
  }

  .lux-editorial-veil {
    background: linear-gradient(180deg, rgba(16, 18, 32, 0.15) 0%, rgba(16, 18, 32, 0.35) 45%, rgba(16, 18, 32, 0.72) 100%);
  }

  .lux-editorial-shell {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .lux-editorial-copy {
    width: 100%;
    padding-bottom: 2.5rem;
  }

  body.lux-body .lux-editorial-media img,
  .lux-editorial.is-inview .lux-editorial-media img {
    object-position: center 18%;
    animation: none;
    transform: scale(1.03);
  }
}

@media (max-width: 767px) {
  .lux-editorial-link {
    min-height: 34rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-editorial-media,
  .lux-editorial-media img,
  .lux-editorial-copy,
  .lux-editorial-cta,
  .lux-editorial-cta span:last-child {
    transition: none !important;
    animation: none !important;
  }

  .lux-editorial-media {
    clip-path: none !important;
  }

  .lux-editorial-copy,
  .lux-editorial-cta {
    opacity: 1 !important;
    transform: none !important;
  }

  body.lux-body .lux-editorial-media img {
    transform: none !important;
  }
}
