.home-page .growth-art.illustration-cycle {
  width: min(48vw, 680px);
  right: max(4vw, calc((100vw - 1540px) / 2));
  top: 48%;
  transform: translateY(-50%);
  aspect-ratio: 1;
  mask-image: none;
  -webkit-mask-image: none;
  mix-blend-mode: multiply;
}
.home-page .illustration-cycle .illustration-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.08);
  opacity: 0;
  animation: none;
  transform: none;
  transition: opacity 1.6s ease-in-out;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.home-page .illustration-cycle .is-active {
  opacity: 1;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .home-page .growth-art.illustration-cycle {
    width: 49vw;
    right: 1%;
    top: 52%;
  }
}
@media (max-width: 760px) {
  .home-page .growth-art.illustration-cycle {
    width: 88vw;
    right: 6%;
    top: 220px;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-page .illustration-cycle .illustration-slide {
    transition: none;
  }
}

.illustration-dots {
  position: absolute;
  right: 5%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 4px;
}
.illustration-dot {
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.illustration-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d7cf;
  transition: background 0.3s;
}
.illustration-dot[aria-pressed="true"] span {
  background: #738979;
}
.illustration-dot:focus-visible {
  outline: 1px solid #738979;
  outline-offset: 1px;
  border-radius: 50%;
}
@media (max-width: 760px) {
  .illustration-dots {
    bottom: 12px;
    right: 4%;
  }
}
