.author-details {
  figure {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;

    img {
      flex-shrink: 0;
      border-radius: 50%;
      width: 3.2rem;
      aspect-ratio: 1;
    }

    figcaption {
      font-size: var(--size-step--1);
      text-transform: uppercase;
    }
  }
}

.author-details--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
