.reviews-section {
  padding-top: 0;
  padding-bottom: 0; }
  
.reviews-section .section-title {
  margin-bottom: 35px; }

.reviews-section__header {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; }

.reviews-section__inner {
  display: grid;
  gap: 40px 24px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); }

.review-card {
  background: var(--card_bg_black);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--stroke_black);
  transition: transform 0.2s, box-shadow 0.3s, border-color 0.3s; }

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 30px rgba(34,34,34,0.1);
  border-color: var(--stroke_black_hover);
  background-color: var(--card_bg_hover_black); }

.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px; }

.review-card__photo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--darkgrey_bg_black); }

.review-card__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.review-card__info {
  flex: 1; }

.review-card__name {
  font-weight: 500;
  font-size: 1rem;
  line-height: calc(1em + 7px);
  color: var(--white_text_black);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px; }

.review-card__name a {
  color: inherit;
  text-decoration: none;
  display: block; }

.review-card__name a:hover {
  text-decoration: underline; }

.review-card__verified {
  color: var(--theme-base-color);
  font-size: 18px; }

.review-card__city,
.review-card__model {
  font-size: .875rem;
  line-height: calc(1em + 7px);
  color: var(--lite_basic_text_black);
  margin-top: 4px; }

.review-card__rating {
  display: flex;
  gap: 4px;
  flex-shrink: 0; }

.review-star {
  color: var(--stroke_black);
  font-size: 18px;
  line-height: 1; }

.review-star.active {
  color: #ffc107; }

.review-card__text {
  font-size: .9375rem;
  line-height: calc(1em + 7px);
  color: var(--basic_text_black);
  margin-bottom: 16px; }

.review-card__reply {
  background: var(--lite_bg_black);
  border-left: 3px solid var(--theme-base-color);
  padding: 16px;
  margin-top: 16px;
  border-radius: 8px; }

.review-card__reply-header {
  margin-bottom: 12px; }

.review-card__reply-label {
  font-weight: 500;
  color: var(--theme-base-color);
  font-size: .875rem;
  line-height: calc(1em + 7px); }

.review-card__reply-text {
  font-size: .875rem;
  line-height: calc(1em + 7px);
  color: var(--basic_text_black);
  margin-bottom: 12px; }

.review-card__reply-photos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap; }

.review-card__reply-photo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  display: block; }

.review-card__reply-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.review-card__date {
  font-size: .875rem;
  line-height: calc(1em + 7px);
  color: var(--lite_basic_text_black);
  margin-top: 12px; }

.reviews-section__footer {
  text-align: center;
  margin-top: 40px; }

.reviews-section__footer .btn {
  display: inline-block;
  padding: 1px 20px;
  height: 42px;
  background: var(--theme-base-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1em;
  transition: background-color 0.1s ease;
  border: 1px solid var(--theme-base-color); }

.reviews-section__footer .btn:hover {
  background-color: hsl(var(--theme-base-color-hue), var(--theme-base-color-saturation), calc(var(--theme-base-color-lightness) + var(--theme-lightness-hover-diff)));
  border-color: hsl(var(--theme-base-color-hue), var(--theme-base-color-saturation), calc(var(--theme-base-color-lightness) + var(--theme-lightness-hover-diff))); }

@media (max-width: 991.75px) {
  .reviews-section__inner {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767.75px) {
  .reviews-section {
    padding-top: 0;
    padding-bottom: 0; }
  .reviews-section__inner {
    grid-template-columns: 1fr;
    gap: 24px; }
  .review-card {
    padding: 20px; } }

@media (max-width: 600.75px) {
  .reviews-section__inner {
    display: flex;
    grid-gap: 0;
    overflow: auto;
    padding: 15px 24px !important;
    margin: -15px -24px !important; }
  .review-card {
    width: 300px;
    min-width: 300px; }
  .review-card:not(:last-child) {
    margin-right: 24px; } }
