.st-image-carousel *,
.st-image-carousel *::before,
.st-image-carousel *::after {
  box-sizing: border-box;
}

@media (max-width: 959px) {
  .st-image-carousel * {
    -webkit-tap-highlight-color: transparent;
  }
}

.st-image-carousel ol,
.st-image-carousel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.st-image-carousel dl {
  margin-block: 0;
}

.st-image-carousel dd {
  margin-inline-start: 0;
}

.st-image-carousel h1,
.st-image-carousel h2,
.st-image-carousel h3,
.st-image-carousel h4,
.st-image-carousel h5,
.st-image-carousel h6 {
  margin-block: 0;
  word-break: break-all;
}

.st-image-carousel h1:empty,
.st-image-carousel h2:empty,
.st-image-carousel h3:empty,
.st-image-carousel h4:empty,
.st-image-carousel h5:empty,
.st-image-carousel h6:empty,
.st-image-carousel section:empty,
.st-image-carousel article:empty,
.st-image-carousel p:empty,
.st-image-carousel a:empty,
.st-image-carousel ol:empty,
.st-image-carousel ul:empty,
.st-image-carousel dl:empty,
.st-image-carousel summary:empty {
  display: none;
}

.st-image-carousel a:not([href]) {
  cursor: not-allowed;
}

.st-image-carousel a:not(.sgc-button),
.st-image-carousel a:not(.sgc-button):hover {
  text-decoration: none;
}

.st-image-carousel svg.sgc-icon circle,
.st-image-carousel svg.sgc-icon path {
  vector-effect: non-scaling-stroke;
}

.st-image-carousel p:first-child {
  margin-block-start: 0;
}

.st-image-carousel p:last-child {
  margin-block-end: 0;
}

.st-image-carousel {
  /**
   * 内容级的元素层级
   */
  --sgc-z-index-hover: 1;
  --sgc-z-index-active: 2;
  --sgc-z-index-focus: 3;

  /**
   * 覆盖级的元素层级
   */
  --sgc-z-index-sticky: 1000;
  --sgc-z-index-dropdown: 1010;
  --sgc-z-index-fixed: 1020;
  --sgc-z-index-modal: 1030;
  --sgc-z-index-popover: 1040;
  --sgc-z-index-tooltip: 1050;
  --sgc-z-index-toast: 1060;
}

@keyframes sgc-loading-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.st-image-carousel .sgc-hidden {
  display: none !important;
}

@media (max-width: 959px) {
  .st-image-carousel .sgc-hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .st-image-carousel .sgc-hidden-desktop {
    display: none !important;
  }
}

.st-image-carousel .sgc-hidden-empty:empty {
  display: none;
}

.st-image-carousel .sgc-basic-style {
  font-family: var(--sgc-basic-font-family, revert);
  font-size: var(--sgc-basic-font-size, revert);
  font-style: var(--sgc-basic-font-style, revert);
  font-weight: var(--sgc-basic-font-weight, revert);
  line-height: var(--sgc-basic-line-height, revert);
  color: rgb(var(--sgc-basic-color, revert));
  letter-spacing: var(--sgc-basic-letter-spacing, revert);
  /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */
  word-break: break-word;
}

@media (max-width: 959px) {
  .st-image-carousel .sgc-basic-style {
    font-size: var(
      --sgc-basic-mobile-font-size,
      var(--sgc-basic-font-size, revert)
    );
  }
}

.st-image-carousel .sgc-text-align-left {
  text-align: start;
}

.st-image-carousel .sgc-text-align-center {
  text-align: center;
}

.st-image-carousel .sgc-text-align-right {
  text-align: end;
}

