article header,
.post header {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  margin-block: 1rem;
}
article .byline,
.post .byline {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
  font-family: var(--base-font);
  font-family: var(--minion-font-family);
  line-height: var(--default-minion-line-height);
  font-size: var(--default-minion-font-size);
}
article .byline .published,
.post .byline .published {
  font-weight: bold;
  min-width: max-content;
}
article .byline .author,
.post .byline .author {
  font-style: italic;
}
article figure,
.post figure {
  margin: 0;
}
article figure img,
.post figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  border-radius: 0.25rem;
}
article figure {
  max-height: 25rem;
  padding-block: 0.5rem;
  margin-block-end: 2rem;
}
article figure img {
  height: 20rem;
}
article figure figcaption {
  font-family: var(--minion-font-family);
  line-height: var(--small-minion-line-height);
  font-size: var(--small-minion-font-size);
  font-style: italic;
  text-align: center;
  padding-block-start: 0.5rem;
}
