.sgc-testimonial *,
.sgc-testimonial *::before,
.sgc-testimonial *::after {
  box-sizing: border-box;
}

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

.sgc-testimonial ol,
.sgc-testimonial ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sgc-testimonial dl {
  margin-block: 0;
}

.sgc-testimonial dd {
  margin-inline-start: 0;
}

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

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

.sgc-testimonial a:not([href]) {
  cursor: not-allowed;
}

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

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

.sgc-testimonial p:first-child {
  margin-block-start: 0;
}

.sgc-testimonial p:last-child {
  margin-block-end: 0;
}

.sgc-testimonial {
  /**
   * 内容级的元素层级
   */
  --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-testimonial .sgc-hidden {
  display: none !important;
}

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

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

.sgc-testimonial .sgc-hidden-empty:empty {
  display: none;
}

.sgc-testimonial .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) {
  .sgc-testimonial .sgc-basic-style {
    font-size: var(
      --sgc-basic-mobile-font-size,
      var(--sgc-basic-font-size, revert)
    );
  }
}

.sgc-testimonial .sgc-text-align-left {
  text-align: start;
}

.sgc-testimonial .sgc-text-align-center {
  text-align: center;
}

.sgc-testimonial .sgc-text-align-right {
  text-align: end;
}

.sgc-testimonial .sgc-hidden-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sgc-testimonial .sgc-hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.sgc-testimonial .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-testimonial .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-testimonial .sgc-button:focus {
  outline: 0;
}

.sgc-testimonial .sgc-button:disabled,
.sgc-testimonial .sgc-button.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.sgc-testimonial .sgc-button.loading {
  position: relative;
  color: transparent !important;
}

.sgc-testimonial .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-testimonial .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-testimonial .sgc-button--style-normal.sgc-button--effect-scan {
  overflow: hidden;
}

.sgc-testimonial .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-testimonial .sgc-button--style-normal.sgc-button--effect-scan:focus::after,
.sgc-testimonial
  .sgc-button--style-normal.sgc-button--effect-scan:hover::after {
  transform: skew(-20deg) translateX(-150%);
}

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

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

.sgc-testimonial .sgc-button--style-normal.sgc-button--effect-scale {
  position: relative;
}

.sgc-testimonial .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-testimonial
  .sgc-button--style-normal.sgc-button--effect-scale:focus::after,
.sgc-testimonial
  .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-testimonial .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-testimonial .sgc-button--style-link:hover {
  text-decoration-thickness: 2px;
}

.sgc-testimonial .sgc-button--style-arrow-button {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

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

.sgc-testimonial .sgc-rte {
  overflow-wrap: break-word;
}

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

.sgc-testimonial .sgc-rte::after {
  clear: both;
  display: block;
  content: "";
}

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

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

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

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

.sgc-testimonial .sgc-rte iframe {
  max-width: 100%;
}

.sgc-testimonial .sgc-rte p img {
  vertical-align: bottom;
}

.sgc-testimonial .sgc-rte table {
  table-layout: fixed;
}

@keyframes progress-active {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(0);
  }
}

.sgc-testimonial .sgc-testimonial-list-group {
  --base-scale-ratio: 1;
}

@media (min-width: 960px) {
  .sgc-testimonial .sgc-testimonial-list-group {
    width: 100%;
    max-width: var(--desktop-max-width);
  }
  .sgc-testimonial .sgc-testimonial-list-group--multiple {
    --base-scale-ratio: 1.06;
  }
}

.sgc-testimonial .sgc-testimonial-list-group {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: calc(var(--base-scale-ratio) * 1px);
}

.sgc-testimonial .sgc-testimonial-list-group-wrapper {
  position: relative;
  max-width: 100%;
}

@media (min-width: 960px) {
  .sgc-testimonial .sgc-testimonial-list-group-wrapper--arrow {
    padding-inline: 60px;
  }
}

.sgc-testimonial .sgc-testimonial-list-group-wrapper-track {
  max-width: 100%;
  padding-inline: 10px !important;
}

.sgc-testimonial .sgc-testimonial-list-group-wrapper-track-list-wrapper {
  display: flex;
}

@media (min-width: 960px) {
  .sgc-testimonial .sgc-testimonial-list-group-wrapper-track-list-wrapper > li {
    display: flex;
    justify-content: center;
    width: calc(100 / var(--desktop-column) * 1%) !important;
    margin-inline: -10px;
  }

  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-track-list-wrapper
    > li
    > .sgc-testimonial-list-group-wrapper-track-list-wrapper-item {
    transform: scale(0.943);
    transition: transform 0.3s ease-in-out;
  }
  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-track-list-wrapper
    > li:hover
    > .sgc-testimonial-list-group-wrapper-track-list-wrapper-item {
    transform: scale(1);
  }
}

.sgc-testimonial .sgc-testimonial-list-group-wrapper-track-list-wrapper > li {
  min-width: fit-content;
}

@media (max-width: 959px) {
  .sgc-testimonial .sgc-testimonial-list-group-wrapper-track-list-wrapper > li {
    width: auto !important;
  }
}

