.galerie-wrap h1 {
  margin-top: 135px;
  margin-bottom: 25px;
  color: #e0e0e0;
  font-size: 30px;
}
.lazy-image {
  filter: blur(10px); /* Làm mờ ảnh chất lượng thấp */
  transition: filter 0.3s ease-out; /* Hiệu ứng mượt mà khi thay đổi */
}
@media (max-width: 768px) {
  .galerie-wrap h1 {
    font-size: 30px;
    text-align: center;
  }
}
.image-gallery {
  border-radius: 10px;
  background: #fcfcfc;
  padding: 50px 10.5px;

  margin-bottom: 50px;
  position: relative;
}

.image-gallery:before {
  content: "";
  height: 10px;
  width: calc(100% - 30px);
  position: absolute;
  top: -10px;
  border-radius: 5px 5px 0 0;
  background-color: #f2f6f7;
  opacity: 0.2;
  left: 15px;
}

.image-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}
.image-item-wrap {
  width: 100%;
}
.image-gallery .image-item {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio (100/100 = 1) */
}
.image-gallery .image-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
