.home-page .hero-copy {
  position: relative;
  transition: background-image 300ms ease-in-out;
}

.home-banner-controls {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.home-banner-arrow,
.home-banner-dot {
  pointer-events: auto;
}

.home-banner-arrow {
  align-items: center;
  background: rgb(15 23 42 / 58%);
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 44px;
  justify-content: center;
  padding: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
  width: 44px;
}

.home-banner-arrow:hover,
.home-banner-arrow:focus-visible {
  background: var(--red, #d71920);
  outline: 2px solid #fff;
  transform: translateY(-50%) scale(1.06);
}

.home-banner-previous {
  left: 18px;
}

.home-banner-next {
  right: 18px;
}

.home-banner-indicators {
  align-items: center;
  bottom: 18px;
  display: flex;
  gap: 9px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.home-banner-dot {
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgb(15 23 42 / 40%);
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 10px;
}

.home-banner-dot.is-active {
  background: var(--red, #d71920);
  border-color: #fff;
  width: 28px;
}

@media (max-width: 600px) {
  .home-banner-arrow {
    font-size: 19px;
    height: 36px;
    width: 36px;
  }

  .home-banner-previous {
    left: 8px;
  }

  .home-banner-next {
    right: 8px;
  }

  .home-banner-indicators {
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-copy,
  .home-banner-arrow,
  .home-banner-dot {
    transition: none;
  }
}
