.matrix-gallery{
  max-width: 900px; 
  margin: 0 auto;     
  display: grid;
  gap: 12px;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 208px);
}

 
.galeri-item{
  width: 208px;
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
  background: #f2f2f2;
}

/* Resimler */
.galeri-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
}
.galeri-item .title{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  font-size: 13px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  box-sizing: border-box;
}
/* ---------------------- */
/*      RESPONSIVE        */
/* ---------------------- */

/* Tablet */
@media (max-width: 991px){
  .matrix-gallery{
    grid-template-columns: repeat(auto-fill, 180px);
  }
  .galeri-item{
    width: 180px;
    height: 120px;
  }
}

/* Mobil */
@media (max-width: 600px){
  .matrix-gallery{
    grid-template-columns: repeat(auto-fill, 150px);
  }
  .galeri-item{
    width: 150px;
    height: 100px;
  }
}

/* kucuk ekranlar */
@media (max-width: 420px){
  .matrix-gallery{
    grid-template-columns: repeat(auto-fill, 130px);
  }
  .galeri-item{
    width: 130px;
    height: 90px;
  }
}