.st-image-carousel .sgc-hidden-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.st-image-carousel .sgc-hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.st-image-carousel .sgc-button {
  --sgc-button-padding-block: 10px;
  --sgc-button-padding-inline: 20px;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--sgc-button-padding-block);
  padding-inline: var(--sgc-button-padding-inline);
  font-family: var(--sgc-button-font-family, revert);
  font-size: var(--sgc-button-font-size, revert);
  font-style: var(--sgc-button-font-style, revert);
  font-weight: var(--sgc-button-font-weight, revert);
  line-height: var(--sgc-button-line-height, revert);
  vertical-align: middle;
  color: rgb(var(--sgc-button-text-color, revert));
  text-align: center;
  letter-spacing: var(--sgc-button-letter-spacing, revert);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 959px) {
  .st-image-carousel .sgc-button {
    --sgc-button-padding-block: 8px;
    --sgc-button-padding-inline: 16px;

    font-size: var(
      --sgc-button-mobile-font-size,
      var(--sgc-button-font-size, revert)
    );
  }
}

.st-image-carousel .sgc-button:focus {
  outline: 0;
}

.st-image-carousel .sgc-button:disabled,
.st-image-carousel .sgc-button.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.st-image-carousel .sgc-button.loading {
  position: relative;
  color: transparent !important;
}

.st-image-carousel .sgc-button.loading::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin-block-start: -8px;
  margin-inline-start: -8px;
  content: "";
  border: 2px solid rgb(var(--sgc-button-text-color, revert));
  border-block-start-color: transparent;
  border-radius: 50%;
  animation: sgc-loading-spin 1s linear infinite;
}

.st-image-carousel .sgc-button--style-normal {
  background-color: rgb(var(--sgc-button-background-color, revert));
  border: var(--sgc-button-border-thickness) solid
    rgb(var(--sgc-button-border-color), var(--sgc-button-border-opacity));
  border-radius: var(--sgc-button-border-radius);
  box-shadow: var(--sgc-button-shadow-offset-x)
    var(--sgc-button-shadow-offset-y) var(--sgc-button-shadow-blur)
    rgb(var(--sgc-button-shadow-color), var(--sgc-button-shadow-opacity));
}

.st-image-carousel .sgc-button--style-normal.sgc-button--effect-scan {
  overflow: hidden;
}

.st-image-carousel .sgc-button--style-normal.sgc-button--effect-scan::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    hsl(0deg 0% 100% / 25%),
    transparent
  );
  transform: skew(-20deg) translateX(200%);
  transition: transform 0.5s cubic-bezier(0.01, 0.56, 1, 1);
}

.st-image-carousel
  .sgc-button--style-normal.sgc-button--effect-scan:focus::after,
.st-image-carousel
  .sgc-button--style-normal.sgc-button--effect-scan:hover::after {
  transform: skew(-20deg) translateX(-150%);
}

.st-image-carousel .sgc-button--style-normal.sgc-button--effect-shadow {
  transition: box-shadow 0.2s;
}

