/* /Gallery — screenshot set grid (full color, hover dim + zoom like home wallpapers) */
.gallery-list-page{
  background: #fafafa;
  min-height: 48vh;
}
.gallery-list-heading{
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: #111;
}
.gallery-list-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 16px;
}
.gallery-list-card{
  display: block;
  text-decoration: none;
  color: #222;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.gallery-list-card:hover{
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  color: #222;
}
.gallery-list-thumb-wrap{
  overflow: hidden;
  background: #ececec;
  aspect-ratio: 16 / 10;
}
.gallery-list-thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  opacity: 1;
  transition: opacity .28s ease, transform .38s ease;
}
.gallery-list-card:hover .gallery-list-thumb{
  opacity: .55;
  transform: scale(1.08);
}
.gallery-list-caption{
  margin: 0;
  padding: 10px 12px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}
@media (max-width: 991.98px){
  .gallery-list-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px){
  .gallery-list-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
