*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-fam);
  color: var(--white);
}

h1,
h2,
h3 {
  font-size: 0.8125rem;
}

.grid {
  width: 100vw;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 18.75rem);
  grid-template-rows: repeat(2, 18.75rem);
  gap: 1rem;
  justify-content: center;
  align-content: center;
  height: 100vh;
}

.review {
  background-color: white;

  border-radius: 0.5rem;
  padding: 1rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.review-1 {
  grid-row: 1;
  grid-column: 1 / 3;
  background-color: var(--purple-500);
  position: relative;
  z-index: -2;
}

.review-2 {
  grid-row: 1;
  background-color: var(--grey500);
  grid-column: 3;
}
.review-3 {
  grid-row: 1 / 3;
  grid-column: 4 / 5;
  background-color: var(--white);
  color: black;
}
.review-4 {
  grid-row: 2;
  grid-column: 1;
  color: black;
}
.review-5 {
  grid-row: 2;
  grid-column: 2/ 4;
  background-color: var(--darkblue);
}

.user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user img {
  background-size: cover;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid var(--purple-300);
}

.user-name {
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--white);
}

.user-graduate {
  display: block;
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--grey100);
}

.review-highlight {
  font-weight: var(--fw-semibold);
  font-size: 1.3rem;
}

.full-review {
  font-weight: var(--fw-normal);
  font-weight: 400;
  line-height: 130%;
}

.text-container {
  z-index: 1;
}

.quotes {
  background: url("images/bg-pattern-quotation.svg");
  width: 6.5rem;
  height: 6.375rem;
  position: absolute;
  top: 0;
  right: 10rem;
  z-index: -1;
}

.review-3 .user-name {
  color: black;
}
.review-3 .user-graduate {
  color: black;
}
.review-4 .user-name {
  color: black;
}
.review-4 .user-graduate {
  color: black;
}

.review-3 .full-review {
  line-height: 170%;
}
.review-5 .full-review {
  line-height: 170%;
}
.review-4 .full-review {
  line-height: 170%;
  width: 80%;
}