.st-image-carousel .sgc-button--style-normal.sgc-button--effect-shadow:hover {
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.st-image-carousel .sgc-button--style-normal.sgc-button--effect-scale {
  position: relative;
}

.st-image-carousel .sgc-button--style-normal.sgc-button--effect-scale::after {
  position: absolute;
  inset-block-start: calc(-1 * var(--sgc-button-border-thickness));
  inset-inline-start: calc(-1 * var(--sgc-button-border-thickness));
  display: block;
  width: calc(100% + var(--sgc-button-border-thickness) * 2);
  height: calc(100% + var(--sgc-button-border-thickness) * 2);
  pointer-events: none;
  content: "";
  border-radius: calc(var(--sgc-button-border-radius) + 1px);
  box-shadow: none;
  transition: box-shadow 0.2s;
}

.st-image-carousel
  .sgc-button--style-normal.sgc-button--effect-scale:focus::after,
.st-image-carousel
  .sgc-button--style-normal.sgc-button--effect-scale:hover::after {
  box-shadow: 0 0 0 1px
    rgb(var(--sgc-button-border-color), var(--sgc-button-border-opacity));
}

.st-image-carousel .sgc-button--style-link {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  background-color: transparent;
  border: none;
}

.st-image-carousel .sgc-button--style-link:hover {
  text-decoration-thickness: 2px;
}

.st-image-carousel .sgc-button--style-arrow-button {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  gap: 4px;
  background-color: transparent;
  border: none;
}

.st-image-carousel .sgc-rte {
  overflow-wrap: break-word;
}

.st-image-carousel .sgc-rte img,
.st-image-carousel .sgc-rte video {
  max-width: 100%;
  height: auto;
}

.st-image-carousel .sgc-rte::after {
  clear: both;
  display: block;
  content: "";
}

.st-image-carousel .sgc-rte a,
.st-image-carousel .sgc-rte a:hover {
  position: relative;
  padding: 0 1px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.st-image-carousel .sgc-rte ul,
.st-image-carousel .sgc-rte ol {
  padding: revert;
  margin: revert;
  list-style: revert;
}

.st-image-carousel .sgc-rte > p:first-child {
  margin-block-start: 0;
}

.st-image-carousel .sgc-rte > p:last-child {
  margin-block-end: 0;
}

.st-image-carousel .sgc-rte iframe {
  max-width: 100%;
}

.st-image-carousel .sgc-rte p img {
  vertical-align: bottom;
}

.st-image-carousel .sgc-rte table {
  table-layout: fixed;
}

.st-image-carousel .st-image-carousel__video {
  position: relative;
  height: 100%;
}

.st-image-carousel .st-image-carousel__video-media-wrapper {
  height: 100%;
  overflow: hidden;
}

.st-image-carousel .st-image-carousel__video-media-wrapper img {
  width: 100%;
  object-fit: cover;
}

.st-image-carousel .st-image-carousel__video-media-wrapper sgc-video-media {
  width: 100%;
  height: 100%;
}

.st-image-carousel
  .st-image-carousel__video-media-wrapper
  sgc-video-media
  .sgc-video-media {
  width: 100%;
  height: 100%;
}

.st-image-carousel
  .st-image-carousel__video-media-wrapper
  sgc-video-media
  video {
  object-fit: cover;
}

.st-image-carousel
  .st-image-carousel__video-media-wrapper
  sgc-video-media
  iframe {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}

@media (max-width: 959px) {
  .st-image-carousel
    .st-image-carousel__video-media-wrapper
    sgc-video-media
    iframe {
    width: auto;
    height: 100%;
  }
}

@media (min-width: 960px) {
  .st-image-carousel
    .st-image-carousel__video-media-wrapper
    sgc-video-media
    iframe {
    width: 100%;
    height: auto;
  }
}

.st-image-carousel
  .st-image-carousel__video-media-wrapper
  sgc-video-media.st-image-carousel__video-media-wrapper--full-width
  iframe {
  width: 100%;
  height: auto;
}

.st-image-carousel
  .st-image-carousel__video-media-wrapper
  sgc-video-media.st-image-carousel__video-media-wrapper--full-height
  iframe {
  width: auto;
  height: 100%;
}

.st-image-carousel .st-image-carousel__video-media-wrapper-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #dbdbdb;
}

.st-image-carousel .st-image-carousel__video-content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.st-image-carousel .st-image-carousel__video-content-wrapper::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: rgb(0 0 0 / var(--mask-opacity));
}

.st-image-carousel .st-image-carousel__video-content-wrapper > div {
  width: 100%;
  height: 100%;
}

.st-image-carousel .st-image-carousel__content-group {
  width: 100%;
  height: 100%;
}

.st-image-carousel .st-image-carousel__content-group-inner {
  max-width: 1420px;
  margin: 0 auto;
}

.st-image-carousel .st-image-carousel__content-group-inner-item {
  width: 100%;
  opacity: 0;
  transform: translateY(120%);
}

.st-image-carousel .st-image-carousel__content-group-inner-item-button-group {
  opacity: 1;
  transform: translateY(0);
}

.st-image-carousel
  .st-image-carousel__content-group-inner-item-button-group
  button {
  opacity: 0;
}

