.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
}

.layout aside section {
  margin-bottom: 3rem;
}

.layout aside h2 {
  margin-bottom: .75rem;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: uppercase;
}

@media screen and (min-width: 45rem) {
  .layout {
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
  }
}

@media screen and (max-width: 768px) {
	.layout {
    grid-template-columns: none;
    margin-top: 3rem;
  }
}
