#reviews .container {
  padding-bottom: 32px;
}
.reviews__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.reviews__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* align-items: center; */
  justify-content: space-between;
  padding: 32px;
  background-color: #f2f4f8;
  border-radius: var(--radius);
  height: 100%;
}
.reviews__item_header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviews__item_header_name-rating > div:first-child {
  font-weight: 600;
  font-size: 24px;
  line-height: 31.2px;
}

.reviews__item_header_name-rating > div:last-child {
  display: flex;
  gap: 3px;
}
.reviews__item_body {
  height: 100%;
}
.reviews__item-btn img {
  width: unset;
}
.reviews__item-img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 100%;
  overflow: hidden;
}
.reviews__item-btn {
  color: var(--pink);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.reviews__item-btn:hover {
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#reviews .swiper-slide {
  max-width: 437px;
  height: unset;
}

.reviews__item_body {
  flex-grow: 1; /* Позволяем телу отзыва растягиваться */
}
