/* Slideshow */

.slideshow {
  display: inline-block;
  position: relative;
  align-self: center;
  max-width: 500px;
}

.dots {
  display: flex;
  justify-content: space-around;
  width: 50px;
  position: absolute;
  z-index: 2;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.dots__dot {
  padding: 0.25em;
  border-radius: 50%;
  background-color: rgb(var(--light-accent-color));
  transition: background-color 1000ms;
}

.dots__dot--current {
  background-color: rgb(var(--dark-accent-color));
}

.slideshow__img {
  position: absolute;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: z-index 1000ms, opacity 1000ms;
}

.slideshow__img--current {
  z-index: 1;
  opacity: 1;
}

.slideshow::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  background-color: rgb(var(--base-color), 0.45);
  padding-block: 10px;
  color: rgb(255, 255, 255);
  text-align: center;
  /* white-space: nowrap; */
  z-index: 5;
}

.slideshow--1::after {
  content: "I am Loveable.";
  font-size: 1.5rem;
  font-weight: 700;
}

.slideshow--2::after {
  content: "Help us complete the circle. Adopt, support, volunteer.";
  font-size: 0.75rem;
  font-weight: 600;
}

.slideshow--3::after {
  content: "We're their safety net.\000D\000A You're their home, sweet home.";
  white-space: pre-wrap;
  font-size: 0.75rem;
  font-weight: 600;
}
