.post-card-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media (min-width: 1001px) {
  .post-xlarge:nth-child(1) {
      grid-column: 1 / span 3;
      display: grid;
      grid-gap: 4vmin;
      grid-template-columns: 1fr 1fr 1fr;
      min-height: 280px;
      border-top: 0;
  }

  .post-xlarge:nth-child(1):not(.no-image) .post-card-header {
      margin-top: 0;
  }

  .post-xlarge:nth-child(1) .post-card-image-link {
      position: relative;
      grid-column: 1 / span 2;
      margin-bottom: 0;
      min-height: 380px;
  }

  .post-feed.list .post-xlarge:nth-child(1) .post-card-image-link {
      grid-column: 1 / span 1;
      height: max-content;
      min-height: auto;
  }

  .post-feed.list .post-xlarge:nth-child(1) .post-card-image-link::after {
      content: "";
      display: block;
      padding-bottom: 60%;
  }

  .post-xlarge:nth-child(1) .post-card-image {
      position: absolute;
      width: 100%;
      height: 100%;
  }

  .post-xlarge:nth-child(1) .post-card-content {
      justify-content: center;
  }

  .post-xlarge:nth-child(1) .post-card-title {
      margin-top: 0;
      font-size: 3.2rem;
  }

  .post-feed.list:nth-child(1) .post-xlarge .post-card-title {
      font-size: 2.4rem;
  }

  .post-xlarge:nth-child(1) .post-card-excerpt p {
      font-size: 1.7rem;
      line-height: 1.55em;
      -webkit-line-clamp: 8;
  }
}