.split style1{
    display: inline-flex;
}
.elle-grid-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 90%;
}

.gallery-section {
    display: flex;
    padding:0px;
    margin:0px;
    justify-content: left;
    align-items: center;
}

.elle-grid-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s;
  cursor: pointer;
}

 .elle-grid-gallery img:hover {
   transform: scale(1.03);
 }

.section-subtitle {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #f2f2f2;
  font-weight: 500;
}


/* Modal */
.elle-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
  padding-top: 60px;
  text-align: center;
}

.elle-modal-content {
  margin:auto;
  max-width: 90%;
  max-height: 80vh;
  width: 100%;
}

.elle-caption {
  font-size: 18px;
  padding: 12px 20px;
  color: #eee;
  text-align: center;
  font-size: 16px;
    width: 100%;

}

.elle-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

.elle-close:hover {
  color: #aaa;
}

@keyframes zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