.st-image-carousel {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

.st-image-carousel st-image-carousel {
  display: block;
  width: 100%;
  min-width: 0;
}

.st-image-carousel .st-image-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  min-width: 0;
  max-width: min(100%, var(--st-desktop-max-width, 1420px));
  margin: 0 auto;
}

.st-image-carousel.st-image-carousel--full-width .st-image-carousel-wrapper,
.st-image-carousel.st-image-carousel--full-width .st-image-carousel__inner,
.st-image-carousel.st-image-carousel--full-width .st-image-carousel__content-group-inner {
  max-width: 100%;
}

@media (min-width: 960px) {
  .st-image-carousel.st-image-carousel--full-width .st-image-carousel-wrapper {
    min-height: clamp(420px, 36vw, 920px);
  }
}

@media (max-width: 959px) {
  .st-image-carousel.st-image-carousel--full-width .st-image-carousel-wrapper {
    min-height: clamp(240px, 62vw, 680px);
  }
}

.st-image-carousel__inner {
  width: 100%;
  max-width: var(--st-desktop-max-width, 1420px);
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: hidden;
  min-width: 0;
}

@media (max-width: 959px) {
  .st-image-carousel__inner {
    max-width: 100%;
  }
}

.st-image-carousel--center-active .st-image-carousel-wrapper {
  perspective: var(--st-perspective, 1200px);
  clip-path: inset(-1000px 0);
}

.st-image-carousel--center-active .st-image-carousel-wrapper-track {
  overflow-x: hidden;
  overflow-y: visible;
}

.st-image-carousel--center-active .st-image-carousel-wrapper-list {
  align-items: center;
  transform-style: preserve-3d;
}

.st-image-carousel--center-active .st-image-carousel__slide {
  opacity: 1;
  transform: none;
  transform-origin: center center;
  transition: transform var(--st-coverflow-speed, 400ms) ease;
  z-index: 1;
  will-change: transform;
}

.st-image-carousel--center-active .st-image-carousel__slide.is-prev,
.st-image-carousel--center-active .st-image-carousel__slide.is-next {
  z-index: 2;
}

.st-image-carousel--center-active .st-image-carousel__slide.is-active {
  z-index: 3;
}

@media (min-width: 960px) {
  .st-image-carousel .st-image-carousel-wrapper {
    height: var(--desktop-height, auto);
    aspect-ratio: var(--desktop-aspect-ratio, auto);
  }
}

@media (max-width: 959px) {
  .st-image-carousel .st-image-carousel-wrapper {
    height: var(--mobile-height, auto);
    aspect-ratio: var(--mobile-aspect-ratio, auto);
  }
}

.st-image-carousel .st-image-carousel-wrapper-track {
  height: 100%;
  overflow-x: hidden;
  min-width: 0;
}

.st-image-carousel .st-image-carousel-wrapper-list {
  position: relative;
  display: flex;
  min-width: 0;
}

.st-image-carousel .st-image-carousel__slide {
  --fade-in-content-position: 100px;
}

