.blog-card-list-header {
  column-gap: 0px;
  display: flex;
  height: auto;
  row-gap: var(--baseline-sm);
  padding-top: var(--space-xxl);
  padding-bottom: var(--baseline);

  >h2 {
    line-height: var(--line-height);
  }

  >a {
    font-weight: 600;
  }
}

@media (min-width: 0) {
  .blog-card-list-header {
    flex-direction: column;
  }
}

@media (min-width: 40rem) {
  .blog-card-list-header {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
  }
}