.hero {
  padding-top: 1rem;
}

.hero__wrap {
  position: relative;
}

.hero__logo {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(180px, 52vw);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
  pointer-events: none;
}
.hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.ng-carousel {
  position: relative;
  border-radius: var(--ng-radius);
}

.ng-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 2.75rem 0 0.75rem;
  border-radius: var(--ng-radius);
}

.ng-carousel__track::-webkit-scrollbar {
  display: none;
}

.ng-carousel__slide {
  scroll-snap-align: center;
  flex: 0 0 100%;
}

.ng-poster {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--ng-radius);
  overflow: hidden;
  border: 2px solid var(--ng-border);
  background: rgba(255, 255, 255, 0.03);
}

.ng-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0) contrast(1.05);
  transition: filter 260ms ease;
}
.ng-poster:hover img {
  filter: grayscale(0) contrast(1.12) saturate(1.08);
}

.ng-poster__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ng-brand-dark), rgba(75, 0, 130, 0.95));
  border: 1px solid rgba(157, 0, 255, 0.35);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.ng-poster__caption .sep {
  opacity: 0.6;
}

.ng-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 0;
}
.ng-carousel__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}
.ng-carousel__dots .dot.is-active {
  background: var(--ng-brand);
}

@media (min-width: 992px) {
  .ng-carousel__slide {
    flex-basis: 420px;
  }
  .ng-carousel__track {
    padding-top: 1.25rem;
  }
  .hero__logo {
    top: 16px;
    width: 220px;
  }
}

