
.custom-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery-item {
  border: 2px solid #ccc;
  padding: 5px;
  width: 100%;
  max-width: 220px;
}
.gallery-item img {
  width: 100%;
  height: auto;
}
.desc {
  font-size: 14px;
  margin-top: 5px;
}
.az-filter {
  text-align: center;
  margin-bottom: 15px;
}
.az-filter a {
  margin: 0 5px;
  text-decoration: none;
  font-weight: bold;
}
.more-button {
  border: 1px solid #ccc;
  background: #f5f5f5;
  box-shadow: 0 1px 3px #ddd;
  padding: 10px 15px;
  display: inline-block;
  text-align: center;
  margin: 15px auto;
  cursor: pointer;
}
