* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  background-color: hsl(210, 46%, 95%);
  max-width: 100vw;
  min-height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  font-family: "Barlow Semi Condensed", sans-serif;
}

main {
  max-width: 67.5rem;
  width: 100%;
}

/******************* testimonials *******************/
.testimonials {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  font-size: 0.8125rem;
  margin: 1rem;
}
.testimonial {
  border-radius: 0.625rem;
  padding: 1.8rem;
  box-shadow: 0.625rem 0.625rem 2rem rgba(0, 0, 0, 0.1);
}

.testimonial__header {
  display: grid;
  gap: 1rem;
  grid-template-columns: min-content 1fr;
  margin-bottom: 1rem;
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonial__name {
  color: #fff;
}

.testimonial__verified {
  font-size: 0.685rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial__image {
  border-radius: 20rem;
  border: 0.185rem solid #ffffff4d;
  width: 1.8rem;
  height: 1.8rem;
}

.testimonial__heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.testimonial-1 {
  position: relative;
  grid-column: 1/3;
  background-color: #7541c8;
  overflow: hidden;
  color: #fff;
}

.testimonial-1::after {
  position: absolute;
  content: "";
  background-image: url("./images/bg-pattern-quotation.svg");
  background-repeat: no-repeat;
  background-position: right top;
  left: 0;
  top: 0;
  width: 90%;
  height: 100%;
}

.testimonial-2 {
  background-color: #48556a;
  color: #fff;
}

.testimonial-3 {
  background-color: #fff;
}

.testimonial-4 {
  grid-column: 2/4;
  background-color: #19212e;
  color: #fff;
}

.testimonial-5 {
  grid-column: 4/5;
  grid-row: 1/3;
  background-color: #fff;
}

.testimonial__text {
  color: #ffffffb3;
}

.testimonial-5 .testimonial__name,
.testimonial-5 .testimonial__heading,
.testimonial-3 .testimonial__heading,
.testimonial-3 .testimonial__name {
  color: #48556a;
}

.testimonial-5 .testimonial__verified,
.testimonial-3 .testimonial__verified {
  color: #48556a4d;
}

.testimonial-5 .testimonial__text,
.testimonial-3 .testimonial__text {
  color: #48556ab3;
}

/******************* footer *******************/
.attribution {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0.825rem;
}

/******************* media query *******************/
@media screen and (max-width: 60rem) {
  .testimonials {
    display: block;
    margin: 4rem 1rem;
    max-width: 23.4375rem;
  }
  .testimonial:not(:last-child) {
    margin-bottom: 1rem;
  }
}
