.gallery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gallery-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.gallery-list img {
  display: block;
  margin-bottom: 0.5em;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: flex-start; /* or center */
}

.gallery figure {
  margin: 0;
  width: 180px; /* or whatever fits your thumbnail size */
  text-align: center;
}

.gallery-divider {
  width: 50%;
  margin: 1em auto;
  border: 1px solid #ccc;
}

.gallery-list img,
.gallery img {
  width: 160px;      /* set your desired width */
  height: 120px;     /* set your desired height */
  object-fit: cover; /* crop to fill the box */
  box-shadow: 0 8px 12px rgba(0,0,0,0.18), 0 1.5px 4px rgba(0,0,0,0.15);
  border-radius: 8px; /* optional: for slightly rounded corners */
  border: 2px solid #fff;
  outline: 2px solid #121213;
  outline-offset: -4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-list img:hover,
.gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.18);
  z-index: 2;
}