.PixelArtDetail {
  h2 {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  div {
    text-align: center;
  }

  .pixel-art-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    &.gap {
      margin: 1rem 0;
    }

    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: inline-flex;
      gap: 0.5rem;
      li:not(:last-child):after {
        content: ', ';
      }
    }
  }

  .pixel-art-detail__swatches {
    border: 1px solid black;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .pixel-art-detail__swatch {
    width: 1rem;
    height: 1rem;
    background: var(--swatch-color);
  }
}
