.swiper-container-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 120px);
  background: #fff;
  border: 1px solid #eee;
}

.review-card__header-logo {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  display: none;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.review-card__header-info {
  grid-column: 1/ 8;
  grid-row: 1 / 2;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.review-card__name {}

.review-card__body {
  grid-column: 1 / 11;
  grid-row: 2 / 5;
  padding: 40px;
  position: relative;
}

.review-card__body p {
  margin-top: 20px;
}

.review-card__letter {
  display: none;
  grid-row: 1 / 2;
  grid-column: 8 / 11;
}

.letter-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-icon .review-card__letter {
  /* grid-column: 3 / 4;
  grid-row: 1 / 3; */
  border-left: 1px solid #eee;
  background: #fcfcfc;
  padding: 20px;
}

.review-card__footer-pagination {
  grid-column: 1 / 3;
  grid-row: 5 / 6;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 15px;
  text-align: center;
}

.review-card__footer-link {
  grid-column: 8 / 11;
  grid-row: 5 / 6;
  height: 100%;
  border-left: 1px solid var(--grid-gray);
  border-top: 1px solid var(--grid-gray);
  text-align: center;
}

.review-card__footer-link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}

.review-card__footer-link a svg {
  fill: var(--bleck);
}

.review-card__footer-link:hover a svg {
  fill: var(--orange-accent);
}

/* Стилизация кнопок навигации */
.swiper-button-next,
.swiper-button-prev {
  background: var(--orange-accent);
  width: 120px;
  height: 120px;
  color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 43%);
  right: -120px;
}

.swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 43%);
  left: -120px;
}