.projects-grid  {
  grid-gap: 1.5rem;
}
.projects-grid  li {
  position: relative;
  --cols: 1;
  --rows: 1;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.projects-grid  a {
  display: block;
}
.projects-grid  img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  transition: all .3s;
}
.projects-grid  figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 1;
}
.projects-grid li {
    grid-column-start: span var(--cols);
    grid-row-start: span var(--rows);
}

.home-intro{
  min-height:50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.tags-container--home > li:last-of-type::before{
  content: "and ";
  margin-right: .5rem;
}
.tags-container--home:last-child::after {
  content: ".";
}
.tags-container--home:last-child::after, .tags-container--home > li:last-of-type::before {
  line-height: 1.25em;
  padding: 4px 0;
}

@media screen and (max-width: 45em) {
 .main.Home{
  margin-bottom: auto !important;
 }
 .footer{
  position: relative;
 }
 .home-intro .tags-container .project__roles a{
  font-size: 2.75rem;}
}


@media screen and (min-width: 45em) {
  .home-intro{
  padding-top: 3rem;
  max-width: 78vw;}

  .home-intro h1, .tags-container--home, .tags-container--home a {
    font-size: 4rem !important;
  }
  .projects-grid  {
  display: grid;
  list-style: none;
  grid-gap: 1.5rem;
  line-height: 0;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
}
  .projects-grid  {
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .projects-grid  li {
  position: relative;
  --cols: 6;
  --rows: 6;
  }
}
@media screen and (min-width: 100em) {
  .home-intro h1, .tags-container--home, .tags-container--home a {
    font-size: 5rem !important;
  }
}