.sgc-testimonial .sgc-testimonial-list-group-wrapper-track-list-wrapper-item {
  height: 100%;
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-track-list-wrapper-item
  > div {
  height: 100%;
}

.sgc-testimonial .sgc-testimonial-list-group-wrapper-indicator {
  max-width: 100%;
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--progresses
  button,
.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
  button {
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
  border: none;
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--progresses {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.sgc-testimonial .sgc-testimonial-list-group-wrapper-indicator-pager--progress {
  height: 6px;
  overflow: hidden;
  background-color: rgb(0 0 0 / 50%);
}

@media (min-width: 960px) {
  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-indicator-pager--progress {
    width: 120px;
  }
}

@media (max-width: 959px) {
  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-indicator-pager--progress {
    width: 60px;
    height: 3px;
  }
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--progress-inner {
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 100%);
  transform: translateX(-110%);
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--progress.is-active
  .sgc-testimonial-list-group-wrapper-indicator-pager--progress-inner {
  animation: progress-active calc(var(--autoplay-delay, 0) * 1s) linear forwards;
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows-icon {
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

@media (min-width: 960px) {
  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-indicator-pager--arrows-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 959px) {
  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-indicator-pager--arrows-icon {
    width: 20px;
    height: 20px;
  }
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows-icon
  > svg {
  width: 100%;
  height: 100%;
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
  button {
  position: absolute;
  inset-block-start: 50%;
  background-color: transparent;
  transform: translateY(-50%);
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
  button[name="prev"] {
  inset-inline-start: 0;
  transform: rotate(90deg);
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
  button[name="next"] {
  inset-inline-end: 0;
  transform: rotate(-90deg);
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
  button[disabled] {
  color: rgb(0 0 0 / 15%);
  cursor: default;
}

.sgc-testimonial
  .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
  button[disabled]
  > div {
  box-shadow: none;
}

@media (max-width: 959px) {
  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
    button[name="prev"] {
    inset-inline-start: 12px;
  }

  .sgc-testimonial
    .sgc-testimonial-list-group-wrapper-indicator-pager--arrows
    button[name="next"] {
    inset-inline-end: 12px;
  }
}

.sgc-testimonial .sgc-testimonial__card {
  height: 100%;
  padding-block: var(--card-padding-block);
  padding-inline: var(--card-padding-inline);
}

.sgc-testimonial .sgc-testimonial__card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 325em;
  overflow: hidden;
  background-color: rgb(var(--card-background-color));
  border-color: rgb(var(--card-border-color) / var(--card-border-opacity));
  border-style: solid;
  border-width: var(--card-border-thickness);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow-offset-x) var(--card-shadow-offset-y)
    var(--card-shadow-blur)
    rgb(var(--card-shadow-color) / var(--card-shadow-opacity));
}

.sgc-testimonial .sgc-testimonial__card-wrapper--full-screen {
  height: 100%;
}

.sgc-testimonial
  .sgc-testimonial__card-wrapper--full-screen
  .sgc-testimonial__card-bg-image {
  height: 100%;
}

.sgc-testimonial
  .sgc-testimonial__card-wrapper--full-screen
  .sgc-testimonial__card-bg-image
  > div {
  height: 100%;
}

.sgc-testimonial
  .sgc-testimonial__card-wrapper--full-screen
  .sgc-testimonial__card-bg-image
  > div
  .sgc-testimonial__image {
  height: 100%;
}

@media (min-width: 960px) {
  .sgc-testimonial .sgc-testimonial__card-wrapper--full-screen {
    width: 378em;
  }
}

.sgc-testimonial
  .sgc-testimonial__card-wrapper--full-screen
  .sgc-testimonial__card-content {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  padding: 20px;
}

.sgc-testimonial .sgc-testimonial__card .sgc-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgc-testimonial
  .sgc-testimonial__card
  .sgc-testimonial__image--apply-image-ratio {
  aspect-ratio: var(--image-ratio);
}

.sgc-testimonial .sgc-testimonial__card .sgc-testimonial__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.sgc-testimonial .sgc-testimonial__card-content--top {
  inset-block-start: 0;
}

.sgc-testimonial .sgc-testimonial__card-content--center {
  inset-block-start: 50%;
  transform: translateY(-50%);
}

.sgc-testimonial .sgc-testimonial__card-content--bottom {
  inset-block-end: 0;
}

.sgc-testimonial .sgc-testimonial-content-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sgc-testimonial .sgc-testimonial-content-group-star {
  margin-block-end: 20px;
}

@media (min-width: 960px) {
  .sgc-testimonial .sgc-testimonial-content-group .sgc-block-subtitle,
  .sgc-testimonial .sgc-testimonial-content-group .sgc-block-description {
    font-size: calc(var(--sgc-basic-font-size) * var(--base-scale-ratio));
  }
}

@media (max-width: 959px) {
  .sgc-testimonial .sgc-testimonial-content-group .sgc-block-subtitle,
  .sgc-testimonial .sgc-testimonial-content-group .sgc-block-description {
    font-size: calc(
      var(--sgc-basic-mobile-font-size) * var(--base-scale-ratio)
    );
  }
}

.sgc-testimonial .sgc-testimonial-content-group .sgc-block-button {
  line-height: calc(var(--sgc-button-line-height) * var(--base-scale-ratio));
}

@media (min-width: 960px) {
  .sgc-testimonial .sgc-testimonial-content-group .sgc-block-button {
    font-size: calc(var(--sgc-button-font-size) * var(--base-scale-ratio));
  }
}

@media (max-width: 959px) {
  .sgc-testimonial .sgc-testimonial-content-group .sgc-block-button {
    font-size: calc(
      var(--sgc-button-mobile-font-size) * var(--base-scale-ratio)
    );
  }
}

.sgc-testimonial .sgc-testimonial__product-card {
  display: flex;
  gap: 10px;
  height: 76em;
  padding: 10px;
  background-color: rgb(var(--product-card-color));
  border-radius: var(--product-card-border-radius, 0);
}

.sgc-testimonial .sgc-testimonial__product-card-image {
  flex-shrink: 0;
  height: 100%;
  aspect-ratio: 1/1;
  margin-inline-end: 10px;
  background-color: #fff;
}

.sgc-testimonial .sgc-testimonial__product-card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgc-testimonial .sgc-testimonial__product-card-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.sgc-testimonial .sgc-testimonial__product-card-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-family: var(--product-card-title-font-family);
  font-size: calc(var(--product-card-title-font-size) * 1em);
  line-height: calc(var(--product-card-title-line-height) * 100%);
  color: rgb(var(--product-card-title-color));
  word-break: break-all;
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
}

@media (max-width: 959px) {
  .sgc-testimonial .sgc-testimonial__product-card-title {
    font-size: calc(var(--product-card-title-font-size-mb) * 1em);
    line-height: calc(var(--product-card-title-line-height-mb) * 100%);
  }
}

.sgc-testimonial .sgc-testimonial__product-card-price {
  flex-wrap: nowrap;
  font-size: 20em;
}

.sgc-testimonial .sgc-testimonial__product-card-price > div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sgc-testimonial .sgc-testimonial__product-card-price > div:nth-child(2) {
  flex: 1;
}

.sgc-testimonial .sgc-testimonial__product-card-price .sgc-product-price__sale {
  font-family: var(--price-font-family);
  line-height: calc(var(--price-line-height) * 100%);
}

@media (max-width: 959px) {
  .sgc-testimonial
    .sgc-testimonial__product-card-price
    .sgc-product-price__sale {
    font-family: var(--price-font-family-mb);
    line-height: calc(var(--price-line-height-mb) * 100%);
  }
}

.sgc-testimonial
  .sgc-testimonial__product-card-price
  .sgc-product-price__origin {
  font-family: var(--original-price-font-family);
  line-height: calc(var(--original-price-line-height) * 100%);
}

@media (max-width: 959px) {
  .sgc-testimonial
    .sgc-testimonial__product-card-price
    .sgc-product-price__origin {
    font-family: var(--original-price-font-family-mb);
    line-height: calc(var(--original-price-line-height-mb) * 100%);
  }
}

.sgc-testimonial .sgc-testimonial__product-card-operate-wrapper-icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  width: 30em;
  height: 30em;
  margin-inline-start: auto;
  color: rgb(var(--quick-add-font-color));
  cursor: pointer;
  background-color: rgb(var(--quick-add-bg-color));
  border-radius: 50%;
}

.sgc-testimonial .sgc-testimonial__product-card-operate-wrapper-icon > svg {
  position: relative;
  inset-inline-start: 1px;
  width: 18em;
  height: 18em;
}

.sgc-testimonial {
  background-color: rgb(var(--background-color));
}

.sgc-testimonial .sgc-testimonial-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 0;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .sgc-testimonial .sgc-testimonial-section {
    max-width: var(--desktop-max-width);
  }
}

.sgc-testimonial .sgc-testimonial-text {
  width: 100%;
  padding: 0 20px;
}

.sgc-testimonial .sgc-testimonial-text-align-left {
  text-align: start;
}

.sgc-testimonial .sgc-testimonial-text-align-center {
  text-align: center;
}

.sgc-testimonial .sgc-testimonial-text-align-right {
  text-align: end;
}

.sgc-testimonial .sgc-testimonial-title {
  font-family: var(--title-font-family);
  font-size: var(--title-font-size);
  line-height: calc(var(--title-line-height) * 100 * 1%);
  color: rgb(var(--title-color));
  letter-spacing: var(--title-letter-spacing);
}

@media (max-width: 959px) {
  .sgc-testimonial .sgc-testimonial-title {
    font-size: var(--title-mobile-font-size);
  }
}

.sgc-testimonial .sgc-testimonial-description {
  margin-block-start: 20px;
}

.sgc-testimonial .sgc-testimonial-description a,
.sgc-testimonial .sgc-testimonial-description a:hover {
  position: relative;
  padding: 0 1px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.sgc-testimonial .sgc-testimonial-list {
  width: 100%;
}
