/* ===============================
   About GALLERY STYLES aboutPictures.css
=================================*/
 /* Ensure body takes full height color Background black */
body {                                        
  margin: 0;
  background: #000000; /* Dark background for contrast #393737*/
  font-family: Arial, sans-serif;
} 



.gallery-wrapper-about {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
  padding: 60px 0;
}

.gallery-wrapper-about.is-dragging-about {
  cursor: grabbing;
}

.gallery-track-about {
  display: flex;
  gap: 24px;
  padding: 0 10vw;
  transition: transform 0.3s ease;
}

.gallery-item-about {
  flex: 0 0 70vw;
  max-width: 900px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.gallery-item-about:hover {
  transform: scale(1.05);
}

.gallery-item-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.gallery-wrapper-about {
  touch-action: pan-y;
}

