@charset "utf-8";
/*--------------------------------------------------------------------------------

  manga list
  
--------------------------------------------------------------------------------*/
.manga-list {
  max-width: 1000px;
  margin-inline: auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: var(--space-2s) var(--space-3s);
}
.manga-list img {
  width: 100%;
  max-width: 420px;
}
