/* PAGE LAYOUT */
body {
  background-color: pink;
  color: black;
  font-family: Verdana, Geneva, sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
  font-size: 16px;
}

/* GRID */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

/* THUMBNAILS: apply ONLY to the images you want sized */
.character-grid img.thumb {
  width: 180px;        /* fixed thumbnail width */
  height: 180px;       /* fixed thumbnail height */
  object-fit: cover;   /* crop to fill without distortion */
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  transition: transform 0.25s ease;
}

/* hover enlarge (image only) */
.character-grid a:hover img.thumb {
  transform: scale(1.08);
}

/* caption text under image */
.character-grid p {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: bold;
  color: #000;
}

/* GALLERY IMAGES (on character pages) - keep these full width and not constrained */
.gallery img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
  border-radius: 8px;
}
