body.template--post {
  max-width: none;
  padding: 0;
  margin: 0;
}

.post-article {
  width: min(var(--layout-shell-max), calc(100vw - (var(--layout-sidebar-space) + (2 * var(--layout-gutter)))));
  margin: 0 auto;
  padding: 48px var(--layout-gutter) 140px calc(var(--layout-sidebar-space) + var(--layout-gutter));
  box-sizing: border-box;
}

.post-article__layout {
  --post-meta-label-col: 140px;
  --post-meta-gap: 16px;
  --post-space-1: 10px;
  --post-space-2: 18px;
  --post-space-3: 28px;
  --post-space-4: 44px;
  --post-space-5: 64px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
}

.post-article__title {
  margin: 0 0 var(--post-space-3);
  max-width: 34ch;
  font-size: var(--font-size-display);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
  padding-top: 0;
}

.post-article__meta {
  margin: 0 0 var(--post-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--post-space-1);
  width: 100%;
}

.post-article__meta-row {
  position: relative;
  min-height: 1.2em;
  font-family: "Manrope", var(--font-family-sans);
}

.post-article__meta-row dt {
  position: absolute;
  top: 0;
  left: auto;
  right: calc(100% + 10px);
  margin: 0;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  white-space: nowrap;
  width: var(--post-meta-label-col);
  text-align: right;
}

.post-article__meta-row dd {
  margin: 0;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

.post-article__cover {
  margin: 0 0 var(--post-space-4);
}

.post-article__cover img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.post-article__cover figcaption {
  margin-top: var(--post-space-1);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

.post-article__body {
  width: 100%;
  font-family: "Manrope", var(--font-family-sans);
}

.post-article__body p {
  margin-bottom: var(--post-space-2);
  max-width: 68ch;
  font-size: var(--font-size-md);
  line-height: 1.38;
}

.post-article__body figure {
  width: min(360px, 42%);
  margin: var(--post-space-5) 0 var(--post-space-4) auto;
}

.post-article__body figure img {
  width: 100%;
  height: auto;
  display: block;
}

.post-article__body figcaption {
  margin-top: var(--post-space-1);
  text-align: left;
  color: #000;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

@media screen and (max-width: 64rem), screen and (max-height: 699px) {
  .post-article {
    width: auto;
    padding: 120px 6vw 120px;
  }
}

@media screen and (max-width: 64rem) {
  .post-article__layout {
    --post-space-1: 8px;
    --post-space-2: 14px;
    --post-space-3: 20px;
    --post-space-4: 30px;
    --post-space-5: 42px;
    padding-top: 130px;
    gap: 0;
  }

  .post-article__title {
    margin-bottom: var(--post-space-3);
    max-width: 100%;
  }

  .post-article__meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 0 var(--post-space-4);
    margin-left: 0;
    width: 100%;
  }

  .post-article__meta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-height: 0;
  }

  .post-article__meta-row dt {
    position: static;
    display: block;
    margin-bottom: 0;
    width: auto;
    text-align: left;
    font-size: var(--font-size-sm);
    font-weight: 700;
  }

  .post-article__meta-row dd {
    text-align: left;
    width: auto;
  }

  .post-article__cover img {
    max-width: 100%;
  }

  .post-article__body p {
    max-width: 100%;
  }

  .post-article__body figure {
    width: min(340px, 100%);
    margin: var(--post-space-4) auto;
  }
}
