.blogPostSingle {
  position: relative;
  padding: min(10vw, 100px) min(5vw, 50px);

  /* Constrain to a comfortable reading measure, left-aligned. */
  .innerWrapper {
    align-items: stretch;
    max-width: 900px;
  }

  .blogPostSingle__header {
    margin-bottom: 30px;
  }

  .blogPostSingle__meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--holtLightBlue);
  }

  .blogPostSingle__image {
    margin: 0 0 35px 0;

    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .blogPostSingle__content {
    /* Keep block-editor media within the column. */
    img {
      max-width: 100%;
      height: auto;
    }

    h2, h3, h4, h5, h6 {
      margin-top: 15px;
    }

    /* Slightly reduce the default heading sizes */
    h2 { font-size: clamp(var(--h3min), calc(23.24px + 0.35vw), var(--h3max)); }
    h3 { font-size: var(--h4min); }

    & > :first-child { margin-top: 0; }
    & > :last-child { margin-bottom: 0; }

    /* Multi-page post links from wp_link_pages(). */
    .blogPostSingle__pageLinks {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;

      a {
        color: var(--holtLightBlue);
        transition: color var(--transitionLinearFast);

        &:hover {
          color: var(--holtBlue);
        }
      }
    }
  }
}
