/* Контейнер слайдера */
.grs-swiper-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0 30px 0;
  box-sizing: border-box;
}

/* Слайд */
.grs-swiper-slide {
  display: flex;
  justify-content: center;
}

/* Карточка отзыва */
.grs-review {
  background: #fff !important;
  border-radius: 8px !important;
  padding: 30px 20px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  height: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Автор и фото */
.grs-author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.grs-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}
.grs-author strong {
  font-size: 18px;
  color: #222;
}

/* Рейтинг */
.grs-rating {
  font-size: 16px;
  color: #ffb400;
  margin-bottom: 15px;
}

/* Текст отзыва */
.grs-text {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Дата */
.grs-date {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
}

/* Кнопка под слайдером */
.grs-btn-wrap {
  text-align: center;
  margin-top: 30px;
}
.grs-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0073e6;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.grs-btn:hover,
.grs-btn:focus {
  background-color: #005bb5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Пагинация и стрелки Swiper */
.grs-swiper-pagination { text-align: center; margin-top: 15px; }
.grs-swiper-button-prev,
.grs-swiper-button-next {
  color: #0073e6 !important;
}

/* Адаптив */
@media (max-width: 1024px) {
  .grs-swiper-container { padding: 40px 0 20px 0; }
}
@media (max-width: 768px) {
  .grs-author img { width: 40px; height: 40px; margin-right: 10px; }
  .grs-text { font-size: 14px; }
  .grs-btn { font-size: 15px; padding: 10px 25px; }
}
@media (max-width: 480px) {
  .grs-swiper-slide { width: 80%; margin: 0 auto; }
  .grs-review { max-width: 100%; padding: 20px; }
}
