.post_banner {
  padding: 12rem 0 0;
  text-align: left;
}
.post_banner .breadcrumbs {
  margin-bottom: 2.4rem;
}
.post_banner .tcon,
.post_banner .title {
  max-width: 90rem;
  text-align: left;
}
.post_banner .img {
  margin-top: 4rem;
  border-radius: 1.6rem;
  overflow: hidden;
  aspect-ratio: 16/8;
}
.post_content {
  padding: 6rem 0 10rem;
}
.post_content .content {
  max-width: 144rem;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #46536b;
  font-family: Inter, sans-serif;
}
.post_content .content > * {
  max-width: 90rem;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.page-template-default .post_content .content > *{
  max-width: 100%;
}


.post_content h2,
.post_content h3 {
  color: var(--secondary);
  margin: 3rem 0 1.2rem;
}
.related_projects {
  padding: 0 0 12rem;
}
.related_projects .tcon {
  margin-bottom: 4rem;
  text-align: left;
}
.related_projects .projects_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .related_projects .projects_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .post_banner {
    padding-top: 10rem;
  }
  .post_content {
    padding: 4rem 0 7rem;
  }
  .related_projects {
    padding-bottom: 7rem;
  }
  .related_projects .projects_list {
    grid-template-columns: 1fr;
  }
}
