.gallery-wrapper {
  
}

.gallery-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  flex-grow: 1;
}

.moments .line-gallery {
  background-color: #333;
  height: 2.5px;
  width: 100%;
}

.moments .title-and-date {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: .5rem 0;
  text-align: left;
}

.title-and-date h5, .title-and-date p {
  margin: 0;
}


/* Style untuk modal */
.modal {
  display: none; /* Disembunyikan awalnya */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  padding: 50px;
}

/* Gambar dalam modal */
.modal-content {
  width: 100%;
  object-fit: contain;
  max-width: 500px;
  max-height: 800px;
  border-radius: 0;
}

/* Tombol close */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.himatif-moments-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery-item {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  max-width: 100%;
  height: auto; 
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
  transform: scale(1.05);
}