/* ===================== IMAGE TRAIL OVERLAY ===================== */
.hero-trail-container {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  border-radius: inherit;
  cursor: none;
}

.hero-trail-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.hero-trail-content .trail__img {
  width: 160px;
  aspect-ratio: 1.1;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  will-change: transform, filter;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-trail-content .trail__img-inner {
  background-position: 50% 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-size: cover;
  position: absolute;
  top: -10px;
  left: -10px;
}

/* Hide on mobile / tablet */
@media (max-width: 1024px) {
  .hero-trail-container {
    display: none !important;
  }
}
