.gallery-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: repeat(2,.9fr); */
  gap: 5px;
  margin: 0 0 35% 0;
}

.polaroid-1 {
  background: white;
  padding: 10px 10px 45px 10px;
  width: 200px;
  margin: 20px auto;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.polaroid-1 img {
  width: 100%;
  height: 250px;          /* 👈 fixed height instead of aspect-ratio */
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.polaroid-1 p {
  font-family: 'Sacramento', cursive;
  font-size: 1.3rem;
  color: #C58F86;
}

.polaroid-1:nth-child(even) {
  transform: translateY(50%);
  /* margin-bottom: 50%; */
}

.img-wrapper-1 {
  height: 250px;
  overflow: hidden;
}

.img-wrapper-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-1-1-1{
  border-radius: 15px 0 0 15px;
}

.item-1-1-2{
  border-radius: 0 15px 15px 0;
  object-position: 0px 50%;
}

.item-1-2{
  object-position: 42% 50%; 
}
.item-1-3{
  /* transform: scale(0.9);     zoom in */
  object-position: 45% 50%; 
}


.item-4 img {
  object-position: -23px 50%;
}


.gallery-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
  /* margin-bottom: 25%; */
}

.polaroid-2 {
  background: white;
  padding: 10px 10px 45px 10px;
  width: 90%;
  margin: 20px auto;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.polaroid-2 img {
  width: 100%;
  height: 250px;          /* 👈 fixed height instead of aspect-ratio */
  object-fit: cover;
  display: block;
}

.polaroid-2 p {
  font-family: 'Sacramento', cursive;
  font-size: 1.3rem;
  color: #C58F86;
}

.img-wrapper-2 {
  height: 250px;
  overflow: hidden;
  border-radius:15px ;
}

.img-wrapper-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrapper-2-special {
  height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  border-radius: ;
}
.img-wrapper-2-special img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.item-2-1{
  object-position: 50% 0%;
  transform: scale(1.8);
}

.item-2-2{
  object-position: 12% 50%;
  /* transform: scale(1.8); */
}