.indigo-gallery-carousel {
  width: 100%;
}
.indigo-gallery-carousel__inner {
  width: 100%;
  background-color: #f5f5f5;
  padding: 40px;
}
.indigo-gallery-carousel__frame {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.indigo-gallery-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.indigo-gallery-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.indigo-gallery-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.indigo-gallery-carousel__image {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indigo-gallery-carousel__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.indigo-gallery-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
}
.indigo-gallery-carousel__captions {
  flex: 1 1 auto;
  position: relative;
  min-height: 1.5em;
}
.indigo-gallery-carousel__caption {
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  max-width: 80%;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
}
.indigo-gallery-carousel__caption.is-active {
  opacity: 1;
  display: block;
}
.indigo-gallery-carousel__dots {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.indigo-gallery-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background-color: #d0d0d0;
  cursor: pointer;
}
.indigo-gallery-carousel__dot.is-active {
  background-color: #0031a7;
}
.indigo-gallery-carousel__dot:focus-visible {
  outline: 2px solid #0031a7;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .indigo-gallery-carousel__inner {
    padding: 24px 16px;
  }
  .indigo-gallery-carousel__frame {
    min-height: 280px;
  }
  .indigo-gallery-carousel__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .indigo-gallery-carousel__caption {
    max-width: 100%;
  }
}
