.page-review-section {
  width: 85%;
  max-width: 1350px;
  margin: 0 auto 11.25rem;
}

.page-review {
  display: flex;
  gap: 2.625rem;
  padding: 2rem;
  border: 1px solid var(--primary-brown);
  background: var(--grayscale-color-9);
  border-radius: 0.625rem;
}

.page-review__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  align-self: stretch;
  overflow: auto;
  border-radius: 0.625rem;
  background: linear-gradient(
    167.62deg,
    rgba(0, 0, 0, 0.48) 1.77%,
    rgba(255, 117, 39, 0.6) 122.74%
  );
}

.page-review__image img {
  width: auto;
  max-width: 12rem;
  height: auto;
  display: block;
}

.page-review__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.page-review__quote {
  color: var(--grayscale-color-1);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  margin-bottom: 1.25rem;
}

.page-review__author {
  margin-top: auto;
}

.page-review__name {
  display: block;
  color: var(--grayscale-color-1);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: clamp(0.75rem, 0.6893rem + 0.2589vw, 1rem);
}

.page-review__position {
  color: var(--grayscale-color-3);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7197rem + 0.1294vw, 0.875rem);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-review {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.125rem;
  }

  .page-review__image {
    width: 100%;
    max-width: 100%;
    align-self: auto;
    padding: 3rem 0;
  }
}

@media (max-width: 575px) {
  .page-review__image img {
    max-width: 6.875rem;
  }
}
