.hero-film-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
  transform: translateX(-50%);
}

.hero-film-dot {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-film-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(241, 235, 224, 0.8);
  border-radius: 50%;
  background: rgba(12, 10, 8, 0.42);
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-film-dot:hover::before,
.hero-film-dot:focus-visible::before {
  border-color: #d7a861;
  transform: translate(-50%, -50%) scale(1.2);
}

.hero-film-dot.is-active::before {
  border-color: #d7a861;
  background: #d7a861;
  transform: translate(-50%, -50%) scale(1.2);
}

.hero-film-dot:focus-visible {
  outline: 2px solid #f1ebe0;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    height: 50vh !important;
    height: 50svh !important;
  }

  .hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .hero-film-dots {
    bottom: 12px;
  }

  .hero-film-dot::before {
    width: 7px;
    height: 7px;
  }
}

@media print {
  .hero-film-dots {
    display: none !important;
  }
}
