.horizontal-reviews-slider {
  background: var(--horizontal-reviews-bg, rgb(var(--color-background)));
}

.horizontal-reviews-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 110px;
}

.horizontal-reviews-slider__heading {
  margin: 0;
  color: rgb(var(--color-text));
}

.horizontal-reviews-slider__arrows {
  display: flex;
  gap: 20px;
}

.horizontal-reviews-slider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #203b52;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.horizontal-reviews-slider__swiper {
  width: 100%;
  overflow: visible;
}

.horizontal-reviews-slider__swiper .swiper-wrapper {
  align-items: stretch;
}

.horizontal-reviews-slider__slide {
  height: auto !important;
}

.horizontal-reviews-slider__track-wrap {
  width: 100%;
  box-sizing: border-box;
  /* padding-inline-start: max(calc((100vw - var(--page-width)) / 2), 20px); */
  padding-inline-end: 0;
  overflow: visible;
}

.horizontal-reviews-slider__card {
  height: 100%;
  border-radius: 20px;
  background: #fff;
  color: #222;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

.horizontal-reviews-slider__review-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 96px;
}

.horizontal-reviews-slider__review {
  font-size: 16px;
  margin: 0;
  text-align: left;
  line-height: 1.45;
  display: block;
  max-height: 4.35em;
  overflow: hidden;
  opacity: 0.92;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.horizontal-reviews-slider__card.is-expanded
  .horizontal-reviews-slider__review {
  max-height: 1000px;
  opacity: 1;
}

.horizontal-reviews-slider__read-more {
  margin-top: 6px;
  padding: 0;
  border: 0;
  font-weight: 500;
  background: none;
  color: #203b52;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  width: fit-content;
}

.horizontal-reviews-slider__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.horizontal-reviews-slider__author-image {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
}

.horizontal-reviews-slider__author-image img,
.horizontal-reviews-slider__author-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.horizontal-reviews-slider__author-name,
.horizontal-reviews-slider__author-info {
  margin: 0;
}

.horizontal-reviews-slider__author-name {
  font-family: "Neutrif Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.29;
  color: #2CC1D6;
  margin: 0 0 4px;
}

.horizontal-reviews-slider__author-info {
  font-size: 11px;
  color: #5d7180;
}

.horizontal-reviews-slider__progress {
  height: 2px;
  margin-top: 110px;
  background: #ddd;
}

.horizontal-reviews-slider__progress-fill {
  height: 3px;
  width: 0;
  background: #2bc1d7;
  transition: width 0.3s ease;
}

@media (max-width: 1199px) {
  .horizontal-reviews-slider__head {
    margin-bottom: 20px;
  }
  .horizontal-reviews-slider__progress {
    margin-top: 40px;
  }
}
