.sgc-feature-image-with-text *,
.sgc-feature-image-with-text *::before,
.sgc-feature-image-with-text *::after {
  box-sizing: border-box;
}

@media (max-width: 959px) {
  .sgc-feature-image-with-text * {
    -webkit-tap-highlight-color: transparent;
  }
}

.sgc-feature-image-with-text ol,
.sgc-feature-image-with-text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sgc-feature-image-with-text dl {
  margin-block: 0;
}

.sgc-feature-image-with-text dd {
  margin-inline-start: 0;
}

.sgc-feature-image-with-text h1,
.sgc-feature-image-with-text h2,
.sgc-feature-image-with-text h3,
.sgc-feature-image-with-text h4,
.sgc-feature-image-with-text h5,
.sgc-feature-image-with-text h6 {
  margin-block: 0;
  word-break: break-all;
}

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

.sgc-feature-image-with-text a:not([href]) {
  cursor: not-allowed;
}

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

.sgc-feature-image-with-text svg.sgc-icon circle,
.sgc-feature-image-with-text svg.sgc-icon path {
  vector-effect: non-scaling-stroke;
}

.sgc-feature-image-with-text p:first-child {
  margin-block-start: 0;
}

.sgc-feature-image-with-text p:last-child {
  margin-block-end: 0;
}

.sgc-feature-image-with-text {
  /**
   * 内容级的元素层级
   */
  --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);
  }
}

.sgc-feature-image-with-text .sgc-hidden {
  display: none !important;
}

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

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

.sgc-feature-image-with-text .sgc-hidden-empty:empty {
  display: none;
}

.sgc-feature-image-with-text .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);
  overflow-wrap: break-word;
}

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

.sgc-feature-image-with-text .sgc-text-align-left {
  text-align: start;
}

.sgc-feature-image-with-text .sgc-text-align-center {
  text-align: center;
}

.sgc-feature-image-with-text .sgc-text-align-right {
  text-align: end;
}

.sgc-feature-image-with-text .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) {
  .sgc-feature-image-with-text .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)
    );
  }
}

.sgc-feature-image-with-text .sgc-button:focus {
  outline: 0;
}

.sgc-feature-image-with-text .sgc-button:disabled,
.sgc-feature-image-with-text .sgc-button.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.sgc-feature-image-with-text .sgc-button.loading {
  position: relative;
  color: transparent !important;
}

.sgc-feature-image-with-text .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;
}

.sgc-feature-image-with-text .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));
}

.sgc-feature-image-with-text .sgc-button--style-normal.sgc-button--effect-scan {
  overflow: hidden;
}

.sgc-feature-image-with-text
  .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);
}

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

.sgc-feature-image-with-text
  .sgc-button--style-normal.sgc-button--effect-shadow {
  transition: box-shadow 0.2s;
}

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

.sgc-feature-image-with-text
  .sgc-button--style-normal.sgc-button--effect-scale {
  position: relative;
}

.sgc-feature-image-with-text
  .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;
}

.sgc-feature-image-with-text
  .sgc-button--style-normal.sgc-button--effect-scale:focus::after,
.sgc-feature-image-with-text
  .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));
}

.sgc-feature-image-with-text .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;
}

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

