/* Frontend Styles for Appsolute Slideshows */
.app-slideshow-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}
.app-slideshow-container .app-slideshow-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.app-slideshow-container .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-slideshow-container {
  /* Slide Link */
}
.app-slideshow-container .app-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.app-slideshow-container {
  /* Picture & Image Elements */
}
.app-slideshow-container .app-slide-picture {
  display: block;
  width: 100%;
  height: 100%;
}
.app-slideshow-container .app-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.app-slideshow-container {
  /* Caption / Overlay */
}
.app-slideshow-container .app-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  box-sizing: border-box;
  z-index: 2;
}
.app-slideshow-container .app-slide-caption .app-slide-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.app-slideshow-container {
  /* Swiper Navigation Customization */
}
.app-slideshow-container .swiper-button-prev,
.app-slideshow-container .swiper-button-next {
  color: #ffffff;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}
.app-slideshow-container .swiper-button-prev:after,
.app-slideshow-container .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}
.app-slideshow-container .swiper-button-prev:hover,
.app-slideshow-container .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.05);
}
.app-slideshow-container .swiper-button-prev {
  left: 15px;
}
.app-slideshow-container .swiper-button-next {
  right: 15px;
}
.app-slideshow-container {
  /* Swiper Pagination Customization */
}
.app-slideshow-container .swiper-pagination {
  bottom: 15px;
}
.app-slideshow-container .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}
.app-slideshow-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #2271b1;
  transform: scale(1.25);
}
