/* ===== RELATED PROJECTS (match related-articles look) ===== */
.related-projects{
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  border-top: 1px solid #1c1f2a;
  background: #fff;
}

.related-projects__bar{
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #1c1f2a;
}

.related-projects__title{
   margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.related-projects__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}


.related-projects__item{
  padding: 2rem;
  border-bottom: 1px solid #1c1f2a;
}

.related-projects__item:not(:first-child){
  border-left: 1px solid #1c1f2a;
}

.related-projects__link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-projects__thumb{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.related-projects__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.related-projects__itemtitle{
  margin: 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.related-projects__cat{
  margin: 0;
  font-size: .75rem;
  opacity: .75;
  text-decoration: underline;
}

.project-card__pill{
  display:inline-block;
  border:1px solid #1A1F2A;
  padding: 6px 6px;
  font-size: 13px;
  border-radius: 2px;
  opacity: .85;
  margin-right: 12px;
  margin-top: 20px;
margin-bottom: 20px;
}

/* RELATED PROJECTS MOBILE */
@media (max-width: 921px){
  .related-projects__grid{
    grid-template-columns: 1fr;
  }
  .related-projects__item:not(:first-child){
    border-left: none;
    border-top: 1px solid #1c1f2a;
  }
}
