.page-hero {
  position: relative;
  display: block;
  width: 100vw;
  height: 8em;
  overflow: hidden;
}

.page-hero .hero-image {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: 85% 20%;
}

@media screen and (min-width: 40em) {
  .page-hero {
    height: 25em;
  }

  .page-hero .hero-image {
    width: 100%;
    object-fit: cover;
    object-position: 50% 40%;
  }
}

.page-hero .hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: left;
}

.page-hero .page-title {
  position: relative;
  display: flex;
  flex-flow: column;
  width: 100%;
  font-size: clamp(36px, 4.167vw, 60px);
  font-weight: 700;
  margin: 0.75em 0.5em;
}

.page-hero .page-title small {
  font-size: clamp(14px, 1.389vw, 20px);
  font-weight: 500;
  padding-bottom: 1em;
  color: var(--color-text-black);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

@media screen and (min-width: 40em) {
  .page-hero .page-title {
    margin: 0.5em 1em;
  }

  .page-hero .page-title small {
    padding-bottom: 0.5em;
    border-bottom: none;
  }

  .page-hero .page-title::after {
    width: 62px;
    height: 62px;
    top: -0.25em;
    right: -1.5em;
  }
}

.post-listing .article {
  display: flex;
  flex-flow: column;
  font-weight: 700;
  padding: 1em 1.25em 0.5em 1.25em;
}

.post-listing .article .title {
  font-weight: 500;
  font-size: clamp(14px, 1.25vw, 18px);
}

@media screen and (min-width: 40em) {
  .post-listing {
    margin-left: 12em;
  }

  .post-listing .article {
    flex-flow: row;
    align-items: center;
    gap: 1em;
    padding: 1.5em 2em;
  }
}