.reviews .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: unset;
}
.reviews__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 72%;
  color: #271a16;
}
.reviews__controls {
  display: flex;
  gap: 12px;
}
.reviews__prev {
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
  border: 0.88px solid #c3c0c0;
  border-radius: 85px;
  background: rgba(194, 196, 205, 0.18);
}
.reviews__prev,
.reviews__next {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews__next {
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
  border: 0.88px solid #36a433;
  border-radius: 85px;
}
.reviews__prev svg path {
  transition: fill 0.3s ease;
  fill: #c3c0c0;
}
.reviews__next svg path {
  transition: fill 0.3s ease;
  fill: #c3c0c0;
}
.reviews__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.swiper-slide.reviews__slide {
  border: 1px solid #379620;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;

}
.reviews__slide-top {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}
.reviews__slide-midle {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.reviews__slide-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews__slide-clinic {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews__slide-clinic svg {
  font-weight: 700;
  font-size: 15px;
  color: #404040;
}
.reviews__slide-clinic span {
  font-weight: 700;
  font-size: 15px;
  color: #404040;
}
.reviews__slide-doctor {
  font-weight: 700;
  font-size: 15px;
  color: #404040;
}
.reviews__feedback {
  font-weight: 400;
  font-size: 16px;
  color: #404040;
}
.reviews__show-review {
  font-weight: 700;
  font-size: 14px;
  color: #36a433;
  cursor: pointer;
}
.reviews__slide-name {
  font-weight: 700;
  font-size: 12px;
  color: #404040;
}
.reviews__slide-date {
  font-weight: 400;
  font-size: 12px;
  color: #808ba7;
}
.reviews__slide-bottom {
  display: flex;
  justify-content: space-between;
}
.reviews__slide-user {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}


/* нейро */
.reviews__block {
  display: flex;
  flex-direction: column;
  gap: 40px;

  /* Важно для Swiper внутри flex-контейнера */
  min-width: 0;
}

.reviews__slider {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.reviews__wrapper {
  align-items: stretch;
}

.swiper-slide.reviews__slide {
  box-sizing: border-box;
  height: auto;

  border: 1px solid #379620;
  border-radius: 12px;
  padding: 20px;
  background: #fff;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews__slide-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}