.sgc-feature-image-with-text .sgc-button--style-arrow-button {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

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

.sgc-feature-image-with-text .sgc-rte {
  overflow-wrap: break-word;
}

.sgc-feature-image-with-text .sgc-rte img,
.sgc-feature-image-with-text .sgc-rte video {
  max-width: 100%;
  height: auto;
}

.sgc-feature-image-with-text .sgc-rte::after {
  clear: both;
  display: block;
  content: "";
}

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

.sgc-feature-image-with-text .sgc-rte ul,
.sgc-feature-image-with-text .sgc-rte ol {
  padding: revert;
  margin: revert;
  list-style: revert;
}

.sgc-feature-image-with-text .sgc-rte > p:first-child {
  margin-block-start: 0;
}

.sgc-feature-image-with-text .sgc-rte > p:last-child {
  margin-block-end: 0;
}

.sgc-feature-image-with-text .sgc-rte iframe {
  max-width: 100%;
}

.sgc-feature-image-with-text .sgc-rte p img {
  vertical-align: bottom;
}

.sgc-feature-image-with-text .sgc-rte table {
  table-layout: fixed;
}

@keyframes sgc-feature-image-with-text-progressbar-animation {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes sgc-feature-image-with-text-right-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

@keyframes sgc-feature-image-with-text-left-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes sgc-feature-image-with-text-close-wrapper {
  to {
    clip-path: rect(auto auto auto auto);
  }
}

.sgc-feature-image-with-text {
  position: relative;
  display: block;
  width: 100%;
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__slides {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 500px;
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__slide {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  align-items: stretch;
  transform: translate3d(0, 0, 0);
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__container {
  align-self: stretch;
  background-color: rgb(var(--sgc-background-color));
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__container-inner {
  display: flex;
  flex: 1;
  align-items: stretch;
  width: 100%;
  max-width: var(--sgc-max-width-desktop);
  height: 100%;
  margin: auto;
  background-color: #fff;
}

.sgc-feature-image-with-text .sgc-feature-image-with-text-image-wrapper {
  --sgc-parallax-offset: 0%;
  --sgc-parallax-scale: 1;

  display: flex;
  flex: 0 0 50%;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
}

.sgc-feature-image-with-text .sgc-feature-image-with-text-image-wrapper__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--desktop-image-object-position);
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text-image-wrapper__default-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-color: #f3f3f3;
}

.sgc-feature-image-with-text .sgc-block-group {
  flex: 0 0 50%;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  background-color: rgb(var(--group-background-color));
  opacity: var(--group-background-opacity);
}

.sgc-feature-image-with-text .sgc-block-group .sgc-block-title {
  width: 100%;
}

.sgc-feature-image-with-text .sgc-block-group .sgc-block-title > h2 {
  word-break: normal;
}

.sgc-feature-image-with-text .sgc-block-group .sgc-block-subtitle {
  width: 100%;
  word-break: normal;
}

.sgc-feature-image-with-text .sgc-block-group .sgc-block-description {
  box-sizing: border-box;
  width: 100%;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}

.sgc-feature-image-with-text .sgc-block-group .sgc-block-button-group {
  flex-wrap: wrap;
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__pagination {
  position: absolute;
  inset-block-end: 40px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__pagination
  button[name="pager"] {
  position: relative;
  display: block;
  width: 6px;
  height: 6px;
  padding: 0;
  cursor: pointer;
  background: #999;
  border: none;
  border-radius: 50%;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__pagination
  button[name="pager"]:hover {
  opacity: 0.6;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__pagination
  button[name="pager"].is-active {
  width: 10px;
  height: 10px;
  background: #000;
  opacity: 1;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__pagination
  button[name="pager"].is-active::before {
  display: none;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__pagination
  button[name="pager"].is-active
  .active-cricle-ani {
  display: none;
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__progressbar {
  position: absolute;
  inset-block-end: 0;
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* stylelint-disable-next-line no-descending-specificity */

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__progressbar
  button[name="pager"] {
  position: relative;
  display: block;
  flex: 1 0 0;
  max-width: 120px;
  height: 6px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  background-color: #7b7b7b;
  border: none;
  border-radius: 2px;
  opacity: 0.5;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__progressbar
  button[name="pager"].is-active::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #333;
  transform: translateX(-100%);
  animation: sgc-feature-image-with-text-progressbar-animation
    var(--sgc-autoplay-delay, 7s) linear forwards;
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__left-right-arrows {
  --sgc-arrow-button-size: 48px;
  --sgc-arrow-position-side: 40px;
}

@media (max-width: 959px) {
  .sgc-feature-image-with-text .sgc-feature-image-with-text__left-right-arrows {
    --sgc-arrow-button-size: 40px;
    --sgc-arrow-position-side: 20px;
  }
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__left-right-arrows {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  z-index: 10;
  display: none;
  width: 100%;
  height: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__left-right-arrows
  button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 12px;
  pointer-events: auto;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__left-right-arrows
  button:hover
  .sgc-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* stylelint-disable-next-line no-descending-specificity */

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__left-right-arrows
  button
  .sgc-icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

@media (max-width: 959px) {
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text__left-right-arrows
    button
    .sgc-icon {
    width: 20px;
    height: 20px;
  }
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__left-right-arrows
  button
  .sgc-icon
  path {
  stroke: #333;
  stroke-width: 1.5;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__left-right-arrows
  button[name="prev"] {
  inset-inline-start: var(--sgc-arrow-position-side);
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__left-right-arrows
  button[name="next"] {
  inset-inline-end: var(--sgc-arrow-position-side);
}

.sgc-feature-image-with-text .sgc-feature-image-with-text__bottom-arrow {
  --sgc-arrow-position-bottom: 40px;
  --sgc-arrow-button-size: 40px;
  --sgc-arrow-gap: 10px;

  position: absolute;
  inset-block-end: var(--sgc-arrow-position-bottom);
  inset-inline-start: 50%;
  z-index: 10;
  display: none;
  gap: var(--sgc-arrow-gap);
  transform: translateX(-50%);
}

/* stylelint-disable-next-line no-descending-specificity */

.sgc-feature-image-with-text .sgc-feature-image-with-text__bottom-arrow button {
  position: relative;
  display: flex;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: var(--sgc-arrow-button-size);
  height: var(--sgc-arrow-button-size);
  padding: 0;
  cursor: pointer;
  background-color: rgb(255 255 255 / 90%);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
  transition: all 0.3s ease;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__bottom-arrow
  button:hover {
  background-color: #fff;
  box-shadow: 0 4px 16px rgb(0 0 0 / 20%);
}

/* stylelint-disable-next-line no-descending-specificity */

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__bottom-arrow
  button
  .sgc-icon {
  width: 12px;
  height: 12px;
}

.sgc-feature-image-with-text
  .sgc-feature-image-with-text__bottom-arrow
  button
  .sgc-icon
  path {
  stroke: #333;
  stroke-width: 2;
}

@media (min-width: 960px) {
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-desktop-pagination-type="simple"]
    .sgc-feature-image-with-text__pagination {
    display: flex;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-desktop-pagination-type="simple"]
    .sgc-feature-image-with-text__container {
    padding-block-end: 100px;
  }
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-desktop-pagination-type="left-right-arrow"]
    .sgc-feature-image-with-text__left-right-arrows {
    display: flex;
  }
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-desktop-pagination-type="bottom-arrow"]
    .sgc-feature-image-with-text__bottom-arrow {
    display: flex;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-desktop-pagination-type="bottom-arrow"]
    .sgc-feature-image-with-text__container {
    padding-block-end: 100px;
  }
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-desktop-pagination-type="progressbar"]
    .sgc-feature-image-with-text__progressbar {
    display: flex;
  }
}

@media (max-width: 959px) {
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-mobile-pagination-type="simple"]
    .sgc-feature-image-with-text-image-wrapper__mobile-simple {
    display: flex;
  }
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-mobile-pagination-type="left-right-arrow"]
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows {
    display: flex;
  }
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-mobile-pagination-type="lower-right-arrow"]
    .sgc-feature-image-with-text-image-wrapper__mobile-lower-right-arrows {
    display: flex;
  }
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text.splide[data-mobile-pagination-type="progressbar"]
    .sgc-feature-image-with-text-image-wrapper__mobile-progressbar {
    display: flex;
  }
}

@media (max-width: 959px) {
  .sgc-feature-image-with-text .sgc-feature-image-with-text__slide {
    align-items: flex-start;
  }

  .sgc-feature-image-with-text .sgc-feature-image-with-text__container {
    align-self: auto;
  }

  .sgc-feature-image-with-text .sgc-feature-image-with-text__container-inner {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    height: auto;
    min-height: auto;
  }

  .sgc-feature-image-with-text .sgc-feature-image-with-text-image-wrapper {
    position: relative;
    align-self: auto;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-simple {
    position: absolute;
    inset-block-end: 16px;
    inset-inline-start: 50%;
    display: none;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
  }

  /* stylelint-disable-next-line no-descending-specificity */
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-simple
    button[name="pager"] {
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    background: #999;
    border: none;
    border-radius: 50%;
    opacity: 0.4;
    transition: all 0.3s ease;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-simple
    button[name="pager"]:hover {
    opacity: 0.6;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-simple
    button[name="pager"].is-active {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: 1;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-simple
    button[name="pager"].is-active::before {
    display: none;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-simple
    button[name="pager"].is-active
    .active-cricle-ani {
    display: none;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows {
    position: absolute;
    inset: 0;
    display: none;
    pointer-events: none;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows
    button {
    position: absolute;
    inset-block-start: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    pointer-events: auto;
    cursor: pointer;
    background-color: rgb(255 255 255 / 90%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows
    button:hover {
    background-color: #fff;
    box-shadow: 0 4px 16px rgb(0 0 0 / 20%);
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows
    button
    .sgc-icon {
    width: 18px;
    height: 18px;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows
    button
    .sgc-icon
    path {
    stroke: #333;
    stroke-width: 2;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows
    button[name="prev"] {
    inset-inline-start: 16px;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-left-right-arrows
    button[name="next"] {
    inset-inline-end: 16px;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-lower-right-arrows {
    --sgc-arrow-position-bottom: -16px;
    --sgc-arrow-position-right: 20px;
    --sgc-arrow-button-size: 32px;
    --sgc-arrow-gap: 10px;

    position: absolute;
    inset-block-end: var(--sgc-arrow-position-bottom);
    inset-inline-end: var(--sgc-arrow-position-right);
    z-index: 10;
    display: none;
    gap: var(--sgc-arrow-gap);
  }

  /* stylelint-disable-next-line no-descending-specificity */
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-lower-right-arrows
    button {
    position: relative;
    display: flex;
    place-items: center;
    align-items: center;
    justify-content: center;
    width: var(--sgc-arrow-button-size);
    height: var(--sgc-arrow-button-size);
    padding: 0;
    cursor: pointer;
    background-color: rgb(255 255 255 / 90%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    transition: all 0.3s ease;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-lower-right-arrows
    button:hover {
    background-color: #fff;
    box-shadow: 0 4px 16px rgb(0 0 0 / 20%);
  }

  /* stylelint-disable-next-line no-descending-specificity */
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-lower-right-arrows
    button
    .sgc-icon {
    width: 9.6px;
    height: 9.6px;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-lower-right-arrows
    button
    .sgc-icon
    path {
    stroke: #333;
    stroke-width: 2;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-progressbar {
    position: absolute;
    inset-block-end: 0;
    display: none;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* stylelint-disable-next-line no-descending-specificity */
  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-progressbar
    button[name="pager"] {
    position: relative;
    display: block;
    flex: 1 0 0;
    max-width: 60px;
    height: 6px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    background-color: #7a7a7a;
    border: none;
    border-radius: 2px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-progressbar
    button[name="pager"]:hover {
    opacity: 0.7;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-progressbar
    button[name="pager"].is-active {
    opacity: 1;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__mobile-progressbar
    button[name="pager"].is-active::after {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000;
    transform: translateX(-100%);
    animation: sgc-feature-image-with-text-progressbar-animation
      var(--sgc-autoplay-delay, 7s) linear forwards;
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: var(--mobile-image-object-position);
  }

  .sgc-feature-image-with-text
    .sgc-feature-image-with-text-image-wrapper__default-image {
    width: 100%;
    min-height: 335px;
    background-color: #f3f3f3;
  }

  .sgc-feature-image-with-text .sgc-block-group {
    align-self: auto;
    width: 100%;
    min-width: 0;
    height: auto;
    overflow: hidden;
  }

  .sgc-feature-image-with-text .sgc-block-group .sgc-block-description {
    box-sizing: border-box;
    hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
  }

  @media (max-width: 959px) {
    .sgc-feature-image-with-text .sgc-block-group {
      align-self: auto;
      justify-content: flex-start;
      height: auto;
      max-height: none;
    }

    .sgc-feature-image-with-text .sgc-block-group .sgc-block-description {
      box-sizing: border-box;
      hyphens: none;
      word-break: normal;
      overflow-wrap: break-word;
    }
  }
}
