.post {
  /* max-width: 35rem; */
  margin: 5rem auto;
}
.post-header {
  padding-top: 0;
  margin-bottom: 2.5rem;
  text-align: center;
}
.post-footer {
  padding: 6rem 0;
}
.post-date {
  color: var(--color-text-grey);
}
.post-subheading {
  margin-top: 1.5rem;
  font-style: italic;
  letter-spacing: -0.4rem;
}
.text p, .text ul, .text ol,
.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  max-width: 35rem;
  margin: 5rem auto;
}
.text p, .text a, .text li {
  font-size: 1.375rem;
  line-height: 120%;
  letter-spacing: -0.02rem;
  text-indent: 2rem;
}
.text a, .text li {
  text-indent: 0;
}
.text figure ul {
  max-width: none !important;
  display: flex;
  width: 100%;
  overflow-x: scroll;
}
.text figure ul > li {
  list-style: none;
  margin: 0 15rem;
}

.text figure ul > li:first-child {
  margin-left: 30%;
}

.text figure ul > li img {
  width: auto;
  height: auto;
  max-width: 35rem;
  object-fit: contain;
}
.text figure {
  margin: 15rem 0;
  height: 100vh;
}
.text figure img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.text figcaption {
  padding-top: 0;
  color: var(--color-black);
}
.text figure.left {
  text-align: left;
}

.text figure.right {
  text-align: right;
}

.text figure.center {
  text-align: center;
}

main img.cover {
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.post-title {
  padding: 0 5rem;
}
.text figure.full {
  height: auto;
  width: 100vw;
}
.text figure.full img {
  width: inherit;
  height: auto;
  max-width: 100%;
}
.textcols {
  display: flex;
  flex-direction: row;
  margin: 5rem auto;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.textcols p {
  margin: 0 2.5rem;
  width: 50%;
}

@media screen and (max-width: 501px) {
  .textcols {
    display: block;
  }

  .textcols p {
    width: 100%;
    margin: 0;
  }

  .post-title {
    padding: 0 2.5rem;
  }

  .post.text {
    padding: 0 1.5rem;
  }

  .text figure.left, .text figure.right, .text figure.center {
    text-align: left;
  }

  .text figure, .text figure.full {
    margin: 6.25rem auto;
    height: inherit;
  }

  .text figure.full {
    width: auto;
  }

  .text figure ul > li:first-child {
    margin-left: 0;
  }

  .text figure ul > li {
    margin: 0 6.25rem;
  }

  .text figure ul > li img {
    width: 65vw;
  }

  main img.cover {
    /* height: 50vh; */
    height: auto;
  }

  .text p, .text ul, .text ol, .text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
    margin: 2.5rem auto;
  }
  
  .text figure img {
    height: auto;
  }
}