/*
article img {
    max-width: 200px !important;
}
*/
/* ── Gallery container ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

/* ── Each item ── */
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

/* ── Image fills the card ── */
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;

  /* override leafwiki styling */
  margin: 0.5rem;
}

/* ── Caption ── */
.gallery-item span {
  padding: 0.4rem 0.6rem;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.4;
  text-align: center;
}

