/**
 * Styles for the optional call-to-action button on the Views Bootstrap carousel.
 */
.carousel-has-cta .carousel-caption {
  text-align: center;
}

.carousel-has-cta .carousel-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.carousel-has-cta .carousel-cta__link {
  display: inline-block;
  padding: 0.6rem 2.75rem;
  border-radius: 999px;
  background-color: #008dd6;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.carousel-has-cta .carousel-cta__link:hover,
.carousel-has-cta .carousel-cta__link:focus {
  background-color: #0076b8;
  color: #fff;
  text-decoration: none;
  /* transform: translateY(-2px); */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.carousel-has-cta .carousel-cta__link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}
