body {
  background-color: var(--color-2);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  position: relative;
  bottom: 32px;
  padding: 24px;
}

h1 {
  margin-bottom: 16px;
}
h2 {
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  word-break: break-word;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-header img {
  height: 75px;
  width: 75px;
  border-radius: 75px;
}

.testimonial {
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 16px;
  border: solid 1px var(--dark);
  padding: 8px;
}
.testimonial blockquote p {
  font-style: italic;
}

.testimonial {
  margin-bottom: 24px;
}

@media only screen and (min-width: 767px) {
  .testimonial {
    margin-bottom: 0;
  }
  .grid-1,
  .grid-2 {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-bottom: 24px;
  }

  .grid-2 {
    grid-template-rows: 1fr 1fr;
  }

  .grid-1 article:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .grid-1 article:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .grid-1 article:nth-child(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .grid-1 article:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .grid-1 article:nth-child(5) {
    grid-column: span 2;
  }

  .grid-2 article:last-child {
    grid-column: span 2;
  }
}

@media only screen and (min-width: 1200px) {
  main {
    padding-left: 56px;
    padding-right: 56px;
  }
}
