.parallax-container{
  border-radius: .5rem;
  height: 75vh;
}
.parallax:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-m);
  opacity: .75;
  z-index: 1;
}
.parallax img{
  -o-object-fit: cover;
     object-fit: cover;
}
.parallax-container .title{
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.parallax-container .title > :first-child{
  font-weight: 300;
  max-width: 75%;
}
.lead{
  font-weight: 600;
  margin-bottom: 3rem;
}
.post-detail{
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.category,
.tags{
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
}
.category a,
.tags a{
  color: var(--color-white);
  transition: all .3s;
}
.category a:hover,
.tags a:hover{
  color: var(--color-white);
}
.blog-content{
  background: var(--color-white);
  color: var(--color-m);
  border-radius: .5rem;
  padding: 7rem 0 0;
}
.back{
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: .5rem .5rem 0 0;
  text-align: center;
  margin-top: 3rem;
  color: var(--color-s);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  border-bottom: none;
  padding: 0 2.5rem;
}
.back:hover{
  background: var(--color-m);
  color: var(--color-white);
}
.related-projects{
  background-color: var(--color-dark);
  color: var(--color-s);
  padding: 0 5px;
}
.related-projects > *:first-child{
  font-weight: 200;
  text-align: center;
  margin: 7rem 0;
}
.related-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
}
/* related cards */
/* related cards */
article{
	border-radius: .5rem !important;
	overflow: hidden;
	margin: 0 !important;
	background-color: var(--color-m) !important;
}

article .card-title .title{
	font-size: 1vw;
	font-weight: 600;
	margin: 0;
}
article .card-subtitle{
  font-weight: 300;
	font-size: .8vw;
	margin: 0;
}
article .category{
  display: flex;
  flex-direction: row;
	font-size: 1vw;
	font-weight: 400;
	margin: 0;
	text-transform: uppercase;
	color: var(--color-white);
}
article .category .slash{
  margin: auto .5rem;
  font-weight: 600;
}
article .category a{
	color: var(--color-white);
}
article .image:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top right, #000, transparent);
	opacity: .43;
	z-index: 1;
}
article .card-title{
	z-index: 2;
}
article .card-title a{
	color: var(--color-white);
}
article .card-image{
	height: 100%;
	transition: all .3s;
}
article .card-image img{
	height: 100%;
	transform: scale(1.1);
	-o-object-fit: cover;
	   object-fit: cover;
	transition: all .6s;
}
article:hover .card-image img{
	left: 4%;
} 
@media (max-width:900px){
  .related-cards{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:600px){
  .related-cards{
    grid-template-columns: repeat(1, 1fr);
    margin: .5rem 0;
  }
  .related-cards article{
    margin: 0;
  }
  .title > :first-child{
    font-size: 4vh;
    font-weight: 400;
  }
  .category, .tags{
    margin: 0;
  }
}
