.hero-carousel {
  clip-path: none;
  width: 88%;
  height: 86%;
  right: 6%;
  bottom: 7%;
  border: 2px solid rgba(255, 255, 255, 0.62);
  box-shadow: 14px 14px 0 var(--orange);
}

.hero-carousel::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  width: 72px;
  height: 72px;
  border-top: 9px solid var(--orange);
  border-left: 9px solid var(--orange);
  pointer-events: none;
}

.hero-carousel::after {
  content: "FOX / IVANOVO";
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  color: var(--ink);
  background: var(--orange);
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 84px;
  height: 14px;
  left: 2.5%;
  bottom: 15%;
  background: var(--yellow);
  transform: rotate(-38deg);
  pointer-events: none;
}

.ticker {
  padding: 0;
}

.ticker .ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-seamless 22s linear infinite;
  will-change: transform;
}

.ticker .ticker-track span {
  flex: none;
  padding: 16px 24px 16px 0;
}

@keyframes ticker-seamless {
  to {
    transform: translateX(-50%);
  }
}

@media (width <= 700px) {
  .hero-carousel {
    width: 92%;
    height: 88%;
    right: 4%;
    bottom: 6%;
    box-shadow: 8px 8px 0 var(--orange);
  }

  .hero-carousel::before {
    top: 12px;
    left: 12px;
    width: 48px;
    height: 48px;
    border-width: 6px 0 0 6px;
    border-style: solid;
    border-color: var(--orange);
  }

  .hero-carousel::after {
    top: 14px;
    right: 14px;
    padding: 7px 9px;
    font-size: 8px;
  }

  .hero-visual::after {
    left: 0;
    bottom: 18%;
    width: 62px;
    height: 11px;
  }

  .ticker .ticker-track span {
    padding: 14px 20px 14px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker .ticker-track {
    animation: none;
  }
}