@keyframes fade-in-content {
  from {
    opacity: 1;
    transform: translateY(120%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-button {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.st-image-carousel .st-image-carousel__slide {
  height: 100%;
}

.st-image-carousel .st-image-carousel__slide > div {
  height: 100%;
}

.st-image-carousel
  .st-image-carousel__slide.is-active
  .st-image-carousel__content-group-inner-item-title {
  animation: fade-in-content 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) 0.3s
    forwards;
}

.st-image-carousel
  .st-image-carousel__slide.is-active
  .st-image-carousel__content-group-inner-item-subtitle {
  animation: fade-in-content 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0.7s forwards;
}

.st-image-carousel
  .st-image-carousel__slide.is-active
  .st-image-carousel__content-group-inner-item-description {
  animation: fade-in-content 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0.7s forwards;
}

.st-image-carousel
  .st-image-carousel__slide.is-active
  .st-image-carousel__content-group-inner-item-button-group
  > div
  .sgc-button:nth-child(2) {
  animation: fade-in-button 2s cubic-bezier(0.26, 0.54, 0.32, 1) 1.3s forwards;
}

.st-image-carousel
  .st-image-carousel__slide.is-active
  .st-image-carousel__content-group-inner-item-button-group
  > div
  .sgc-button:nth-child(4) {
  animation: fade-in-button 2s cubic-bezier(0.26, 0.54, 0.32, 1) 1.6s forwards;
}

.st-image-carousel .st-image-carousel__indicators button {
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: none;
}

.st-image-carousel .splide:not(.is-overflow) .st-image-carousel__indicators {
  display: none;
}

.st-image-carousel .st-image-carousel__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.st-image-carousel .st-image-carousel__nav-icon--custom img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.st-image-carousel .st-image-carousel__nav--default {
  color: rgb(var(--st-default-arrow-color, 0, 0, 0));
}

.st-image-carousel {
  --st-arrow-size: 64px;
  --st-arrow-overlap: -2.2;
  --st-arrow-offset-px: calc(var(--st-arrow-size) * 2.2);
}

@media (max-width: 959px) {
  .st-image-carousel {
    --st-arrow-size: 40px;
    --st-arrow-overlap: -2.2;
    --st-arrow-offset-px: calc(var(--st-arrow-size) * 2.2);
  }
}

.st-image-carousel
  .st-image-carousel__nav--default
  .st-image-carousel__nav-icon--default
  svg
  path {
  stroke: currentColor;
}

.st-image-carousel .st-image-carousel__indicators--arrow-left-right {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.st-image-carousel .st-image-carousel__indicators--arrow-left-right > button {
  position: absolute;
  inset-block-start: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--st-arrow-size, 64px);
  height: var(--st-arrow-size, 64px);
  padding: 0;
  pointer-events: auto;
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-left-right
  > button[name="prev"] {
  inset-inline-start: -10%;
  transform: translate(var(--st-arrow-offset-px, 0px), -50%);
  z-index: 999;
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-left-right
  > button[name="next"] {
  inset-inline-end: -10%;
  transform: translate(calc(-1 * var(--st-arrow-offset-px, 0px)), -50%);
  z-index: 999;
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-left-right
  > button.st-image-carousel__nav--default[name="prev"]
  .st-image-carousel__nav-icon--default {
  transform: rotate(180deg);
}

@media (max-width: 959px) {
  .st-image-carousel
    .st-image-carousel__indicators--arrow-left-right
    > button
    svg {
    width: 24px;
    height: 45px;
  }
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-left-right
  .st-image-carousel__nav-icon--custom
  img {
  width: var(--st-arrow-size, 64px);
  height: var(--st-arrow-size, 64px);
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-left-right
  .st-image-carousel__nav-icon--default
  svg {
  width: 24px;
  height: 45px;
}

.st-image-carousel .st-image-carousel__indicators--progress-wrapper {
  position: absolute;
  inset-block-end: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.st-image-carousel .st-image-carousel__indicators--progress-wrapper > button {
  position: relative;
  width: 120px;
  height: 6px;
  overflow: hidden;
}

@media (max-width: 959px) {
  .st-image-carousel
    .st-image-carousel__indicators--progress-wrapper
    > button {
    width: 45px;
  }
}

.st-image-carousel
  .st-image-carousel__indicators--progress-wrapper
  > button::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  opacity: 0.4;
}

.st-image-carousel
  .st-image-carousel__indicators--progress-wrapper
  > button::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transform: translateX(-100%);
}

.st-image-carousel
  .st-image-carousel__indicators--progress-wrapper
  > button.is-active::after {
  transform: translateX(0);
  transition: transform var(--autoplay-delay) linear;
}

.st-image-carousel .st-image-carousel__indicators--arrow-bottom-right {
  --sgc-arrow-position-bottom: 60px;
  --sgc-arrow-position-right: 60px;
  --sgc-arrow-button-size: 56px;
  --sgc-arrow-icon-size: 8px;
  --sgc-arrow-gap: 20px;
}

@media (max-width: 959px) {
  .st-image-carousel .st-image-carousel__indicators--arrow-bottom-right {
    --sgc-arrow-position-bottom: 20px;
    --sgc-arrow-position-right: 20px;
    --sgc-arrow-button-size: 40px;
    --sgc-arrow-icon-size: 5px;
    --sgc-arrow-gap: 10px;
  }
}

.st-image-carousel .st-image-carousel__indicators--arrow-bottom-right {
  position: absolute;
  inset-block-end: var(--sgc-arrow-position-bottom);
  inset-inline-end: var(--sgc-arrow-position-right);
  display: flex;
  gap: var(--sgc-arrow-gap);
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-bottom-right
  > button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--sgc-arrow-button-size);
  height: var(--sgc-arrow-button-size);
  cursor: pointer;
  background-color: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-bottom-right
  > button.st-image-carousel__nav--default[name="prev"] {
  transform: rotate(180deg);
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-bottom-right
  > button.st-image-carousel__nav--default
  .st-image-carousel__nav-icon--default
  svg {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: var(--sgc-arrow-icon-size);
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-bottom-right
  > button.st-image-carousel__nav--default::after {
  display: block;
  width: calc(var(--sgc-arrow-icon-size) * 2);
  height: 2px;
  content: "";
  background-color: currentColor;
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-bottom-right
  > button.st-image-carousel__nav--default:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.st-image-carousel
  .st-image-carousel__indicators--arrow-bottom-right
  > button.st-image-carousel__nav--default:hover
  .st-image-carousel__nav-icon--default
  svg {
  transform: translate(calc((-50% + var(--sgc-arrow-icon-size)) / 2), -50%);
}

.st-image-carousel .st-image-carousel__indicators--simple-wrapper {
  position: absolute;
  inset-block-end: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.st-image-carousel .st-image-carousel__indicators--simple-wrapper > button {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}

.st-image-carousel
  .st-image-carousel__indicators--simple-wrapper
  > button.is-active {
  opacity: 1;
  transform: scale(1.5);
}

.st-image-carousel__card {
  width: 100%;
  height: 100%;
}

.st-image-carousel__card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.st-image-carousel__card-link--static {
  cursor: default;
}

.st-image-carousel__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.st-image-carousel__image-inner {
  width: 100%;
  height: 100%;
}

.st-image-carousel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-image-carousel__image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}

.st-image-carousel__content {
  position: absolute;
  inset-inline-start: 16px;
  inset-block-end: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  transform: scale(
    calc(var(--st-content-scale, 1) / var(--st-slide-scale-x, 1)),
    calc(var(--st-content-scale, 1) / var(--st-slide-scale-y, var(--st-slide-scale, 1)))
  );
  transform-origin: left bottom;
  will-change: transform;
  width: 100%;
}

.st-image-carousel__heading-block,
.st-image-carousel__rich-text {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.st-image-carousel__heading-block p,
.st-image-carousel__rich-text p {
  margin: 0;
}

.st-image-carousel__section-text .st-image-carousel__heading-block,
.st-image-carousel__section-text .st-image-carousel__rich-text {
  text-shadow: none;
  opacity: 1;
}

.st-image-carousel__section-text {
  padding: 40px 20px 0;
}

.st-image-carousel__section-text + .st-image-carousel__section-text {
  padding-top: 12px;
}

@media (max-width: 959px) {
  .st-image-carousel__content {
    inset-inline-start: 12px;
    inset-block-end: 12px;
    gap: 4px;
  }

  .st-image-carousel__section-text {
    padding: 28px 16px 0;
  }

  .st-image-carousel__section-text + .st-image-carousel__section-text {
    padding-top: 8px;
  }
}

@media (max-width: 959px) {
  .st-image-carousel__nav-icon--custom img {
    width: 16px;
    height: 16px;
  }
}
